@acorex/components 1.3.86 → 1.3.87
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 +6 -1
- 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 +7 -2
- package/esm5/lib/selectbox/selectbox.component.js +7 -2
- package/fesm2015/acorex-components.js +6 -1
- package/fesm2015/acorex-components.js.map +1 -1
- package/fesm5/acorex-components.js +6 -1
- package/fesm5/acorex-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -8500,7 +8500,12 @@ var AXSelectBoxComponent = /** @class */ (function (_super) {
|
|
|
8500
8500
|
newId.forEach(function (rc) {
|
|
8501
8501
|
vv_1.push(rc[_this.valueField]);
|
|
8502
8502
|
});
|
|
8503
|
-
_this.
|
|
8503
|
+
_this.items
|
|
8504
|
+
.filter(function (c) { return vv_1.includes(c[_this.valueField]); })
|
|
8505
|
+
.forEach(function (res) {
|
|
8506
|
+
_this.selectedItems.push(res);
|
|
8507
|
+
});
|
|
8508
|
+
// this.selectedItems.push(this.items.filter((c) => vv.includes(c[this.valueField])));
|
|
8504
8509
|
_this.setSelectedItemsChange(_this.selectedItems);
|
|
8505
8510
|
}
|
|
8506
8511
|
// this.selectedItems = this.items.filter((c) => v.includes(c[this.valueField]));
|