@acorex/components 3.0.39 → 3.0.40
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/bundles/acorex-components.umd.js +3 -3
- 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 +4 -4
- package/esm5/lib/tree-view/tree-view.component.js +4 -4
- package/fesm2015/acorex-components.js +3 -3
- package/fesm2015/acorex-components.js.map +1 -1
- package/fesm5/acorex-components.js +3 -3
- package/fesm5/acorex-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -13855,15 +13855,15 @@ var AXTreeViewComponent = /** @class */ (function (_super) {
|
|
|
13855
13855
|
if (node.children != null && node.children.length > 0) {
|
|
13856
13856
|
node.children.selectChilds = function () {
|
|
13857
13857
|
item.childeren.forEach(function (element) {
|
|
13858
|
-
if (
|
|
13858
|
+
if (element['select'] != true) {
|
|
13859
13859
|
_this.internalSelectItem(element, true);
|
|
13860
13860
|
}
|
|
13861
13861
|
});
|
|
13862
13862
|
};
|
|
13863
13863
|
node.children.unSelectChilds = function () {
|
|
13864
13864
|
item.childeren.forEach(function (element) {
|
|
13865
|
-
if (
|
|
13866
|
-
_this.internalSelectItem(
|
|
13865
|
+
if (element['select'] == true) {
|
|
13866
|
+
_this.internalSelectItem(element, true);
|
|
13867
13867
|
}
|
|
13868
13868
|
});
|
|
13869
13869
|
};
|