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.
@@ -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.applyFilterInternal();
1066
+ this.applyFiltersInternal();
1066
1067
  };
1067
1068
  NgxAurMatTableComponent.prototype.clearFilters = function () {
1068
1069
  this.filterStorage.clear();
1069
- this.applyFilterInternal();
1070
+ this.applyFiltersInternal();
1070
1071
  };
1071
- NgxAurMatTableComponent.prototype.applyFilterInternal = function () {
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); });