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.
- package/bundles/tnx-shared.umd.js +4 -0
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/components/entity-picker/entity-picker-dialog/components/entity-picker-selected/entity-picker-selected.component.d.ts.map +1 -1
- package/esm2015/components/entity-picker/entity-picker-dialog/components/entity-picker-selected/entity-picker-selected.component.js +5 -1
- package/fesm2015/tnx-shared.js +4 -0
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
|
@@ -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) {
|