Skip to content

Commit 8bc484e

Browse files
authored
2025-04-09 5.3.15 (#1348)
1 parent 8f02499 commit 8bc484e

14 files changed

Lines changed: 498 additions & 475 deletions

File tree

Material.Blazor.Test/Material.Blazor.Test.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
</PropertyGroup>
55

66
<ItemGroup>
7-
<PackageReference Include="bunit" Version="1.38.5" />
8-
<PackageReference Include="bunit.core" Version="1.38.5" />
9-
<PackageReference Include="bunit.web" Version="1.38.5" />
10-
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="8.0.14" />
7+
<PackageReference Include="bunit" Version="1.39.5" />
8+
<PackageReference Include="bunit.core" Version="1.39.5" />
9+
<PackageReference Include="bunit.web" Version="1.39.5" />
10+
<PackageReference Include="Microsoft.AspNetCore.Components.Authorization" Version="8.0.15" />
1111
<PackageReference Include="NSubstitute" Version="5.3.0" />
1212
<PackageReference Include="xunit" Version="2.9.3" />
13-
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.1">
13+
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
1414
<PrivateAssets>all</PrivateAssets>
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
</PackageReference>
17-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
17+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
1818
</ItemGroup>
1919
<ItemGroup>
2020
<ProjectReference Include="..\Material.Blazor\Material.Blazor.csproj" />

Material.Blazor.Website.Server/Material.Blazor.Website.Server.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.14" />
17-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.14" />
18-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.14" />
16+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.15" />
17+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.15" />
18+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="8.0.15" />
1919
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" />
2020
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.1" />
2121
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.3" />

Material.Blazor.Website.Server/Program.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,19 +46,19 @@
4646
// Option 1: add options to services, which are then accessed by the Material Blazor services.
4747
builder.Services.AddOptions<MBServicesOptions>().Configure(options =>
4848
{
49-
options.LoggingServiceConfiguration = Utilities.GetDefaultLoggingServiceConfiguration();
50-
options.SnackbarServiceConfiguration = Utilities.GetDefaultSnackbarServiceConfiguration();
51-
options.ToastServiceConfiguration = Utilities.GetDefaultToastServiceConfiguration();
49+
options.LoggingServiceConfiguration = new MBLoggingServiceConfiguration();
50+
options.SnackbarServiceConfiguration = new MBSnackbarServiceConfiguration();
51+
options.ToastServiceConfiguration = new MBToastServiceConfiguration();
5252
});
5353

5454
builder.Services.AddMBServices();
5555

5656
// Option 2: add options within the call to add the Material.Blazor services.
5757
//builder.Services.AddMBServices(options =>
5858
//{
59-
// options.LoggingServiceConfiguration = Utilities.GetDefaultLoggingServiceConfiguration();
60-
// options.SnackbarServiceConfiguration = Utilities.GetDefaultSnackbarServiceConfiguration();
61-
// options.ToastServiceConfiguration = Utilities.GetDefaultToastServiceConfiguration();
59+
// options.LoggingServiceConfiguration = new MBLoggingServiceConfiguration();
60+
// options.SnackbarServiceConfiguration = new MBSnackbarServiceConfiguration();
61+
// options.ToastServiceConfiguration = new MBToastServiceConfiguration();
6262
//});
6363

6464
builder.Services.AddGBService(options =>

Material.Blazor.Website.WebAssembly/Material.Blazor.Website.WebAssembly.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.14" />
9-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.14" PrivateAssets="all" />
8+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.15" />
9+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.15" PrivateAssets="all" />
1010
<PackageReference Include="Serilog.Extensions.Logging" Version="8.0.0" />
1111
<PackageReference Include="Serilog.Sinks.Async" Version="2.1.0" />
1212
<PackageReference Include="Serilog.Sinks.BrowserConsole" Version="8.0.0" />

Material.Blazor.Website.WebAssembly/Program.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@
2121
// Option 1: add options to services, which are then accessed by the Material Blazor services.
2222
//builder.Services.AddOptions<MBServicesOptions>().Configure(options =>
2323
//{
24-
// options.LoggingServiceConfiguration = Utilities.GetDefaultLoggingServiceConfiguration();
25-
// options.SnackbarServiceConfiguration = Utilities.GetDefaultSnackbarServiceConfiguration();
26-
// options.ToastServiceConfiguration = Utilities.GetDefaultToastServiceConfiguration();
24+
// options.LoggingServiceConfiguration = new MBLoggingServiceConfiguration();
25+
// options.SnackbarServiceConfiguration = new MBSnackbarServiceConfiguration();
26+
// options.ToastServiceConfiguration = new MBToastServiceConfiguration();
2727
//});
2828

2929
// Option 2: add options within the call to add the Material.Blazor services.
3030
builder.Services.AddMBServices(options =>
3131
{
32-
options.LoggingServiceConfiguration = Utilities.GetDefaultLoggingServiceConfiguration();
33-
options.SnackbarServiceConfiguration = Utilities.GetDefaultSnackbarServiceConfiguration();
34-
options.ToastServiceConfiguration = Utilities.GetDefaultToastServiceConfiguration();
32+
options.LoggingServiceConfiguration = new MBLoggingServiceConfiguration();
33+
options.SnackbarServiceConfiguration = new MBSnackbarServiceConfiguration();
34+
options.ToastServiceConfiguration = new MBToastServiceConfiguration();
3535
});
3636

3737
builder.Services.AddMBServices();

Material.Blazor.Website/Material.Blazor.Website.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929

3030
<ItemGroup>
3131
<PackageReference Include="GoogleAnalytics.Blazor" Version="1.0.3" />
32-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.14" />
33-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.14" />
32+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.15" />
33+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.15" />
3434
</ItemGroup>
3535

3636
<ItemGroup>

Material.Blazor.Website/Pages/Toast.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@
330330
{
331331
if (disposing)
332332
{
333-
ToastService.Configuration = Utilities.GetDefaultToastServiceConfiguration();
333+
ToastService.Configuration = new MBToastServiceConfiguration();
334334
}
335335

336336
// O: free unmanaged resources (unmanaged objects) and override finalizer

Material.Blazor.Website/Utilities.cs

Lines changed: 0 additions & 25 deletions
This file was deleted.

Material.Blazor.Website/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@
2626
"author": "",
2727
"license": "MIT",
2828
"devDependencies": {
29-
"@babel/cli": "^7.26.4",
29+
"@babel/cli": "^7.27.0",
3030
"@babel/core": "^7.26.10",
3131
"@babel/plugin-transform-class-properties": "^7.25.9",
3232
"@babel/plugin-transform-object-rest-spread": "^7.25.9",
3333
"@babel/plugin-transform-runtime": "^7.26.10",
3434
"@babel/preset-env": "^7.26.9",
35-
"@babel/preset-typescript": "^7.26.0",
35+
"@babel/preset-typescript": "^7.27.0",
3636
"babel-loader": "^9.2.1",
37-
"fork-ts-checker-webpack-plugin": "^9.0.2",
37+
"fork-ts-checker-webpack-plugin": "^9.1.0",
3838
"material-components-web": "14.0.0",
3939
"regexp": "^1.0.0",
4040
"sass": "1.39.2",
4141
"terser": "^5.39.0",
4242
"ts-loader": "^9.5.2",
43-
"typescript": "^5.8.2",
44-
"webpack": "^5.98.0",
43+
"typescript": "^5.8.3",
44+
"webpack": "^5.99.5",
4545
"webpack-cli": "^5.1.4"
4646
}
4747
}

0 commit comments

Comments
 (0)