Skip to content

Commit fb88ca5

Browse files
Merge pull request #104 from Community-Toolkit-for-Fluent-UI-Blazor/fix/update-packages
update packages - Fix bug on Client App when starting
2 parents 9f9f579 + 82dbe70 commit fb88ca5

3 files changed

Lines changed: 20 additions & 14 deletions

File tree

Directory.Packages.props

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@
88
<PackageVersion Include="AWSSDK.S3" Version="4.0.7.6" />
99
<PackageVersion Include="Azure.Storage.Blobs" Version="12.25.1" />
1010
<PackageVersion Include="Google.Cloud.Storage.V1" Version="4.13.0" />
11-
<PackageVersion Include="Markdig.Signed" Version="0.42.0" />
12-
<PackageVersion Include="Microsoft.AspNetCore.Components" Version="9.0.9" />
13-
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.9" />
14-
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.9" />
11+
12+
<PackageVersion Include="Markdig.Signed" Version="0.43.0" />
13+
<PackageVersion Include="Microsoft.AspNetCore.Components" Version="9.0.10" />
14+
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.10" />
15+
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.10" />
1516
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="4.14.0" />
1617
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
17-
<PackageVersion Include="Microsoft.Extensions.Caching.Abstractions" Version="9.0.5" />
18-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.12.1" />
18+
<PackageVersion Include="Microsoft.Extensions.Caching.Abstractions" Version="9.0.10" />
19+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.13.1" />
20+
1921
<PackageVersion Include="PublishSPAforGitHubPages.Build" Version="3.0.3" />
2022
<!-- Test dependencies -->
2123
<PackageVersion Include="bunit" Version="1.40.0" />
@@ -25,17 +27,21 @@
2527
<PackageVersion Include="SkiaSharp" Version="3.119.1" />
2628
<PackageVersion Include="SkiaSharp.Svg" Version="1.60.0" />
2729
<PackageVersion Include="Svg.Skia" Version="3.2.1" />
30+
2831
<PackageVersion Include="TagLibSharp" Version="2.3.0" />
32+
2933
<PackageVersion Include="xunit" Version="2.9.3" />
3034
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5">
3135
<PrivateAssets>all</PrivateAssets>
3236
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3337
</PackageVersion>
3438
<PackageVersion Include="Moq" Version="4.20.72" />
3539
<!-- Shared dependencies -->
36-
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="9.0.9" />
40+
41+
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="9.0.10" />
42+
3743
<PackageVersion Include="Microsoft.AspNetCore.StaticFiles" Version="2.3.0" />
38-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.12.1" />
39-
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" Version="4.12.1" />
44+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.13.1" />
45+
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" Version="4.13.1" />
4046
</ItemGroup>
4147
</Project>

src/Community.Components/Components/Observers/FluentCxObserverProvider.razor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public sealed partial class FluentCxObserverProvider
5555
/// <remarks>This path is used to locate the JavaScript file that contains the implementation for the
5656
/// FluentCxObserverProvider. Ensure that the file exists at the specified location and is correctly deployed as
5757
/// part of the application.</remarks>
58-
private const string JsModulePath = "./_content/FluentUI.Blazor.Community.Components/components/observers/FluentCxObserverProvider.razor.js";
58+
private const string JsModulePath = "./_content/FluentUI.Blazor.Community.Components/Components/Observers/FluentCxObserverProvider.razor.js";
5959

6060
/// <summary>
6161
/// Initializes a new instance of the <see cref="FluentCxObserverProvider"/> class.

tests/FluentUI.Blazor.Community.Components.Tests/Components/Cookies/ManageCookiesTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public void ButtonsDisabled_ReturnsTrue_IfAnyItemIsActiveNull()
3434
var cut = RenderComponent<FluentDialog>(
3535
parameters => parameters.AddChildContent<ManageCookie>(p => p.Add(m => m.Content, data))
3636
.Add(p => p.Instance, new DialogInstance(typeof(ManageCookie),
37-
new DialogParameters(), data))
37+
new DialogParameters(), data, null))
3838
);
3939

4040
// Act
@@ -53,7 +53,7 @@ public void ButtonsDisabled_ReturnsFalse_IfAllItemsIsActiveSet()
5353
var cut = RenderComponent<FluentDialog>(
5454
parameters => parameters.AddChildContent<ManageCookie>(p => p.Add(m => m.Content, data))
5555
.Add(p => p.Instance, new DialogInstance(typeof(ManageCookie),
56-
new DialogParameters(), data))
56+
new DialogParameters(), data, null))
5757
);
5858

5959
// Act
@@ -77,7 +77,7 @@ public void OnCancelAsync_SetsIsActiveNull_ExceptGoogleAnalytics_AndCallsDialogC
7777
{
7878
PrimaryAction = "Save Changes",
7979
SecondaryAction = "Cancel"
80-
}, data))
80+
}, data, null))
8181
);
8282

8383
// Act
@@ -108,7 +108,7 @@ public void OnSaveAsync_CallsDialogClose_WithItems()
108108
{
109109
PrimaryAction = "Save Changes",
110110
SecondaryAction = "Cancel"
111-
}, data))
111+
}, data, null))
112112
);
113113

114114
// Act

0 commit comments

Comments
 (0)