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
2 changes: 1 addition & 1 deletion src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<PackageReference Include="BootstrapBlazor.Tasks.Dashboard" Version="10.0.0" />
<PackageReference Include="BootstrapBlazor.Topology" Version="10.0.0" />
<PackageReference Include="BootstrapBlazor.UniverIcon" Version="10.0.0" />
<PackageReference Include="BootstrapBlazor.UniverSheet" Version="10.0.4" />
<PackageReference Include="BootstrapBlazor.UniverSheet" Version="10.0.5" />
<PackageReference Include="BootstrapBlazor.Vditor" Version="10.0.2" />
<PackageReference Include="BootstrapBlazor.VideoPlayer" Version="10.0.0" />
<PackageReference Include="BootstrapBlazor.WinBox" Version="10.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<Button OnClickWithoutRender="OnSaveExcelData" Text="@Localizer["SaveButtonText"]"></Button>
</section>
<div class="bb-sheet-demo">
<UniverSheet @ref="_sheetExcel" OnReadyAsync="OnReadyAsync" RibbonType="UniverSheetRibbonType.Default" IsDarkMode="false"></UniverSheet>
<UniverSheet @ref="_sheetExcel" OnReadyAsync="OnReadyAsync" RibbonType="UniverSheetRibbonType.Default"></UniverSheet>
Copy link

Copilot AI Dec 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The IsDarkMode parameter has been removed from this component instance to enable auto-switching of dark mode. However, the localization files (en-US.json and zh-CN.json) at line 7015 still reference the IsDarkMode parameter in the NormalDescDarkMode key, stating it controls whether the component uses dark mode. This documentation should be updated to reflect the new auto-switching behavior instead of mentioning a parameter that is no longer being used in the demo.

Copilot uses AI. Check for mistakes.
</div>
<section ignore>
<Textarea rows="3" readonly Value="@_jsonData"></Textarea>
Expand Down