@coreui/angular-pro 4.3.0-next.0 → 4.3.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/README.md +175 -175
- package/esm2020/lib/multi-select/multi-select/multi-select.component.mjs +2 -2
- package/esm2020/lib/multi-select/multi-select-option/multi-select-option.component.mjs +1 -1
- package/fesm2015/coreui-angular-pro.mjs +1 -1
- package/fesm2015/coreui-angular-pro.mjs.map +1 -1
- package/fesm2020/coreui-angular-pro.mjs +1 -1
- package/fesm2020/coreui-angular-pro.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -8843,7 +8843,7 @@ class MultiSelectComponent {
|
|
|
8843
8843
|
selectOptions() {
|
|
8844
8844
|
this.multiSelectOptions?.forEach((option, index) => {
|
|
8845
8845
|
option.optionsStyle = this.optionsStyle;
|
|
8846
|
-
option.selected = option.value !== undefined ? this.value.includes(option.value)
|
|
8846
|
+
option.selected = option.value !== undefined ? this.value.includes(option.value) : !!option.selected;
|
|
8847
8847
|
});
|
|
8848
8848
|
}
|
|
8849
8849
|
clearAllOptions($event) {
|