Skip to content

Commit 6e13196

Browse files
authored
v0.1.0 updates (#28)
* Enhance menu structure and update branding Refactor Blazor components in `BlogMainLayout.razor`, `DemosMainLayout.razor`, and `DocsMainLayout.razor` to replace `<NavLink>` with `<MenuItem>`, introducing `Href` and `Match` properties for improved link handling. Update button text in `01_A_Manual_Install_06_Snippet.razor` and `02_A_Manual_Install_06_Snippet.razor` to reflect new branding. Adjust CSS formatting in `Menu.razor.css` for consistency. Modify rendering logic in `MenuItem.razor` to conditionally wrap `ChildContent` in a `<NavLink>` based on `Href`. Add `Href` and `Match` properties to the `MenuItem` class in `MenuItem.razor.cs` for enhanced control. Change `Match` property type in `Link` class from `NavLinkMatch` to `MenuItemMatch` in `Link.cs`. Update `_Imports.razor` to include additional namespaces for routing and web components. Introduce new `MenuItemMatch` enum to define menu item matching behavior. * Bump version to 0.1.0 in configuration files Updated version number in `appsettings.json` and `BlazorExpress.Bulma.csproj` from `0.0.1` to `0.1.0` to reflect the new release.
1 parent 04fac5e commit 6e13196

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

BlazorExpress.Bulma.Demo.Server/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
}
77
},
88
"AllowedHosts": "*",
9-
"version": "0.0.1",
9+
"version": "0.1.0",
1010
"release": {
1111
"short_description": "Initial release!!!"
1212
},

BlazorExpress.Bulma.Demo.WebAssembly/wwwroot/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.1",
2+
"version": "0.1.0",
33
"release": {
44
"short_description": "Initial release!!!"
55
},

BlazorExpress.Bulma/BlazorExpress.Bulma.csproj

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

33
<PropertyGroup>
44
<PackageId>BlazorExpress.Bulma</PackageId>
5-
<Version>0.0.1</Version>
6-
<PackageVersion>0.0.1</PackageVersion>
5+
<Version>0.1.0</Version>
6+
<PackageVersion>0.1.0</PackageVersion>
77
<PackageIconUrl>logo.png</PackageIconUrl>
88
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
99
<PackageProjectUrl>https://bulma.blazorexpress.com/</PackageProjectUrl>

0 commit comments

Comments
 (0)