From 3139df9164f3737a3dfaaa1b7cdede2cd18c7211 Mon Sep 17 00:00:00 2001 From: Argo Zhang Date: Thu, 1 Jan 2026 15:02:05 +0800 Subject: [PATCH 1/2] feat(DockView): not rend ChildContent when visible is false --- .../Components/DockViewComponent.razor | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/BootstrapBlazor.DockView/Components/DockViewComponent.razor b/src/components/BootstrapBlazor.DockView/Components/DockViewComponent.razor index e8ab800d..c6500815 100644 --- a/src/components/BootstrapBlazor.DockView/Components/DockViewComponent.razor +++ b/src/components/BootstrapBlazor.DockView/Components/DockViewComponent.razor @@ -1,4 +1,4 @@ -@inherits DockViewComponentBase +@inherits DockViewComponentBase
@if (TitleTemplate != null) @@ -11,5 +11,8 @@ { } - @ChildContent + @if (Visible) + { + @ChildContent + }
From 49dd6516d87f2e0dac7c76977e672cabaa64f670 Mon Sep 17 00:00:00 2001 From: Argo Zhang Date: Thu, 1 Jan 2026 15:02:42 +0800 Subject: [PATCH 2/2] chore: bump version 10.0.2 --- .../BootstrapBlazor.DockView/BootstrapBlazor.DockView.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/BootstrapBlazor.DockView/BootstrapBlazor.DockView.csproj b/src/components/BootstrapBlazor.DockView/BootstrapBlazor.DockView.csproj index 49b294d0..7796b451 100644 --- a/src/components/BootstrapBlazor.DockView/BootstrapBlazor.DockView.csproj +++ b/src/components/BootstrapBlazor.DockView/BootstrapBlazor.DockView.csproj @@ -1,7 +1,7 @@  - 10.0.1 + 10.0.2