diff --git a/WHATSNEW.md b/WHATSNEW.md
index 74ce662be..11ea97701 100644
--- a/WHATSNEW.md
+++ b/WHATSNEW.md
@@ -1,4 +1,12 @@
-## V3.5.4
+## V3.5.5
+1447
+1424
+1425
+1462
+1464
+1449
+
+## V3.5.4
- Issue [#1417](https://github.com/microsoft/fluentui-blazor/issues/1417): Fix Autocomplete Enter key in EditForm
- Issue [#1414](https://github.com/microsoft/fluentui-blazor/issues/1414): NavMenu / KeyCode optimizations
- Issue [#1413](https://github.com/microsoft/fluentui-blazor/issues/1413): Add TooltipService.Refresh method
diff --git a/examples/Demo/Shared/Microsoft.Fast.Components.FluentUI.xml b/examples/Demo/Shared/Microsoft.Fast.Components.FluentUI.xml
index 4e4481e1f..352baadac 100644
--- a/examples/Demo/Shared/Microsoft.Fast.Components.FluentUI.xml
+++ b/examples/Demo/Shared/Microsoft.Fast.Components.FluentUI.xml
@@ -93,6 +93,53 @@
+
+
+ Gets an representing the location of the key on the keyboard or other input device.
+
+
+
+
+
+ Gets the equivalent value.
+
+
+
+
+ Gets the system- and implementation-dependent numerical code identifying the unmodified value of the pressed key.
+
+
+
+
+
+ Gets the value of the key pressed by the user
+
+
+
+
+ Gets a boolean value that indicates if the Control key was pressed
+
+
+
+
+ Gets a boolean value that indicates if the Shift key was pressed
+
+
+
+
+ Gets a boolean value that indicates if the Alt key was pressed
+
+
+
+
+ Gets a boolean value that indicates if the Meta key was pressed
+
+
+
+
+ Gets the identifier of the targeted DOM element.
+
+
Controls the expand mode of the Accordion, either allowing
@@ -292,7 +339,7 @@
- The target attribute specifies where to open the link, if Href is specified.
+ Gets or sets the target attribute that specifies where to open the link, if Href is specified.
Possible values: _blank | _self | _parent | _top.
@@ -1371,7 +1418,7 @@
- Gets or sets a value indicating whether the component will not add itself to the tab queue.
+ Gets or sets a value indicating whether the component will not add itself to the tab queue.
Default is false.
@@ -1398,12 +1445,12 @@
- Optionally defines a class to be applied to a rendered row.
+ Optionally defines a class to be applied to a rendered row.
- Optionally defines a style to be applied to a rendered row.
+ Optionally defines a style to be applied to a rendered row.
Do not use to dynamically update a row style after rendering as this will interfere with the script that use this attribute. Use instead.
@@ -1496,12 +1543,12 @@
- String that gets applied to the css gridTemplateColumns attribute for the row
+ Gets or sets the string that gets applied to the css gridTemplateColumns attribute for the row.
- Gets or sets the type of row. See
+ Gets or sets the type of row. See .
@@ -4533,7 +4580,7 @@
-
+
diff --git a/src/Core/Components/DataGrid/FluentDataGrid.razor.cs b/src/Core/Components/DataGrid/FluentDataGrid.razor.cs
index 852c0f6d2..8ee534773 100644
--- a/src/Core/Components/DataGrid/FluentDataGrid.razor.cs
+++ b/src/Core/Components/DataGrid/FluentDataGrid.razor.cs
@@ -377,7 +377,7 @@ private async Task RefreshDataCoreAsync()
}
// Gets called both by RefreshDataCoreAsync and directly by the Virtualize child component during scrolling
- private async ValueTask> ProvideVirtualizedItems(ItemsProviderRequest request)
+ private async ValueTask> ProvideVirtualizedItemsAsync(ItemsProviderRequest request)
{
_lastRefreshedPaginationStateHash = Pagination?.GetHashCode();
@@ -516,7 +516,7 @@ private void CloseColumnOptions()
StateHasChanged();
}
- private async Task HandleOnRowFocus(DataGridRowFocusEventArgs args)
+ private async Task HandleOnRowFocusAsync(DataGridRowFocusEventArgs args)
{
string? rowId = args.RowId;
if (_internalGridContext.Rows.TryGetValue(rowId!, out FluentDataGridRow? row))