@esvndev/es-react-table-interface 1.3.12 → 1.4.1
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.
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { IQueryFilter } from "../../interface";
|
|
2
|
+
import { IToolbarTemplate } from "../../ultility/Export";
|
|
3
|
+
export declare const getSettingTable: ({ stateId, group, setGroupColumns, setSettingTable }: {
|
|
4
|
+
stateId: any;
|
|
5
|
+
group: any;
|
|
6
|
+
setGroupColumns: any;
|
|
7
|
+
setSettingTable: any;
|
|
8
|
+
}) => Promise<void>;
|
|
9
|
+
export declare const getStorage: (stateId: string) => {
|
|
10
|
+
storageSearchTerm: any;
|
|
11
|
+
storageQueryFilter: any;
|
|
12
|
+
};
|
|
13
|
+
export declare const lang: string;
|
|
14
|
+
export declare const localeLanguage: any;
|
|
15
|
+
export declare const sort: any;
|
|
16
|
+
export declare const renderData: ({ id, more, more1 }: {
|
|
17
|
+
id: string;
|
|
18
|
+
more?: {
|
|
19
|
+
queryGroup: IQueryFilter[];
|
|
20
|
+
fieldGroup: string;
|
|
21
|
+
lastLevel: boolean;
|
|
22
|
+
id: string;
|
|
23
|
+
};
|
|
24
|
+
more1: {
|
|
25
|
+
dataSource: any;
|
|
26
|
+
setIsLoading: any;
|
|
27
|
+
paramToolbar: IToolbarTemplate[] | undefined;
|
|
28
|
+
querySelectDefault: any;
|
|
29
|
+
queryFilter: any;
|
|
30
|
+
searchTerm: any;
|
|
31
|
+
rowsPerPage: any;
|
|
32
|
+
currentPage: any;
|
|
33
|
+
queryOrder: any;
|
|
34
|
+
stateId: any;
|
|
35
|
+
productCode: any;
|
|
36
|
+
hasWorkflow: any;
|
|
37
|
+
setDataView: any;
|
|
38
|
+
dataView: any;
|
|
39
|
+
columns: any;
|
|
40
|
+
callback?: any;
|
|
41
|
+
};
|
|
42
|
+
}) => Promise<void>;
|