hy-virtual-tree 2.0.16 → 2.0.17
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 +6 -0
- package/dist/index.js +1 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* hy-virtual-tree v2.0.
|
|
1
|
+
/* hy-virtual-tree v2.0.17 */
|
|
2
2
|
import './svg_bundle.js';
|
|
3
3
|
const isString = (e) => typeof e === 'string';
|
|
4
4
|
const isNumber = (e) => typeof e === 'number';
|
|
@@ -9896,7 +9896,6 @@ class VirtualTree {
|
|
|
9896
9896
|
&& item.data.deviceStatus === 0) {
|
|
9897
9897
|
contentContainer.el.style.color = config.placeholderColor;
|
|
9898
9898
|
}
|
|
9899
|
-
console.log('this._props.showExpand', this._props);
|
|
9900
9899
|
if (this._props.showExpand) {
|
|
9901
9900
|
const expandIcon = generateExpandIcon(item);
|
|
9902
9901
|
contentContainer.el.appendChild(expandIcon);
|
|
@@ -10304,7 +10303,6 @@ class VirtualTree {
|
|
|
10304
10303
|
}
|
|
10305
10304
|
if (!node && dataType === DataType.PLAN_GROUP) {
|
|
10306
10305
|
node = this._tree.planGroupMap?.get(params.id);
|
|
10307
|
-
console.log('node', node);
|
|
10308
10306
|
}
|
|
10309
10307
|
node = node || this._tree.treeNodeMap.get(params.id);
|
|
10310
10308
|
if (!node) {
|