hy-virtual-tree 1.1.48 → 1.1.50
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 +14 -0
- package/dist/index.css +4 -4
- package/dist/index.js +6866 -253
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 1.1.50
|
|
4
|
+
|
|
5
|
+
_2025-12-09_
|
|
6
|
+
|
|
7
|
+
- 扩展[VirtualTree] 功能
|
|
8
|
+
(1)修复tooltip在快速滚动时没有关闭问题
|
|
9
|
+
|
|
10
|
+
### 1.1.49
|
|
11
|
+
|
|
12
|
+
_2025-12-06_
|
|
13
|
+
|
|
14
|
+
- 扩展[VirtualTree] 功能
|
|
15
|
+
(1)修复在奇安信浏览器下的css样式不兼容 :has(+.className) 查询下一个元素是否满足条件
|
|
16
|
+
|
|
3
17
|
### 1.1.48
|
|
4
18
|
|
|
5
19
|
_2025-12-04_
|
package/dist/index.css
CHANGED
|
@@ -469,12 +469,12 @@
|
|
|
469
469
|
right: 0;
|
|
470
470
|
transform: translateY(-50%);
|
|
471
471
|
}
|
|
472
|
-
.hy-tree .hy-tree-node:not(.hy-tree-channel-node):has(+ .hy-tree-channel-node) {
|
|
473
|
-
background-image: linear-gradient(to bottom, transparent 50%, var(--hy-tree-channel-bg-color) 50%, var(--hy-tree-channel-bg-color) 100%);
|
|
474
|
-
}
|
|
475
472
|
.hy-tree .hy-tree-node:not(.hy-tree-channel-node) + .hy-tree-channel-node .hy-tree-node-container .hy-tree-node__expand::before {
|
|
476
473
|
height: calc(var(--hy-tree-item-height) - var(--hy-tree-item-gap) / 2);
|
|
477
474
|
}
|
|
478
|
-
.hy-tree .hy-tree-
|
|
475
|
+
.hy-tree .hy-tree-node.hy-tree-device-node.hy-tree-node-expand {
|
|
476
|
+
background-image: linear-gradient(to bottom, transparent 50%, var(--hy-tree-channel-bg-color) 50%, var(--hy-tree-channel-bg-color) 100%);
|
|
477
|
+
}
|
|
478
|
+
.hy-tree .hy-tree-channel-node.hy-tree-channel-last-node {
|
|
479
479
|
background: linear-gradient(to bottom, var(--hy-tree-channel-bg-color) 0%, var(--hy-tree-channel-bg-color) calc(100% - var(--hy-tree-item-gap)), transparent calc(100% - var(--hy-tree-item-gap)));
|
|
480
480
|
}
|