Skip to content

Commit 2cd49c5

Browse files
committed
Merge dev
2 parents 68d0e56 + 53d07c5 commit 2cd49c5

File tree

63 files changed

+768
-238
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+768
-238
lines changed

.github/workflows/build-core-lib.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,12 @@ jobs:
5353
dotnet-version: 9.0.x
5454
dotnet-quality: ga
5555

56+
- name: Setup .NET 10.0
57+
uses: actions/setup-dotnet@v4
58+
with:
59+
dotnet-version: 10.0.x
60+
dotnet-quality: preview
61+
5662
# Build
5763

5864
- name: Restore
@@ -149,7 +155,7 @@ jobs:
149155
runs-on: ubuntu-latest
150156
name: Build and Deploy Demo site
151157
env:
152-
DOTNET_VERSION: "net9.0"
158+
DOTNET_VERSION: "net10.0"
153159
DOTNET_CLI_TELEMETRY_OPTOUT: 1
154160
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
155161
DOTNET_NOLOGO: true
@@ -167,8 +173,8 @@ jobs:
167173
- name: .NET Setup SDKs
168174
uses: actions/setup-dotnet@v4
169175
with:
170-
dotnet-version: 9.0.x
171-
dotnet-quality: ga
176+
dotnet-version: 10.0.x
177+
dotnet-quality: preview
172178

173179
- name: .NET Builld
174180
run: dotnet build ${{ env.PROJECT }} -c ${{ env.BUILD_CONFIG }} -o publish -f ${{ env.DOTNET_VERSION }} -r linux-x64 --self-contained=true -p:BuildNumber=$BUILD_NUMBER -p:SourceRevisionId=$GITHUB_SHA -p:ContinuousIntegrationBuild=true

.github/workflows/codeql-analysis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ jobs:
4343
dotnet-version: |
4444
8.0.x
4545
9.0.x
46-
dotnet-quality: ga
46+
10.0.x
47+
dotnet-quality: preview
4748

4849
- name: Initialize CodeQL
4950
uses: github/codeql-action/init@v2

.github/workflows/deploy_preview.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
name: Build and deploy Demo site
1919
env:
20-
DOTNET_VERSION: "net9.0"
20+
DOTNET_VERSION: "net10.0"
2121
DOTNET_CLI_TELEMETRY_OPTOUT: 1
2222
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
2323
DOTNET_NOLOGO: true
@@ -44,6 +44,12 @@ jobs:
4444
dotnet-version: 9.0.x
4545
dotnet-quality: ga
4646

47+
- name: .NET Setup SDKs
48+
uses: actions/setup-dotnet@v4
49+
with:
50+
dotnet-version: 10.0.x
51+
dotnet-quality: preview
52+
4753
- name: .NET Builld
4854
run: dotnet build ${{ env.PROJECT }} -c ${{ env.BUILD_CONFIG }} -o publish -f ${{ env.DOTNET_VERSION }} -r linux-x64 --self-contained=true -p:BuildNumber=$BUILD_NUMBER -p:SourceRevisionId=$GITHUB_SHA -p:ContinuousIntegrationBuild=true
4955

Directory.Build.props

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir>
1313
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
1414

15-
<VersionFile>4.11.7</VersionFile>
16-
<VersionPrefix>4.11.7</VersionPrefix>
15+
<VersionFile>4.11.8</VersionFile>
16+
<VersionPrefix>4.11.8</VersionPrefix>
1717
<VersionSuffix></VersionSuffix>
1818
<AssemblyVersion>$(VersionFile)</AssemblyVersion>
1919
<FileVersion>$(VersionFile)</FileVersion>

Directory.Packages.props

