Skip to content

Commit

Permalink
Update whatsnew
Browse files Browse the repository at this point in the history
Fix #1174
Fix #1173
  • Loading branch information
vnbaaij committed Dec 20, 2023
1 parent ca0a174 commit 6b06254
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
7 changes: 6 additions & 1 deletion WHATSNEW.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## 4.2.1
## V4.2.2
- Fix [#1168](https://github.com/microsoft/fluentui-blazor/issues/1168): Tabs tablist will forever expand despite the tab containers width
- Fix [#1174](https://github.com/microsoft/fluentui-blazor/issues/1174): Forgot to replace svg with icon in templates
- Fix [#1173](https://github.com/microsoft/fluentui-blazor/issues/1174): Replace type="image/png" with type="image/x-icon"in templates

## 4.2.1
- NavMenu and NevMenuGroups can now expand/collpase in SSR mode
- Added PageScript component (See [Static Server Rendeing on MS Learn](https://learn.microsoft.com/en-us/aspnet/core/blazor/javascript-interoperability/static-server-rendering?view=aspnetcore-8.0))
- Move `initializersLoader.webview.js` back into `wwwroot/js` so it gets published in the package again.
Expand Down
7 changes: 6 additions & 1 deletion examples/Demo/Shared/wwwroot/docs/WhatsNew.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## 4.2.1
## V4.2.2
- Fix [#1168](https://github.com/microsoft/fluentui-blazor/issues/1168): Tabs tablist will forever expand despite the tab containers width
- Fix [#1174](https://github.com/microsoft/fluentui-blazor/issues/1174): Forgot to replace svg with icon in templates
- Fix [#1173](https://github.com/microsoft/fluentui-blazor/issues/1174): Replace type="image/png" with type="image/x-icon"in templates

## 4.2.1
- NavMenu and NevMenuGroups can now expand/collpase in SSR mode
- Added PageScript component (See [Static Server Rendeing on MS Learn](https://learn.microsoft.com/en-us/aspnet/core/blazor/javascript-interoperability/static-server-rendering?view=aspnetcore-8.0))
- Move `initializersLoader.webview.js` back into `wwwroot/js` so it gets published in the package again.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<FluentNavLink Href="counter" Icon="@(new Icons.Regular.Size20.NumberSymbolSquare())" IconColor="Color.Accent">Counter</FluentNavLink>
<FluentNavLink Href="weather" Icon="@(new Icons.Regular.Size20.WeatherPartlyCloudyDay())" IconColor="Color.Accent">Weather</FluentNavLink>
@*#if (IndividualLocalAuth)
<FluentNavLink Href="auth" Icon="@Icon.FromImageUrl("/images/authrequired.svg")" IconColor="Color.Accent">Auth Required</FluentNavLink>
<FluentNavLink Href="auth" Icon="@(new Icons.Regular.Size20.LockClosedKey())" IconColor="Color.Accent">Auth Required</FluentNavLink>
<AuthorizeView>
<Authorized>
<FluentNavLink Href="Account/Manage">@context.User.Identity?.Name</FluentNavLink>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<link rel="stylesheet" href="app.css" />
<link rel="stylesheet" href="BlazorWeb-CSharp.styles.css" />
@*#if (SampleContent)
<link rel="icon" type="image/png" href="favicon.ico" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
##endif*@
@*#if (!InteractiveAtRoot)
<HeadOutlet />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<link href="_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css" rel="stylesheet" />
<link rel="stylesheet" href="css/app.css" />
<!--#if SampleContent -->
<link rel="icon" type="image/png" href="favicon.ico" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link href="ComponentsWebAssembly-CSharp.styles.css" rel="stylesheet" />
<!--#else -->
<!-- If you add any scoped CSS files, uncomment the following to load them
Expand Down
2 changes: 1 addition & 1 deletion tests/TemplateValidation/SSR/Components/App.razor
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<base href="/" />
<link rel="stylesheet" href="app.css" />
<link rel="stylesheet" href="FluentUI.TemplateValidation.SSR.styles.css" />
<link rel="icon" type="image/png" href="favicon.ico" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<HeadOutlet />
</head>

Expand Down

0 comments on commit 6b06254

Please sign in to comment.