@festo-ui/angular 5.1.0-dev.180 → 5.1.0-dev.186
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/esm2020/lib/forms/select/select.component.mjs +3 -1
- package/fesm2015/festo-ui-angular.mjs +2 -0
- package/fesm2015/festo-ui-angular.mjs.map +1 -1
- package/fesm2020/festo-ui-angular.mjs +2 -0
- package/fesm2020/festo-ui-angular.mjs.map +1 -1
- package/lib/forms/select/select.component.d.ts +5 -4
- package/package.json +1 -1
|
@@ -5408,6 +5408,8 @@ class FngSelectComponent {
|
|
|
5408
5408
|
}
|
|
5409
5409
|
if (this.multiple === true) {
|
|
5410
5410
|
this._value = value;
|
|
5411
|
+
// clear any previous state of overlay panel
|
|
5412
|
+
this.checked.clear();
|
|
5411
5413
|
// set checkmarks in overlay panel, so that it is displayed correctly when user opens it
|
|
5412
5414
|
value?.forEach((v) => {
|
|
5413
5415
|
this.checked.set(v, 'checked');
|