hy-virtual-tree 2.0.14 → 2.0.15
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 +2 -2
- 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.15 */
|
|
2
2
|
import './svg_bundle.js';
|
|
3
3
|
const isString = (e) => typeof e === 'string';
|
|
4
4
|
const isNumber = (e) => typeof e === 'number';
|
|
@@ -9689,6 +9689,7 @@ class VirtualTree {
|
|
|
9689
9689
|
if (this._virtualScroll)
|
|
9690
9690
|
return;
|
|
9691
9691
|
this._tree = await this._createTree(config.data);
|
|
9692
|
+
this._renderHandler();
|
|
9692
9693
|
this._flattenTree = this._genereateFlattenTree();
|
|
9693
9694
|
const { checkedKeys, updateCheckedKeys, isIndeterminate, isChecked, toggleCheckbox, getChecked, afterNodeCheck, getCheckedKeys, getCheckedNodes, getCheckedBusinessNodes,
|
|
9694
9695
|
// getHalfCheckedKeys,
|
|
@@ -10030,7 +10031,6 @@ class VirtualTree {
|
|
|
10030
10031
|
// }
|
|
10031
10032
|
}
|
|
10032
10033
|
});
|
|
10033
|
-
this._renderHandler();
|
|
10034
10034
|
config.onLoad && config.onLoad();
|
|
10035
10035
|
// @ts-ignore
|
|
10036
10036
|
// 更新函数
|