Skip to content

Commit

Permalink
refactor(DockView): update TitleClass type to string (#3408)
Browse files Browse the repository at this point in the history
* refactor: 更改 TitleClass 为字符串类型

* chore: bump version 8.1.2

* chore: 更新依赖包
  • Loading branch information
ArgoZhang authored May 2, 2024
1 parent cedd495 commit 7fcea41
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/BootstrapBlazor.Server/BootstrapBlazor.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<PackageReference Include="BootstrapBlazor.Chart" Version="8.1.0" />
<PackageReference Include="BootstrapBlazor.CherryMarkdown" Version="8.0.0" />
<PackageReference Include="BootstrapBlazor.CodeEditor" Version="8.0.2" />
<PackageReference Include="BootstrapBlazor.Dock" Version="8.1.1" />
<PackageReference Include="BootstrapBlazor.Dock" Version="8.1.2" />
<PackageReference Include="BootstrapBlazor.FileViewer" Version="8.0.1" />
<PackageReference Include="BootstrapBlazor.FontAwesome" Version="8.0.2" />
<PackageReference Include="BootstrapBlazor.Gantt" Version="8.0.1" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<Version>8.1.1</Version>
<Version>8.1.2</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class DockComponent : DockComponentBase
/// </summary>
[Parameter]
[JsonIgnore]
public int? TitleWidth { get; set; }
public string? TitleWidth { get; set; }

/// <summary>
/// 获得/设置 组件 Title 样式 默认 null 未设置
Expand Down

0 comments on commit 7fcea41

Please sign in to comment.