ngx-st-tables 17.0.9 → 17.0.10
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/esm2022/lib/components/material-table/material-table-caption/material-table-caption.component.mjs +9 -3
- package/esm2022/lib/components/material-table/material-table.component.mjs +43 -23
- package/fesm2022/ngx-st-tables.mjs +49 -23
- package/fesm2022/ngx-st-tables.mjs.map +1 -1
- package/lib/components/material-table/material-table-caption/material-table-caption.component.d.ts +3 -1
- package/lib/components/material-table/material-table.component.d.ts +3 -1
- package/package.json +1 -1
|
@@ -32,21 +32,23 @@ export declare class MaterialTableComponent extends StSubscribeDestroyComponent
|
|
|
32
32
|
selectedColumns: ViewStMaterialTableColumnModel[];
|
|
33
33
|
selectedColumnsString: string[];
|
|
34
34
|
tableSource: MatTableDataSource<any>;
|
|
35
|
-
pageIndex: number;
|
|
36
35
|
initFilters: {
|
|
37
36
|
[key: string]: string;
|
|
38
37
|
};
|
|
39
38
|
initGlobalSearch: string;
|
|
39
|
+
showTable: boolean;
|
|
40
40
|
private localStorageData;
|
|
41
41
|
constructor(changeDetectorRef: ChangeDetectorRef);
|
|
42
42
|
ngOnInit(): void;
|
|
43
43
|
ngAfterViewInit(): void;
|
|
44
44
|
captionDataChanged(event: ICaptionDataChanged): void;
|
|
45
45
|
checkIfActionVisible(row: any, action: LocalTableActionColumnModel): boolean;
|
|
46
|
+
resetTableSettings(): void;
|
|
46
47
|
private createCustomFilterForLocalTable;
|
|
47
48
|
private emitLazyLoading;
|
|
48
49
|
private updateDataToLocalStorage;
|
|
49
50
|
private setInitTable;
|
|
51
|
+
private setSortPageSubscription;
|
|
50
52
|
private setDisplayedColumns;
|
|
51
53
|
private setColumnsOrder;
|
|
52
54
|
private setColumnsVisible;
|