Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 15 additions & 9 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,16 @@
<PackageVersion Include="AWSSDK.S3" Version="4.0.7.6" />
<PackageVersion Include="Azure.Storage.Blobs" Version="12.25.1" />
<PackageVersion Include="Google.Cloud.Storage.V1" Version="4.13.0" />
<PackageVersion Include="Markdig.Signed" Version="0.42.0" />
<PackageVersion Include="Microsoft.AspNetCore.Components" Version="9.0.9" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.9" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.9" />

<PackageVersion Include="Markdig.Signed" Version="0.43.0" />
<PackageVersion Include="Microsoft.AspNetCore.Components" Version="9.0.10" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.10" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.10" />
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="4.14.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
<PackageVersion Include="Microsoft.Extensions.Caching.Abstractions" Version="9.0.5" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.12.1" />
<PackageVersion Include="Microsoft.Extensions.Caching.Abstractions" Version="9.0.10" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.13.1" />

<PackageVersion Include="PublishSPAforGitHubPages.Build" Version="3.0.3" />
<!-- Test dependencies -->
<PackageVersion Include="bunit" Version="1.40.0" />
Expand All @@ -25,17 +27,21 @@
<PackageVersion Include="SkiaSharp" Version="3.119.1" />
<PackageVersion Include="SkiaSharp.Svg" Version="1.60.0" />
<PackageVersion Include="Svg.Skia" Version="3.2.1" />

<PackageVersion Include="TagLibSharp" Version="2.3.0" />

<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageVersion>
<PackageVersion Include="Moq" Version="4.20.72" />
<!-- Shared dependencies -->
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="9.0.9" />

<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="9.0.10" />

<PackageVersion Include="Microsoft.AspNetCore.StaticFiles" Version="2.3.0" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.12.1" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" Version="4.12.1" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.13.1" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" Version="4.13.1" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public sealed partial class FluentCxObserverProvider
/// <remarks>This path is used to locate the JavaScript file that contains the implementation for the
/// FluentCxObserverProvider. Ensure that the file exists at the specified location and is correctly deployed as
/// part of the application.</remarks>
private const string JsModulePath = "./_content/FluentUI.Blazor.Community.Components/components/observers/FluentCxObserverProvider.razor.js";
private const string JsModulePath = "./_content/FluentUI.Blazor.Community.Components/Components/Observers/FluentCxObserverProvider.razor.js";

/// <summary>
/// Initializes a new instance of the <see cref="FluentCxObserverProvider"/> class.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void ButtonsDisabled_ReturnsTrue_IfAnyItemIsActiveNull()
var cut = RenderComponent<FluentDialog>(
parameters => parameters.AddChildContent<ManageCookie>(p => p.Add(m => m.Content, data))
.Add(p => p.Instance, new DialogInstance(typeof(ManageCookie),
new DialogParameters(), data))
new DialogParameters(), data, null))
);

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

// Act
Expand All @@ -77,7 +77,7 @@ public void OnCancelAsync_SetsIsActiveNull_ExceptGoogleAnalytics_AndCallsDialogC
{
PrimaryAction = "Save Changes",
SecondaryAction = "Cancel"
}, data))
}, data, null))
);

// Act
Expand Down Expand Up @@ -108,7 +108,7 @@ public void OnSaveAsync_CallsDialogClose_WithItems()
{
PrimaryAction = "Save Changes",
SecondaryAction = "Cancel"
}, data))
}, data, null))
);

// Act
Expand Down
Loading