From d2e91a891d873c74287a20fa1bb671b17bd633fa Mon Sep 17 00:00:00 2001 From: Argo-Lenovo Date: Sun, 22 May 2022 11:16:14 +0800 Subject: [PATCH 1/2] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=20Title=20?= =?UTF-8?q?=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Components/TopologyItem.cs | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/Extensions/Components/BootstrapBlazor.Topology/Components/TopologyItem.cs b/src/Extensions/Components/BootstrapBlazor.Topology/Components/TopologyItem.cs index e97659e1e..984637a1b 100644 --- a/src/Extensions/Components/BootstrapBlazor.Topology/Components/TopologyItem.cs +++ b/src/Extensions/Components/BootstrapBlazor.Topology/Components/TopologyItem.cs @@ -10,27 +10,32 @@ namespace BootstrapBlazor.Components; public class TopologyItem { /// - /// + /// 获得/设置 对象 Id /// public string? ID { get; set; } /// - /// + /// 获得/设置 对象关联 Tag 位号值 /// public string? Tag { get; set; } /// - /// + /// 获得/设置 显示文字 /// public string? Text { get; set; } /// - /// + /// 获得/设置 组合组件状态切换值 一般从 0 开始 /// public double ShowChild { get; set; } /// - /// + /// 获得/设置 显示文字颜色 /// public string? TextColor { get; set; } + + /// + /// 获得/设置 对象 title 属性一般用于 tooltip 显示 + /// + public string? Title { get; set; } } -- Gitee From b4f09d3c14605a0fd175b21a619f95f7da693820 Mon Sep 17 00:00:00 2001 From: Argo-Lenovo Date: Sun, 22 May 2022 11:16:23 +0800 Subject: [PATCH 2/2] chore: bump verson 6.0.3 --- .../BootstrapBlazor.Topology/BootstrapBlazor.Topology.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Extensions/Components/BootstrapBlazor.Topology/BootstrapBlazor.Topology.csproj b/src/Extensions/Components/BootstrapBlazor.Topology/BootstrapBlazor.Topology.csproj index 39ec8ccd5..57934316e 100644 --- a/src/Extensions/Components/BootstrapBlazor.Topology/BootstrapBlazor.Topology.csproj +++ b/src/Extensions/Components/BootstrapBlazor.Topology/BootstrapBlazor.Topology.csproj @@ -1,7 +1,7 @@ - 6.0.2 + 6.0.3 -- Gitee