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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.0] - 2026-07-31

### Added

#### Components
- [x] **Toolbar** - BitToolbar component for grouping icon-based action items in a navigation bar (#98)
- [x] BitToolbarItem - Individual action item sub-component
- [x] BitToolbarDivider - Visual and semantic separator between items
- [x] ToolbarSize enumeration
- [x] **Dropdown** - BitDropdown component for collapsible menus with no JavaScript interop required (#102)
- [x] BitDropdownItem - Individual menu entry sub-component
- [x] DropdownItemSize, DropdownMenuColor, DropdownMenuWidth, DropdownPosition enumerations
- [x] ActivatorContext - Context type for custom activator templates
- [x] **BottomNav** - BitBottomNav component for mobile-optimized bottom navigation (#103)
- [x] BitBottomNavItem - Individual navigation item sub-component
- [x] Support for icons, badges, and alert indicators

#### Documentation
- [x] Toolbar component documentation
- [x] Dropdown component documentation
- [x] BottomNav component documentation

## [0.3.0] - 2026-05-30

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="10.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.10" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="10.0.10" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<ItemGroup>
<ProjectReference Include="..\BitBlazor.Sample.Client\BitBlazor.Sample.Client.csproj" />
<ProjectReference Include="..\..\..\src\BitBlazor\BitBlazor.csproj" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.8">
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.10" />
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.0.10" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.10" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.10" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.10">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
4 changes: 2 additions & 2 deletions src/BitBlazor/BitBlazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<Title>BitBlazor</Title>
<Description>BitBlazor is a UI library project that provides accessible, reusable Blazor components styled with Bootstrap Italia</Description>
<Authors>Alberto Mori</Authors>
<Version>0.3.0</Version>
<Version>0.4.0</Version>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/albx/bitblazor</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand All @@ -24,7 +24,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.16" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.18" />
</ItemGroup>

<ItemGroup>
Expand Down
3 changes: 3 additions & 0 deletions src/BitBlazor/Components/Toolbar/BitToolbarDivider.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

namespace BitBlazor.Components;

/// <summary>
/// Represents a divider in a <see cref="BitToolbar"/> component.
/// </summary>
public partial class BitToolbarDivider
{
[CascadingParameter]
Expand Down
4 changes: 2 additions & 2 deletions stories/BitBlazor.Stories/BitBlazor.Stories.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BlazingStory" Version="1.0.0-preview.82" />
<PackageReference Include="BlazingStory.McpServer" Version="1.0.0-preview.82" />
<PackageReference Include="BlazingStory" Version="1.0.0-preview.91" />
<PackageReference Include="BlazingStory.McpServer" Version="1.0.0-preview.91" />
<PackageReference Include="MD2RazorGenerator" Version="1.2.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
Expand Down
4 changes: 2 additions & 2 deletions tests/BitBlazor.Test/BitBlazor.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AngleSharp" Version="1.5.2" />
<PackageReference Include="bunit" Version="2.7.2" />
<PackageReference Include="AngleSharp" Version="1.6.0" />
<PackageReference Include="bunit" Version="2.8.6" />
<PackageReference Include="coverlet.collector" Version="10.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
Loading