@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.
@@ -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);