Skip to content

Commit 6b6419d

Browse files
committed
1.0.0-preview9-01
1 parent 63ec3e9 commit 6b6419d

Some content is hidden

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

46 files changed

+200
-205
lines changed
6.5 KB
Binary file not shown.

docs/_framework/_bin/BlazorStyled.dll

8.5 KB
Binary file not shown.
512 Bytes
Binary file not shown.
168 Bytes
Binary file not shown.
5 KB
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
512 Bytes
Binary file not shown.

docs/_framework/_bin/SamplePages.dll

512 Bytes
Binary file not shown.

docs/_framework/_bin/SamplePages.pdb

48 Bytes
Binary file not shown.

docs/_framework/_bin/System.Core.dll

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 KB
Binary file not shown.

docs/_framework/_bin/System.dll

5.5 KB
Binary file not shown.

docs/_framework/_bin/mscorlib.dll

2.5 KB
Binary file not shown.

docs/_framework/blazor.boot.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"main":"ClientSideSample.dll","entryPoint":"Sample.Program::Main","assemblyReferences":["BlazorPrettyCode.dll","BlazorStyled.dll","BlazorTypography.dll","CSHTMLTokenizer.dll","Microsoft.AspNetCore.Authorization.dll","Microsoft.AspNetCore.Blazor.dll","Microsoft.AspNetCore.Blazor.HttpClient.dll","Microsoft.AspNetCore.Components.dll","Microsoft.AspNetCore.Components.Web.dll","Microsoft.AspNetCore.Metadata.dll","Microsoft.Bcl.AsyncInterfaces.dll","Microsoft.Extensions.DependencyInjection.Abstractions.dll","Microsoft.Extensions.DependencyInjection.dll","Microsoft.Extensions.Logging.Abstractions.dll","Microsoft.Extensions.Options.dll","Microsoft.Extensions.Primitives.dll","Microsoft.JSInterop.dll","Mono.Security.dll","Mono.WebAssembly.Interop.dll","mscorlib.dll","Polished.net.dll","SamplePages.dll","Stateless.dll","System.Buffers.dll","System.ComponentModel.Annotations.dll","System.Core.dll","System.dll","System.Memory.dll","System.Net.Http.dll","System.Numerics.Vectors.dll","System.Runtime.CompilerServices.Unsafe.dll","System.Text.Encodings.Web.dll","System.Text.Json.dll","System.Threading.Tasks.Extensions.dll","BlazorStyled.pdb","BlazorTypography.pdb","ClientSideSample.pdb","SamplePages.pdb"],"cssReferences":[],"jsReferences":[],"linkerEnabled":true}
1+
{"main":"ClientSideSample.dll","entryPoint":"Sample.Program::Main","assemblyReferences":["BlazorPrettyCode.dll","BlazorStyled.dll","BlazorTypography.dll","CSHTMLTokenizer.dll","Microsoft.AspNetCore.Authorization.dll","Microsoft.AspNetCore.Blazor.dll","Microsoft.AspNetCore.Blazor.HttpClient.dll","Microsoft.AspNetCore.Components.dll","Microsoft.AspNetCore.Components.Forms.dll","Microsoft.AspNetCore.Components.Web.dll","Microsoft.AspNetCore.Metadata.dll","Microsoft.Bcl.AsyncInterfaces.dll","Microsoft.Extensions.DependencyInjection.Abstractions.dll","Microsoft.Extensions.DependencyInjection.dll","Microsoft.Extensions.Logging.Abstractions.dll","Microsoft.Extensions.Options.dll","Microsoft.Extensions.Primitives.dll","Microsoft.JSInterop.dll","Mono.Security.dll","Mono.WebAssembly.Interop.dll","mscorlib.dll","Polished.net.dll","SamplePages.dll","Stateless.dll","System.Buffers.dll","System.ComponentModel.Annotations.dll","System.Core.dll","System.dll","System.Memory.dll","System.Net.Http.dll","System.Numerics.Vectors.dll","System.Runtime.CompilerServices.Unsafe.dll","System.Text.Encodings.Web.dll","System.Text.Json.dll","System.Threading.Tasks.Extensions.dll","BlazorTypography.pdb","ClientSideSample.pdb","SamplePages.pdb"],"cssReferences":[],"jsReferences":[],"linkerEnabled":true}

docs/_framework/blazor.server.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/_framework/blazor.webassembly.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/_framework/wasm/mono.js

