@acorex/components 1.3.84 → 1.3.85
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 +2 -2
- 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/selectbox/selectbox.component.js +3 -3
- package/esm5/lib/selectbox/selectbox.component.js +3 -3
- package/fesm2015/acorex-components.js +2 -2
- package/fesm2015/acorex-components.js.map +1 -1
- package/fesm5/acorex-components.js +2 -2
- package/fesm5/acorex-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -8494,10 +8494,10 @@ var AXSelectBoxComponent = /** @class */ (function (_super) {
|
|
|
8494
8494
|
ID: vId
|
|
8495
8495
|
});
|
|
8496
8496
|
});
|
|
8497
|
-
var newId = differenceBy(addId_1, _this.selectedItems,
|
|
8497
|
+
var newId = differenceBy(addId_1, _this.selectedItems, _this.valueField);
|
|
8498
8498
|
var vv_1 = [];
|
|
8499
8499
|
newId.forEach(function (rc) {
|
|
8500
|
-
vv_1.push(rc[
|
|
8500
|
+
vv_1.push(rc[_this.valueField]);
|
|
8501
8501
|
});
|
|
8502
8502
|
_this.selectedItems.push(_this.items.filter(function (c) { return vv_1.includes(c[_this.valueField]); })[0]);
|
|
8503
8503
|
_this.setSelectedItemsChange(_this.selectedItems);
|