@acorex/components 3.0.35 → 3.0.36
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/acorex-components.metadata.json +1 -1
- package/bundles/acorex-components.umd.js +5 -0
- package/bundles/acorex-components.umd.js.map +1 -1
- package/bundles/acorex-components.umd.min.js +1 -1
- package/bundles/acorex-components.umd.min.js.map +1 -1
- package/esm2015/lib/tree-view/tree-view.component.js +6 -1
- package/esm5/lib/tree-view/tree-view.component.js +6 -1
- package/fesm2015/acorex-components.js +5 -0
- package/fesm2015/acorex-components.js.map +1 -1
- package/fesm5/acorex-components.js +5 -0
- package/fesm5/acorex-components.js.map +1 -1
- package/lib/tree-view/tree-view.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -14464,6 +14464,11 @@
|
|
|
14464
14464
|
this.internalSelectItem(item, false);
|
|
14465
14465
|
}
|
|
14466
14466
|
};
|
|
14467
|
+
AXTreeViewComponent.prototype.unSelectItem = function (item) {
|
|
14468
|
+
if (item['select'] == true) {
|
|
14469
|
+
this.internalSelectItem(item, false);
|
|
14470
|
+
}
|
|
14471
|
+
};
|
|
14467
14472
|
AXTreeViewComponent.prototype.open = function (item) {
|
|
14468
14473
|
if (item['toggle'] !== true) {
|
|
14469
14474
|
this.toggleNode(item, true);
|