@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.
@@ -14258,6 +14258,11 @@ var AXTreeViewComponent = /** @class */ (function (_super) {
14258
14258
  this.internalSelectItem(item, false);
14259
14259
  }
14260
14260
  };
14261
+ AXTreeViewComponent.prototype.unSelectItem = function (item) {
14262
+ if (item['select'] == true) {
14263
+ this.internalSelectItem(item, false);
14264
+ }
14265
+ };
14261
14266
  AXTreeViewComponent.prototype.open = function (item) {
14262
14267
  if (item['toggle'] !== true) {
14263
14268
  this.toggleNode(item, true);