hy-virtual-tree 1.1.72 → 2.0.1
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 +18 -0
- package/dist/index.css +9 -0
- package/dist/index.js +553 -475
- package/dist/svg_bundle.js +1 -0
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 2.0.0
|
|
4
|
+
|
|
5
|
+
_2026-03-11_
|
|
6
|
+
|
|
7
|
+
- 扩展[VirtualTree] 功能
|
|
8
|
+
(1)修复外部自定义插槽传入对象报错问题
|
|
9
|
+
|
|
10
|
+
### 2.0.0
|
|
11
|
+
|
|
12
|
+
_2026-03-11_
|
|
13
|
+
|
|
14
|
+
- 扩展[VirtualTree] 功能
|
|
15
|
+
(1)新增 svg symbol 打包构建,替换 图标图片组件 为 svg组件
|
|
16
|
+
(2)调整树组件的设备图标参数
|
|
17
|
+
(3)重构树组件渲染逻辑,优化性能
|
|
18
|
+
(4)新增全局设备图标自定义配置参数
|
|
19
|
+
(5)新增 planGroupDevice 业务类型
|
|
20
|
+
|
|
3
21
|
### 1.1.72
|
|
4
22
|
|
|
5
23
|
_2026-02-02_
|
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;
|