wave-ui 3.6.0 → 3.6.1
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/dist/wave-ui.es.js
CHANGED
|
@@ -3437,9 +3437,10 @@ const zl = {
|
|
|
3437
3437
|
}));
|
|
3438
3438
|
},
|
|
3439
3439
|
applySelectionOnItems(e) {
|
|
3440
|
-
this.isMultipleSelect || this.listItems.forEach((
|
|
3441
|
-
|
|
3442
|
-
|
|
3440
|
+
this.isMultipleSelect || this.listItems.forEach((l) => l._selected = !1);
|
|
3441
|
+
const t = this.checkSelection(e);
|
|
3442
|
+
this.listItems.forEach((l) => {
|
|
3443
|
+
l._selected = t.find((o) => l._value === o) !== void 0;
|
|
3443
3444
|
});
|
|
3444
3445
|
}
|
|
3445
3446
|
},
|