+159-166
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/_framework/wasm/mono.wasm

2.29 KB
Binary file not shown.

src/BlazorTypography/BlazorTypography.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<IsPackable>true</IsPackable>
77
<LangVersion>8.0</LangVersion>
88
<PackageId>BlazorTypography</PackageId>
9-
<Version>1.0.0-preview8-04</Version>
9+
<Version>1.0.0-preview9-01</Version>
1010
<Authors>Chanan Braunstein</Authors>
1111
<Title>BlazorTypography</Title>
1212
<Description>A powerful toolkit for building websites with beautiful design</Description>
@@ -16,13 +16,13 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="BlazorStyled" Version="1.0.0-preview8-04" />
20-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.0.0-preview8.19405.7" />
21-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.0.0-preview8.19405.7" />
19+
<PackageReference Include="BlazorStyled" Version="1.0.0-preview9-01" />
20+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.0.0-preview9.19424.4" />
21+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.0.0-preview9.19424.4" />
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="Microsoft.AspNetCore.Blazor" Version="3.0.0-preview8.19405.7" />
25+
<PackageReference Include="Microsoft.AspNetCore.Blazor" Version="3.0.0-preview9.19424.4" />
2626
<PackageReference Include="Polished" Version="1.0.0-preview-02" />
2727
</ItemGroup>
2828

src/Sample/ClientSideSample.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.AspNetCore.Blazor" Version="3.0.0-preview8.19405.7" />
12-
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="3.0.0-preview8.19405.7" PrivateAssets="all" />
13-
<PackageReference Include="Microsoft.AspNetCore.Blazor.HttpClient" Version="3.0.0-preview8.19405.7" />
14-
<PackageReference Include="Microsoft.AspNetCore.Blazor.DevServer" Version="3.0.0-preview8.19405.7" PrivateAssets="all" />
11+
<PackageReference Include="Microsoft.AspNetCore.Blazor" Version="3.0.0-preview9.19424.4" />
12+
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="3.0.0-preview9.19424.4" PrivateAssets="all" />
13+
<PackageReference Include="Microsoft.AspNetCore.Blazor.HttpClient" Version="3.0.0-preview9.19424.4" />
14+
<PackageReference Include="Microsoft.AspNetCore.Blazor.DevServer" Version="3.0.0-preview9.19424.4" PrivateAssets="all" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

src/SamplePages/App.razor

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<Router AppAssembly="typeof(App).Assembly">
2-
<NotFoundContent>
3-
<p>Sorry, there's nothing at this address.</p>
4-
</NotFoundContent>
2+
<Found Context="routeData">
3+
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
4+
</Found>
5+
<NotFound>
6+
<LayoutView Layout="@typeof(MainLayout)">
7+
<p>Sorry, there's nothing at this address.</p>
8+
</LayoutView>
9+
</NotFound>
510
</Router>

src/SamplePages/Pages/ThemeSwitcherBase.cs

+11-11
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ protected override void OnInitialized()
4343
Typography.ApplyTypography(defaultTheme);
4444
}
4545

46-
protected void OnChangeSelected(UIChangeEventArgs e)
46+
protected void OnChangeSelected(ChangeEventArgs e)
4747
{
4848
Selected = (string)e.Value;
4949
ITypographyOptions theme = Typography.ThemeForName(Selected);
@@ -61,39 +61,39 @@ protected void OnChangeSelected(UIChangeEventArgs e)
6161
BoldWeight = theme.BoldWeight;
6262
}
6363

64-
protected void OnChangeFontsize(UIChangeEventArgs e)
64+
protected void OnChangeFontsize(ChangeEventArgs e)
6565
{
6666
Fontsize = (string)e.Value;
6767
}
6868

69-
protected void OnChangeLineheight(UIChangeEventArgs e)
69+
protected void OnChangeLineheight(ChangeEventArgs e)
7070
{
7171
Lineheight = (string)e.Value;
7272
}
7373

74-
protected void OnChangeRatio(UIChangeEventArgs e)
74+
protected void OnChangeRatio(ChangeEventArgs e)
7575
{
7676
Ratio = (string)e.Value;
7777
}
7878

79-
protected void OnChangeSpacing(UIChangeEventArgs e)
79+
protected void OnChangeSpacing(ChangeEventArgs e)
8080
{
8181
Spacing = (string)e.Value;
8282
}
8383

