tnx-shared 5.3.241 → 5.3.242

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.
@@ -45741,6 +45741,9 @@
45741
45741
  if (this._selectedValue != null) {
45742
45742
  if (this.control.multiple) {
45743
45743
  this._value = this._selectedValue.map(function (item) { return item[_this.control.valueField]; });
45744
+ if (this._value.length == 0) {
45745
+ this.itemCanDeletes = [];
45746
+ }
45744
45747
  }
45745
45748
  else {
45746
45749
  this._value = this._selectedValue[this.control.valueField];
@@ -45748,6 +45751,7 @@
45748
45751
  }
45749
45752
  else {
45750
45753
  this._value = null;
45754
+ this.itemCanDeletes = [];
45751
45755
  }
45752
45756
  };
45753
45757
  EntityPickerSelectedComponent.prototype.modifyGridInfo = function (gridInfo) {