ngx-aur-mat-table 12.2.11 → 12.2.12
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/bundles/ngx-aur-mat-table.umd.js +4 -3
- package/bundles/ngx-aur-mat-table.umd.js.map +1 -1
- package/esm2015/lib/ngx-aur-mat-table.component.js +5 -4
- package/fesm2015/ngx-aur-mat-table.js +4 -3
- package/fesm2015/ngx-aur-mat-table.js.map +1 -1
- package/lib/ngx-aur-mat-table.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1059,16 +1059,17 @@
|
|
|
1059
1059
|
};
|
|
1060
1060
|
NgxAurMatTableComponent.prototype.removeFilter = function (filterName) {
|
|
1061
1061
|
this.filterStorage.delete(filterName);
|
|
1062
|
+
this.applyFiltersInternal();
|
|
1062
1063
|
};
|
|
1063
1064
|
NgxAurMatTableComponent.prototype.applyFilter = function (filterName, filter) {
|
|
1064
1065
|
this.filterStorage.set(filterName, filter);
|
|
1065
|
-
this.
|
|
1066
|
+
this.applyFiltersInternal();
|
|
1066
1067
|
};
|
|
1067
1068
|
NgxAurMatTableComponent.prototype.clearFilters = function () {
|
|
1068
1069
|
this.filterStorage.clear();
|
|
1069
|
-
this.
|
|
1070
|
+
this.applyFiltersInternal();
|
|
1070
1071
|
};
|
|
1071
|
-
NgxAurMatTableComponent.prototype.
|
|
1072
|
+
NgxAurMatTableComponent.prototype.applyFiltersInternal = function () {
|
|
1072
1073
|
var filterActions = __spreadArray([], __read(this.filterStorage.values()));
|
|
1073
1074
|
this.tableDataSource.filterPredicate = function (data) {
|
|
1074
1075
|
return filterActions.every(function (filterAction) { return filterAction.filterFn()(data); });
|