+31-11
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,34 @@
22
<PropertyGroup>
33
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
44
<RuntimeVersion8>8.0.0</RuntimeVersion8>
5-
<AspNetCoreVersion8>8.0.14</AspNetCoreVersion8>
6-
<EfCoreVersion8>8.0.14</EfCoreVersion8>
7-
<RuntimeVersion9>9.0.3</RuntimeVersion9>
8-
<AspNetCoreVersion9>9.0.3</AspNetCoreVersion9>
9-
<EfCoreVersion9>9.0.3</EfCoreVersion9>
5+
<AspNetCoreVersion8>8.0.15</AspNetCoreVersion8>
6+
<EfCoreVersion8>8.0.15</EfCoreVersion8>
7+
<RuntimeVersion9>9.0.4</RuntimeVersion9>
8+
<AspNetCoreVersion9>9.0.4</AspNetCoreVersion9>
9+
<EfCoreVersion9>9.0.4</EfCoreVersion9>
10+
<RuntimeVersion10>10.0.0-preview.3.25171.5</RuntimeVersion10>
11+
<AspNetCoreVersion10>10.0.0-preview.3.25172.1</AspNetCoreVersion10>
12+
<EfCoreVersion10>10.0.0-preview.3.25171.6</EfCoreVersion10>
1013
</PropertyGroup>
1114
<ItemGroup>
1215
<!-- For Sample Apps -->
1316
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.11.0" />
14-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" version="4.11.6" />
15-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.11.6" />
17+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" version="4.11.7" />
18+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.11.7" />
1619
<!-- Test dependencies -->
17-
<PackageVersion Include="bunit" Version="1.33.3" />
20+
<PackageVersion Include="bunit" Version="1.38.5" />
1821
<PackageVersion Include="FluentAssertions" Version="6.12.0" />
1922
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
20-
<PackageVersion Include="xunit" Version="2.9.2" />
23+
<PackageVersion Include="xunit" Version="2.9.3" />
2124
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.2" />
2225
<PackageVersion Include="coverlet.msbuild" Version="6.0.0" />
23-
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
26+
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
2427
<!-- Shared dependencies -->
2528
<PackageVersion Include="Markdig.Signed" Version="0.34.0" />
2629
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" />
2730
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.13.0" />
2831
<PackageVersion Include="Microsoft.OData.Client" Version="8.2.3" />
29-
<PackageVersion Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.13.2" />
32+
<PackageVersion Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.13.61" />
3033
<PackageVersion Include="Microsoft.VisualStudioEng.MicroBuild.Core" Version="1.0.0" />
3134
</ItemGroup>
3235
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
@@ -68,4 +71,21 @@
6871
<PackageVersion Include="System.Text.Encodings.Web" Version="$(RuntimeVersion9)" />
6972
<PackageVersion Include="System.Text.Json" Version="$(RuntimeVersion9)" />
7073
</ItemGroup>
74+
<ItemGroup Condition="'$(TargetFramework)'=='net10.0'">
75+
<!-- Build dependencies -->
76+
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="$(AspNetCoreVersion10)" />
77+
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="$(AspNetCoreVersion10)" />
78+
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="$(AspNetCoreVersion10)" />
79+
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="$(RuntimeVersion10)" />
80+
<PackageVersion Include="Microsoft.Extensions.Caching.Memory" Version="$(RuntimeVersion10)" />
81+
<PackageVersion Include="Microsoft.Extensions.Configuration.CommandLine" Version="$(RuntimeVersion10)" />
82+
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="$(RuntimeVersion10)" />
83+
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="$(RuntimeVersion10)" />
84+
<PackageVersion Include="Microsoft.Extensions.Http" Version="$(RuntimeVersion10)" />
85+
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="$(EfCoreVersion10)" />
86+
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="$(EfCoreVersion10)" />
87+
<PackageVersion Include="Microsoft.EntityFrameworkCore.Tools" Version="$(EfCoreVersion10)" />
88+
<PackageVersion Include="System.Text.Encodings.Web" Version="$(RuntimeVersion10)" />
89+
<PackageVersion Include="System.Text.Json" Version="$(RuntimeVersion9)" />
90+
</ItemGroup>
7191
</Project>

nuget.config renamed to NuGet.config

+5
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,9 @@
44
<clear />
55
<add key="dotnet-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" />
66
</packageSources>
7+
<packageSourceMapping>
8+
<packageSource key="dotnet-public">
9+
<package pattern="*" />
10+
</packageSource>
11+
</packageSourceMapping>
712
</configuration>

