keevo-components 1.5.212 → 1.5.213
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/api/base-components/base-component-multi-select.mjs +3 -1
- package/fesm2015/keevo-components.mjs +2 -0
- package/fesm2015/keevo-components.mjs.map +1 -1
- package/fesm2020/keevo-components.mjs +2 -0
- package/fesm2020/keevo-components.mjs.map +1 -1
- package/lib/api/base-components/base-component-multi-select.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1294,9 +1294,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.8", ngImpor
|
|
|
1294
1294
|
class BaseComponentMultiSelect extends BaseComponentInput {
|
|
1295
1295
|
constructor(componentService) {
|
|
1296
1296
|
super(componentService);
|
|
1297
|
+
this.options = [];
|
|
1297
1298
|
this.filter = false;
|
|
1298
1299
|
this.showClear = false;
|
|
1299
1300
|
this.lazy = false;
|
|
1301
|
+
this.filteredOptions = [];
|
|
1300
1302
|
this.onSelectionChange = new EventEmitter();
|
|
1301
1303
|
this.onPanelHide = new EventEmitter();
|
|
1302
1304
|
this.onSelectionValue = new EventEmitter();
|