@paperless/angular 0.1.0-alpha.237 → 0.1.0-alpha.238
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/modules/table/components/table/table.component.mjs +3 -1
- package/esm2020/lib/modules/table/directives/p-table-ngx.directive.mjs +2 -2
- package/fesm2015/paperless-angular.mjs +3 -2
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +3 -1
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2225,7 +2225,9 @@ let Table = class Table {
|
|
|
2225
2225
|
this.pageChange.emit(detail);
|
|
2226
2226
|
}
|
|
2227
2227
|
filterModalSave() {
|
|
2228
|
+
console.log('filterModalSave');
|
|
2228
2229
|
this.filter.emit();
|
|
2230
|
+
console.log('Filter emitted');
|
|
2229
2231
|
this.filterModalShow$.next(false);
|
|
2230
2232
|
}
|
|
2231
2233
|
_parseItems(items) {
|
|
@@ -2652,7 +2654,7 @@ class TableNgxDirective extends BaseValueAccessor {
|
|
|
2652
2654
|
if (value?.quickFilter) {
|
|
2653
2655
|
this._setActiveQuickFilter(value.quickFilter);
|
|
2654
2656
|
}
|
|
2655
|
-
if (value?.filters
|
|
2657
|
+
if (value?.filters) {
|
|
2656
2658
|
this._base.selectedFiltersAmount = value.filters.length;
|
|
2657
2659
|
}
|
|
2658
2660
|
this._checkEmptyStateType();
|