@firestitch/list 12.1.5 → 12.1.6
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/app/components/list/list.component.d.ts +1 -0
- package/bundles/firestitch-list.umd.js +7 -0
- package/bundles/firestitch-list.umd.js.map +1 -1
- package/esm2015/app/components/list/list.component.js +4 -1
- package/fesm2015/firestitch-list.js +3 -0
- package/fesm2015/firestitch-list.js.map +1 -1
- package/package.json +1 -1
|
@@ -55,6 +55,7 @@ export declare class FsListComponent implements OnInit, OnDestroy {
|
|
|
55
55
|
get groupEnabled(): boolean;
|
|
56
56
|
get paginatorVisible(): boolean;
|
|
57
57
|
set groupEnabled(value: boolean);
|
|
58
|
+
get filtersQuery(): Record<string, unknown>;
|
|
58
59
|
ngOnInit(): void;
|
|
59
60
|
ngOnDestroy(): void;
|
|
60
61
|
nextPage(): void;
|
|
@@ -6102,6 +6102,13 @@
|
|
|
6102
6102
|
enumerable: false,
|
|
6103
6103
|
configurable: true
|
|
6104
6104
|
});
|
|
6105
|
+
Object.defineProperty(FsListComponent.prototype, "filtersQuery", {
|
|
6106
|
+
get: function () {
|
|
6107
|
+
return this.list.filtersQuery;
|
|
6108
|
+
},
|
|
6109
|
+
enumerable: false,
|
|
6110
|
+
configurable: true
|
|
6111
|
+
});
|
|
6105
6112
|
FsListComponent.prototype.ngOnInit = function () {
|
|
6106
6113
|
this._subscribeToRemoveRow();
|
|
6107
6114
|
this._subscribeToGroupExpandStatusChange();
|