hy-virtual-tree 1.1.71 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +19 -1
- package/dist/index.css +9 -0
- package/dist/index.js +555 -477
- package/dist/svg_bundle.js +1 -0
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,30 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 2.0.0
|
|
4
|
+
|
|
5
|
+
_2026-03-11_
|
|
6
|
+
|
|
7
|
+
- 扩展[VirtualTree] 功能
|
|
8
|
+
(1)新增 svg symbol 打包构建,替换 图标图片组件 为 svg组件
|
|
9
|
+
(2)调整树组件的设备图标参数
|
|
10
|
+
(3)重构树组件渲染逻辑,优化性能
|
|
11
|
+
(4)新增全局设备图标自定义配置参数
|
|
12
|
+
(5)新增 planGroupDevice 业务类型
|
|
13
|
+
|
|
14
|
+
### 1.1.72
|
|
15
|
+
|
|
16
|
+
_2026-02-02_
|
|
17
|
+
|
|
18
|
+
- 扩展[VirtualTree] 功能
|
|
19
|
+
(1)修复树形的展开和选中逻辑问题,提取展开逻辑函数
|
|
20
|
+
|
|
3
21
|
### 1.1.71
|
|
4
22
|
|
|
5
23
|
_2026-01-31_
|
|
6
24
|
|
|
7
25
|
- 扩展[VirtualTree] 功能
|
|
8
26
|
(1)修复 channel业务下,设备下全部通道离线会导致设备的下拉选项隐藏问题
|
|
9
|
-
(
|
|
27
|
+
(2)修复 tooltip 快速滚动导致不会隐藏问题
|
|
10
28
|
|
|
11
29
|
### 1.1.70
|
|
12
30
|
|
package/dist/index.css
CHANGED
|
@@ -99,6 +99,15 @@
|
|
|
99
99
|
align-items: center;
|
|
100
100
|
justify-content: center;
|
|
101
101
|
}
|
|
102
|
+
.hy-icon > svg {
|
|
103
|
+
width: 100%;
|
|
104
|
+
height: 100%;
|
|
105
|
+
vertical-align: -0.15em;
|
|
106
|
+
stroke: currentColor;
|
|
107
|
+
overflow: hidden;
|
|
108
|
+
fill: currentColor;
|
|
109
|
+
outline: none;
|
|
110
|
+
}
|
|
102
111
|
|
|
103
112
|
.hy-empty-container {
|
|
104
113
|
position: absolute;
|