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