84-
protected void OnChangeCodePlugin(UIChangeEventArgs e)
84+
protected void OnChangeCodePlugin(ChangeEventArgs e)
8585
{
8686
UseCodePlugin = (bool)e.Value;
8787
}
8888

89-
protected void OnChangeHeaderFont(UIChangeEventArgs e)
89+
protected void OnChangeHeaderFont(ChangeEventArgs e)
9090
{
9191
HeaderFont = (string)e.Value;
9292
HeaderWeights = GetWeightForDropdown(HeaderFont);
9393
HeaderWeight = GetBoldStyle(HeaderFont);
9494
}
9595

96-
protected void OnChangeBodyFont(UIChangeEventArgs e)
96+
protected void OnChangeBodyFont(ChangeEventArgs e)
9797
{
9898
BodyFont = (string)e.Value;
9999
BoldWeights = GetWeightForDropdown(BodyFont);
@@ -102,17 +102,17 @@ protected void OnChangeBodyFont(UIChangeEventArgs e)
102102
BodyWeight = "400";
103103
}
104104

105-
protected void OnChangeHeaderWeight(UIChangeEventArgs e)
105+
protected void OnChangeHeaderWeight(ChangeEventArgs e)
106106
{
107107
HeaderWeight = (string)e.Value;
108108
}
109109

110-
protected void OnChangeBodyWeight(UIChangeEventArgs e)
110+
protected void OnChangeBodyWeight(ChangeEventArgs e)
111111
{
112112
BodyWeight = (string)e.Value;
113113
}
114114

115-
protected void OnChangeBoldWeight(UIChangeEventArgs e)
115+
protected void OnChangeBoldWeight(ChangeEventArgs e)
116116
{
117117
BoldWeight = (string)e.Value;
118118
}

src/SamplePages/Pages/_Imports.razor

-1
This file was deleted.

src/SamplePages/SamplePages.csproj

+3-6
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,13 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.0.0-preview8.19405.7" />
10-
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.0.0-preview8.19405.7" />
9+
<PackageReference Include="BlazorPrettyCode" Version="1.0.0-preview9-01" />
10+
<PackageReference Include="Microsoft.AspNetCore.Components" Version="3.0.0-preview9.19424.4" />
11+
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="3.0.0-preview9.19424.4" />
1112
</ItemGroup>
1213

1314
<ItemGroup>
1415
<ProjectReference Include="..\BlazorTypography\BlazorTypography.csproj" />
1516
</ItemGroup>
1617

17-
<ItemGroup>
18-
<PackageReference Include="BlazorPrettyCode" Version="1.0.0-preview8-04" />
19-
</ItemGroup>
20-
2118
</Project>

src/SamplePages/_Imports.razor

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
@using System.Net.Http
22
@using Microsoft.AspNetCore.Components.Forms
33
@using Microsoft.AspNetCore.Components.Routing
4+
@using Microsoft.AspNetCore.Components.Web
45
@using Microsoft.JSInterop
56
@using SamplePages
67
@using SamplePages.Shared

src/ServerSideSample/Pages/_Host.cshtml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
1010
<title>BlazorTypography Server Side Sample Site</title>
1111
<base href="~/" />
12-
@(await Html.RenderComponentAsync<BlazorStyled.ServerSideStyled>())
12+
@(await Html.RenderComponentAsync<BlazorStyled.ServerSideStyled>(RenderMode.Server))
1313
</head>
1414
<body>
15-
<app>@(await Html.RenderComponentAsync<SamplePages.App>())</app>
15+
<app>@(await Html.RenderComponentAsync<SamplePages.App>(RenderMode.Server))</app>
1616

1717
<script src="_framework/blazor.server.js"></script>
1818
</body>

src/ServerSideSample/Startup.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ public void ConfigureServices(IServiceCollection services)
3232
services.AddScoped<HttpClient>(s =>
3333
{
3434
// Creating the URI helper needs to wait until the JS Runtime is initialized, so defer it.
35-
IUriHelper uriHelper = s.GetRequiredService<IUriHelper>();
35+
NavigationManager navigationManager = s.GetRequiredService<NavigationManager>();
3636
return new HttpClient
3737
{
38-
BaseAddress = new Uri(uriHelper.GetBaseUri())
38+
BaseAddress = new Uri(navigationManager.BaseUri)
3939
};
4040
});
4141
}

0 commit comments

Comments
 (0)