WHATSNEW.md

+78-15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
## V4.11.8
2+
3+
### General
4+
- \[General\] Add .NET 10 Preview ~~2~~ 3 support ([#3641](https://github.com/microsoft/fluentui-blazor/pull/3641))
5+
- \[General\] Fix trimming error ([#3578](https://github.com/microsoft/fluentui-blazor/pull/3578))
6+
7+
### Components
8+
- \[Combobox\] Fix issue when used in Dialog ([#3603](https://github.com/microsoft/fluentui-blazor/pull/3603))
9+
- \[DataGrid\] Add icons to column menus ([#3621](https://github.com/microsoft/fluentui-blazor/pull/3621))
10+
- \[DataGrid\] Fix rendering issue in Table mode ([#3615](https://github.com/microsoft/fluentui-blazor/pull/3615))
11+
- \[DataGrid\] Fix Width when `ResizableColumns` and `Sortable` ([#3593](https://github.com/microsoft/fluentui-blazor/pull/3593))
12+
- \[Icons\] AddIconsExtensions.TryGetInstance ([#3569](https://github.com/microsoft/fluentui-blazor/pull/3569))
13+
- \[InputFile\] Better handling of dispose error ([#3605](https://github.com/microsoft/fluentui-blazor/pull/3605))
14+
- \[NavMenu\] Add code to only respond to certain key codes ([#3595](https://github.com/microsoft/fluentui-blazor/pull/3595))
15+
- \[TreeView\] Add MultiSelect example ([#3602](https://github.com/microsoft/fluentui-blazor/pull/3602))
16+
17+
### Demo site and documentation
18+
- \[Docs\] Remove an unnecessary line in FluentDialog ([#3550](https://github.com/microsoft/fluentui-blazor/pull/3550))
19+
- \[Docs\] Make cookie consent responsive ([#3555](https://github.com/microsoft/fluentui-blazor/pull/3555))
20+
- \[Docs\] Remove extra '>' ([#3572](https://github.com/microsoft/fluentui-blazor/pull/3572))
21+
- \[Docs\] Fix typo ([#3589](https://github.com/microsoft/fluentui-blazor/pull/3589))
22+
23+
### Icons and Emoji
24+
- Update to Fluent UI System Icons 1.1.293 (changes since 1.1.292).
25+
26+
**What's new (Name / Size(s) / Variant(s))**
27+
- Chat Multiple Checkmark / 16, 20, 24, 28 / Filled & Regular
28+
- Chat Multiple Minus / 16, 20, 24, 28 / Filled & Regular
29+
- Circle Multiple Hint Checkmark / 16, 32 / Filled & Regular
30+
- Code Block Edit / 16, 20, 24 / Filled & Regular
31+
- Cube Checkmark / 16, 20, 24, 28, 32, 48 / Filled & Regular
32+
- Cube / 28 / Filled & Regular
33+
- Database Switch / 24 / Filled & Regular
34+
- Flow Sparkle / 16, 20 / Filled & Regular
35+
- Mail Fish Hook / 16, 20, 24, 28, 32, 48 / Filled & Regular
36+
- Shopping Bag Checkmark / 16, 20, 24, 28, 32, 48 / Filled & Regular
37+
- Sparkle Info / 20, 24 / Filled & Regular
38+
- Table Column Top Bottom Edit / 16, 20, 24, 28 / Filled & Regular
39+
- Table Column Top Bottom / 16, 28 / Filled & Regular
40+
- Task List Square Database / 24 / Filled & Regular
41+
- Vehicle Truck Checkmark / 16, 20, 24, 28, 32, 48 / Filled & Regular
42+
- Vehicle Truck Profile / 28, 32, 48 / Filled & Regular
43+
- Vote / 16 / Filled & Regular
44+
45+
**What's updated (Name / Size(s) / Variant(s))**
46+
- Dismiss Circle / 16 / Filled & Regular
47+
48+
**What's got color now (Name / Size(s) / Variant(s))**
49+
- Chat Add / 16, 20, 24, 28, 32, 48 / Color
50+
- Chat / 28, 32, 48 / Color
51+
- People Chat / 24 / Color
52+
- Person Add / 24 / Color
53+
- Share iOS / 24 / Color
54+
55+
156
## V4.11.7
257

358
### Components
@@ -6,8 +61,8 @@
661
- \[CounterBadge\] Fix `HorizontalPosition`/`VerticalPosition` not being used ([#3490](https://github.com/microsoft/fluentui-blazor/pull/3490))
762
- \[DataGrid\] Add method to close column options programmatically ([#3501](https://github.com/microsoft/fluentui-blazor/pull/3501))
863
- \[DataGrid\] Fix styling when using `Virtualize` with `DataGridDisplayMode.Table` ([#3497](https://github.com/microsoft/fluentui-blazor/pull/3497))
9-
- \[DesignTheme\] Add support for setting/getting NuetralBaseColor ([#3530](https://github.com/microsoft/fluentui-blazor/pull/3530))
10-
- \[DesignTheme\] Fix the document.body.dataset.theme from the web component ([#3516](https://github.com/microsoft/fluentui-blazor/pull/3516))
64+
- \[DesignTheme\] Add support for setting/getting NeutralBaseColor ([#3530](https://github.com/microsoft/fluentui-blazor/pull/3530))
65+
- \[DesignTheme\] Fix the accompanying web component ([#3516](https://github.com/microsoft/fluentui-blazor/pull/3516))
1166
- \[DesignTokens\] Make `AccentBaseColor` and `NeutralBaseColor` work with WithDefault ([#3517](https://github.com/microsoft/fluentui-blazor/pull/3517))
1267
- \[NumberField\] Fix invalid class styling ([#3531](https://github.com/microsoft/fluentui-blazor/pull/3531))
1368
- \[Overlay\] Make default background color follow neutral base color ([#3537](https://github.com/microsoft/fluentui-blazor/pull/3537))
@@ -18,6 +73,7 @@
1873
- \[Docs\] IconExplorer: Reset current page to 0 when searching ([#3536](https://github.com/microsoft/fluentui-blazor/pull/3536))
1974
- \[Docs]\ Typo in Templates.md file. ([#3503](https://github.com/microsoft/fluentui-blazor/pull/3503))
2075

76+
2177
### Icons and Emoji
2278
- Update to Fluent UI System Icons 1.1.292 (changes since 1.1.278).
2379

@@ -233,6 +289,7 @@
233289
### Demo site and documentation
234290
- \[Demo] Fix (most) printing issues when trying to print the page ([#3370](https://github.com/microsoft/fluentui-blazor/pull/3370))
235291

292+
236293
## V4.11.4
237294

238295
### General
@@ -295,6 +352,7 @@
295352
- Guest / 12, 16, 20, 24, 28, 32, 48 / Filled & Regular
296353
- Image Add / 24 / Filled & Regular
297354

355+
298356
## V4.11.3
299357

300358
### Components
@@ -330,6 +388,8 @@
330388

331389
### Demo site and documentation
332390
- \[Docs\] Update DataGridMultiSelect blockquote sample ([#3139](https://github.com/microsoft/fluentui-blazor/pull/3139))
391+
392+
333393
## V4.11.0
334394

335395
### Breaking changes and important notes
@@ -345,7 +405,7 @@
345405
- \[Button\] Fix showing hover on disabled button ([#2968](https://github.com/microsoft/fluentui-blazor/pull/2968))
346406
- \[DataGrid\] Add OData Adaptor package ([#2938](https://github.com/microsoft/fluentui-blazor/pull/2938))
347407
- \[DataGrid\] Alter rendering to use table elements ([#2664](https://github.com/microsoft/fluentui-blazor/pull/2664))
348-
- \[Datagrid\] Page reload issue when using `SaveStateInUrl` ([#2987](https://github.com/microsoft/fluentui-blazor/pull/2987))
408+
- \[DataGrid\] Page reload issue when using `SaveStateInUrl` ([#2987](https://github.com/microsoft/fluentui-blazor/pull/2987))
349409
- \[DataGrid\] Respecting control state of Loading parameter ([#3064](https://github.com/microsoft/fluentui-blazor/pull/3064))
350410
- \[DataGrid\] Save paging state in URL ([#2972](https://github.com/microsoft/fluentui-blazor/pull/2972))
351411
- \[DatePicker\] Add `PopupHorizontalPosition` property ([#3001](https://github.com/microsoft/fluentui-blazor/pull/3001))
@@ -451,7 +511,7 @@ Starting with v4.11.0 you need to add the following `@using` statement to your `
451511
- TextBox Settings / 20 / Filled
452512

453513

454-
- Emoij packages have been updated to the latest version of the Fluent Emoji collection.
514+
- Emoji packages have been updated to the latest version of the Fluent Emoji collection.
455515

456516
## V4.10.4
457517

@@ -478,7 +538,6 @@ Starting with v4.11.0 you need to add the following `@using` statement to your `
478538
- Update to Fluent UI System Icons 1.1.265 (changes since 1.1.261)
479539

480540
**What's new (Name / Size(s) / Variant(s))**
481-
482541
- Arrow Bounce / 12, 28, 48 / Filled & Regular
483542
- Arrow Clockwise Dashes / 28, 48 / Filled & Regular
484543
- Arrow Down Left / 12, 28 / Filled & Regular
@@ -506,6 +565,7 @@ Starting with v4.11.0 you need to add the following `@using` statement to your `
506565
- TextBox / 20, 28, 32, 48 / Filled & Regular
507566
- TextBox Checkmark / 16, 20, 24, 28, 32, 48 / Filled & Regular
508567

568+
509569
**What's updated (Name / Size(s) / Variant(s))**
510570
- Add Circle / 16 / Filled & Regular
511571
- Arrow Clockwise Dashes / 16, 20, 24, 32 / Filled & Regular
@@ -521,7 +581,6 @@ Starting with v4.11.0 you need to add the following `@using` statement to your `
521581
### Important note
522582
- The main class name for the `FluentAppBar` component has been renamed from `nav-menu-container` to `fluent-appbar`. If you have custom CSS in your app targeting that class, you need to change that to you the new class name.
523583

524-
525584
### General
526585
- \[General\] Apply global color-scheme to reflect theme in use ([#2854](https://github.com/microsoft/fluentui-blazor/pull/2854))
527586

@@ -550,7 +609,7 @@ Starting with v4.11.0 you need to add the following `@using` statement to your `
550609
- \[Docs\] Make MenuProvider message more prominent ([#2792](https://github.com/microsoft/fluentui-blazor/pull/2792))
551610

552611
### Icons
553-
- Update to Fluent UI System Icons 1.1.261 (changes since 1.1.260) plus a fix for not usingthe right colors in the new 'Color icons.
612+
- Update to Fluent UI System Icons 1.1.261 (changes since 1.1.260) plus a fix for not using the right colors in the new 'Color icons.
554613

555614
**What's new (Name / Size(s) / Variant(s))**
556615
- Arrow Down Right / 16, 20, 24, 32, 48 / Filled & Regular
@@ -576,7 +635,7 @@ Starting with v4.11.0 you need to add the following `@using` statement to your `
576635
## V4.10.2
577636

578637
### General
579-
- \[General\] Update to latest .NET 8 and .NET 9 RC2 SDK.
638+
- \[General\] Update to latest .NET 8 and .NET 9 RC2 SDK.
580639
- \[Debounce\] Fix the Debounce class with async methods ([#2759](https://github.com/microsoft/fluentui-blazor/pull/2759))
581640

582641
### Components
@@ -596,7 +655,7 @@ Starting with v4.11.0 you need to add the following `@using` statement to your `
596655
- \[Providers\] To prevent the menu and tooltip from displaying a scrollbar in body ([#2744](https://github.com/microsoft/fluentui-blazor/pull/2744))
597656
- \[Tooltip\] Add role so screen reader can announce tooltip text ([#2724](https://github.com/microsoft/fluentui-blazor/pull/2724))
598657
- \[TreeView\] Improve RTL support ([#2770](https://github.com/microsoft/fluentui-blazor/pull/2770))
599-
- \[TreeView\] prevent runtime errors in change handeling ([#2776](https://github.com/microsoft/fluentui-blazor/pull/2776))
658+
- \[TreeView\] prevent runtime errors in change handling ([#2776](https://github.com/microsoft/fluentui-blazor/pull/2776))
600659

601660
### Demo site and documentation
602661
- \[Docs\] Components inheriting ListComponentBase missing member descriptions ([#2735](https://github.com/microsoft/fluentui-blazor/pull/2735))
@@ -708,12 +767,13 @@ Starting with v4.11.0 you need to add the following `@using` statement to your `
708767
- Wrench / 16, 20, 24 / Color
709768

710769
## v4.10.1
770+
For a complete list of changes in this release, also see the [4.10.1](https://github.com/microsoft/fluentui-blazor/releases) release page on GitHub
711771

712772
### General
713773
- \[General\] Update to .NET 9 RC1 SDK ([#2639](https://github.com/microsoft/fluentui-blazor/pull/2639))
714-
- \[Github\] Update the actions/upload-artifact to v4 ([#2650](https://github.com/microsoft/fluentui-blazor/pull/2650))
774+
- \[GitHub\] Update the actions/upload-artifact to v4 ([#2650](https://github.com/microsoft/fluentui-blazor/pull/2650))
715775

716-
## Accessiblity
776+
## Accessibility
717777
- \[DateTime\] Add `role`, `tabindex` and catch Enter/Space ([#2688](https://github.com/microsoft/fluentui-blazor/pull/2688))
718778
- \[Select\] Fix the unannounced `Required` keyword with FluentSelect ([#2706](https://github.com/microsoft/fluentui-blazor/pull/2706))
719779

@@ -784,7 +844,7 @@ page of the documentation for more information.
784844

785845
### Components
786846
- \[General\] Add .net9.0 as targeted framework ([#2590](https://github.com/microsoft/fluentui-blazor/pull/2590))
787-
- \[Javascript Caching\] Do not add version number to lib.module.js file ([#2572](https://github.com/microsoft/fluentui-blazor/pull/2572))
847+
- \[JavaScript Caching\] Do not add version number to lib.module.js file ([#2572](https://github.com/microsoft/fluentui-blazor/pull/2572))
788848

789849
- \[Anchor\] Fix hypertext appearance with icon in start/end slot ([#2624](https://github.com/microsoft/fluentui-blazor/pull/2624))
790850
- \[Autocomplete\] Add missing AdditionalAttributes ([#2522](https://github.com/microsoft/fluentui-blazor/pull/2522))
@@ -820,7 +880,7 @@ page of the documentation for more information.
820880
- \[Docs\] Fix a typo ([#2518](https://github.com/microsoft/fluentui-blazor/pull/2518))
821881
- \[Docs\] Fix typo in TemplatesPage.razor ([#2452](https://github.com/microsoft/fluentui-blazor/pull/2452))
822882
- \[Docs\] Improve warning for required interactivity ([#2469](https://github.com/microsoft/fluentui-blazor/pull/2469))
823-
- \[Examples\] Add 2024 Olymics data and let examples use that
883+
- \[Examples\] Add 2024 Olympics data and let examples use that
824884

825885
### Icons
826886
- Update to Fluent UI System Icons 1.1.256 (since 1.1.249)
@@ -865,5 +925,8 @@ page of the documentation for more information.
865925
- Run / 16, 20, 24 / Filled & Regular
866926
- Shopping Bag / 16, 20, 24 / Filled
867927

868-
## Earlier versions
869-
For versions before 4.10, see the [Demo and documentation site](https://www.fluentui-blazor.net) page.
928+
## Before v4.10.0
929+
For versions before 4.10, see the [What's New? (v4.0 - v4.9)](/WhatsNew-Before410) page.
930+
931+
## Archives
932+
For versions before 4.0, see [What's new? (archives)](/WhatsNew-Archive) page.

0 commit comments

Comments
 (0)