@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
|
@@ -14061,15 +14061,15 @@
|
|
|
14061
14061
|
if (node.children != null && node.children.length > 0) {
|
|
14062
14062
|
node.children.selectChilds = function () {
|
|
14063
14063
|
item.childeren.forEach(function (element) {
|
|
14064
|
-
if (
|
|
14064
|
+
if (element['select'] != true) {
|
|
14065
14065
|
_this.internalSelectItem(element, true);
|
|
14066
14066
|
}
|
|
14067
14067
|
});
|
|
14068
14068
|
};
|
|
14069
14069
|
node.children.unSelectChilds = function () {
|
|
14070
14070
|
item.childeren.forEach(function (element) {
|
|
14071
|
-
if (
|
|
14072
|
-
_this.internalSelectItem(
|
|
14071
|
+
if (element['select'] == true) {
|
|
14072
|
+
_this.internalSelectItem(element, true);
|
|
14073
14073
|
}
|
|
14074
14074
|
});
|
|
14075
14075
|
};
|