keevo-components 1.5.211 → 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.
@@ -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();
@@ -2540,10 +2542,8 @@ class TableComponent {
2540
2542
  return retorno;
2541
2543
  }
2542
2544
  onGlobalFilter(table, event) {
2543
- if (event.target.value.length >= 3) {
2544
- this.filterField.emit(event.target.value);
2545
- table.filterGlobal(event.target.value, 'contains');
2546
- }
2545
+ this.filterField.emit(event.target.value);
2546
+ table.filterGlobal(event.target.value, 'contains');
2547
2547
  }
2548
2548
  paginate(event) {
2549
2549
  if (event) {