Skip to content

Commit

Permalink
Rtl improvement & .Net 8.0.3 (#1275)
Browse files Browse the repository at this point in the history
* Improve switch label placement

* Remove line added by VS excluding MBSwitch.scss

* 2024-03-12: DB updates (no 8.0.3 yet)

* Repair to release notes.

* Repair deleted files and source of the deletion

* 8.0.3

* Fix some MD3 issues

* Stale file

---------

Co-authored-by: Simon Ziegler <[email protected]>
  • Loading branch information
MarkStega and simonziegler authored Mar 12, 2024
1 parent 67d5aa7 commit 997bf5f
Show file tree
Hide file tree
Showing 30 changed files with 23,253 additions and 678 deletions.
8 changes: 5 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@

#Generated CSS and JS files
**/Material.Blazor/wwwroot/*.css
**/Material.Blazor/wwwroot/*.js
# TEMPORARY REMOVAL WHILE PUBLISH DELETES STATIC ASSETS
# **/Material.Blazor.Website/wwwroot/js/*.*
**/Material.Blazor.MD3/wwwroot/*.css
**/Material.Blazor.MD3/wwwroot/*.js
# TEMPORARY ADDITION UNTIL A SUITABLE TSC COMMAND IS FOUND TO PRODUCE THIS JS
!**/Material.Blazor.MD3/wwwroot/Material.Blazor.MD3.lib.module.js
**/Material.Blazor.Website/wwwroot/css/*.*
**/Material.Blazor.Website/wwwroot/js/*.*
# TEMPORARY REMOVAL while build/publish deletes static assets
#**/Material.Blazor.Website/wwwroot/js/*.*
**/Material.Blazor.Website.MD3/wwwroot/css/*.*
# TEMPORARY REMOVAL WHILE PUBLISH DELETES STATIC ASSETS
# TEMPORARY REMOVAL while build/publish deletes static assets
# **/Material.Blazor.Website.MD3/wwwroot/js/*.*

# Generated by DocFx build
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public abstract class InternalTextFieldBase2 : InputComponent<string>

#region local members

private MBDensity AppliedDensity => CascadingDefaults.AppliedTextFieldDensity(Density);
// private MBDensity AppliedDensity => CascadingDefaults.AppliedTextFieldDensity(Density);

private string DateFieldErrorMessage { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion Material.Blazor.MD3/Components/TextField/MBTextField.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public sealed class MBTextField : InputComponent<string>

#region local members

private MBDensity AppliedDensity => CascadingDefaults.AppliedTextFieldDensity(Density);
// private MBDensity AppliedDensity => CascadingDefaults.AppliedTextFieldDensity(Density);

private string DateFieldErrorMessage { get; set; }

Expand Down
6 changes: 3 additions & 3 deletions Material.Blazor.MD3/Material.Blazor.MD3.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.3" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
</ItemGroup>

<ItemGroup>
Expand Down
537 changes: 17 additions & 520 deletions Material.Blazor.MD3/Model/MBCascadingDefaults.cs

Large diffs are not rendered by default.

88 changes: 60 additions & 28 deletions Material.Blazor.MD3/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Material.Blazor.MD3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@material/web": "^1.3.1-nightly.34c0a67.0",
"@material/web": "^1.3.1-nightly.2ae226c.0",
"babel-loader": "^9.1.3",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"material-components-web": "14.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
<ItemGroup>
<PackageReference Include="GoogleAnalytics.Blazor" Version="1.0.3" />
<PackageReference Include="Markdig" Version="0.35.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.3" />
<PackageReference Include="Humanizer" Version="2.14.1" />
<PackageReference Include="System.Net.Http.Json" Version="8.0.0" />
</ItemGroup>
Expand Down
86 changes: 59 additions & 27 deletions Material.Blazor.Website.MD3/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 997bf5f

Please sign in to comment.