material-react-table 0.7.6 → 0.8.0
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/README.md +1 -1
- package/dist/MaterialReactTable.d.ts +18 -16
- package/dist/body/MRT_TableBody.d.ts +0 -1
- package/dist/body/MRT_TableBodyCell.d.ts +1 -0
- package/dist/body/MRT_TableBodyRow.d.ts +0 -1
- package/dist/buttons/MRT_CopyButton.d.ts +2 -1
- package/dist/enums.d.ts +2 -2
- package/dist/filtersFNs.d.ts +31 -30
- package/dist/footer/MRT_TableFooter.d.ts +0 -1
- package/dist/head/MRT_TableHead.d.ts +0 -1
- package/dist/inputs/MRT_FilterRangeFields.d.ts +8 -0
- package/dist/inputs/MRT_FilterTextField.d.ts +1 -0
- package/dist/localization.d.ts +6 -2
- package/dist/material-react-table.cjs.development.js +550 -575
- package/dist/material-react-table.cjs.development.js.map +1 -1
- package/dist/material-react-table.cjs.production.min.js +1 -1
- package/dist/material-react-table.cjs.production.min.js.map +1 -1
- package/dist/material-react-table.esm.js +553 -578
- package/dist/material-react-table.esm.js.map +1 -1
- package/dist/table/MRT_Table.d.ts +0 -1
- package/dist/toolbar/MRT_ToolbarAlertBanner.d.ts +1 -0
- package/dist/toolbar/MRT_ToolbarTop.d.ts +3 -0
- package/dist/utils.d.ts +1 -1
- package/package.json +24 -27
- package/src/MaterialReactTable.tsx +24 -24
- package/src/body/MRT_TableBody.tsx +3 -11
- package/src/body/MRT_TableBodyCell.tsx +105 -51
- package/src/body/MRT_TableBodyRow.tsx +21 -30
- package/src/buttons/MRT_ColumnPinningButtons.tsx +28 -40
- package/src/buttons/MRT_CopyButton.tsx +5 -3
- package/src/buttons/MRT_EditActionButtons.tsx +1 -2
- package/src/buttons/MRT_ExpandAllButton.tsx +25 -18
- package/src/buttons/MRT_ExpandButton.tsx +27 -21
- package/src/enums.ts +2 -2
- package/src/filtersFNs.ts +71 -81
- package/src/footer/MRT_TableFooter.tsx +6 -16
- package/src/footer/MRT_TableFooterCell.tsx +16 -15
- package/src/footer/MRT_TableFooterRow.tsx +6 -8
- package/src/head/MRT_TableHead.tsx +5 -16
- package/src/head/MRT_TableHeadCell.tsx +120 -50
- package/src/head/MRT_TableHeadRow.tsx +8 -15
- package/src/inputs/MRT_EditCellTextField.tsx +3 -3
- package/src/inputs/MRT_FilterRangeFields.tsx +41 -0
- package/src/inputs/MRT_FilterTextField.tsx +76 -41
- package/src/inputs/MRT_SelectCheckbox.tsx +15 -17
- package/src/localization.ts +13 -5
- package/src/menus/MRT_ColumnActionMenu.tsx +13 -12
- package/src/menus/MRT_FilterOptionMenu.tsx +36 -33
- package/src/menus/MRT_ShowHideColumnsMenu.tsx +1 -1
- package/src/menus/MRT_ShowHideColumnsMenuItems.tsx +4 -6
- package/src/table/MRT_Table.tsx +5 -16
- package/src/table/MRT_TableContainer.tsx +7 -78
- package/src/table/MRT_TableRoot.tsx +43 -51
- package/src/toolbar/MRT_LinearProgressBar.tsx +5 -2
- package/src/toolbar/MRT_ToolbarAlertBanner.tsx +13 -28
- package/src/toolbar/MRT_ToolbarBottom.tsx +23 -5
- package/src/toolbar/MRT_ToolbarInternalButtons.tsx +30 -29
- package/src/toolbar/MRT_ToolbarTop.tsx +24 -25
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> This Project is based on react-table v8, which itself is still in alpha, and therefore this package is also still in alpha
|
|
4
4
|
|
|
5
|
-
- A fully featured Material UI v5 implementation of react-table v8 (alpha)
|
|
5
|
+
- A fully featured Material UI v5 implementation of Tanstack react-table v8 (alpha)
|
|
6
6
|
- Inspired by material-table and the MUI X DataGrid
|
|
7
7
|
- Written from the ground up in TypeScript, Material UI, and React Table
|
|
8
8
|
- All internal Material UI components are easily customizable
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ChangeEvent, Dispatch, FC, FocusEvent, MouseEvent, ReactNode, SetStateAction } from 'react';
|
|
2
2
|
import { AlertProps, ButtonProps, CheckboxProps, IconButtonProps, LinearProgressProps, PaperProps, SkeletonProps, TableBodyProps, TableCellProps, TableContainerProps, TableFooterProps, TableHeadProps, TablePaginationProps, TableProps, TableRowProps, TextFieldProps, ToolbarProps } from '@mui/material';
|
|
3
|
-
import { Cell, Column, ColumnDef,
|
|
3
|
+
import { Cell, Column, ColumnDef, FilterFn, FilterFnOption, Header, HeaderGroup, Overwrite, PaginationState, ReactTableGenerics, Row, TableGenerics, TableInstance, TableState, UseTableInstanceOptions, VisibilityState } from '@tanstack/react-table';
|
|
4
4
|
import { MRT_Localization } from './localization';
|
|
5
5
|
import { MRT_Icons } from './icons';
|
|
6
6
|
import { MRT_FILTER_OPTION } from './enums';
|
|
7
|
-
export declare type MRT_TableOptions<D extends Record<string, any> = {}> = Partial<Omit<
|
|
7
|
+
export declare type MRT_TableOptions<D extends Record<string, any> = {}> = Partial<Omit<UseTableInstanceOptions<ReactTableGenerics>, 'columns' | 'data' | 'initialState' | 'state' | 'expandRowsFn' | 'filterFns'>> & {
|
|
8
8
|
columns: MRT_ColumnDef<D>[];
|
|
9
9
|
data: D[];
|
|
10
10
|
expandRowsFn?: (dataRow: D) => D[];
|
|
@@ -19,11 +19,12 @@ export interface MRT_RowModel<D extends Record<string, any> = {}> {
|
|
|
19
19
|
[key: string]: MRT_Row<D>;
|
|
20
20
|
};
|
|
21
21
|
}
|
|
22
|
-
export declare type MRT_TableInstance<D extends Record<string, any> = {}> = Omit<TableInstance<Overwrite<Partial<
|
|
22
|
+
export declare type MRT_TableInstance<D extends Record<string, any> = {}> = Omit<TableInstance<Overwrite<Partial<TableGenerics>, {
|
|
23
23
|
Row: D;
|
|
24
|
-
}>>, 'getAllColumns' | 'getAllLeafColumns' | 'getExpandedRowModel' | 'getPaginationRowModel' | 'getPrePaginationRowModel' | 'getRowModel' | 'getSelectedRowModel' | 'getState' | 'options'> & {
|
|
24
|
+
}>>, 'getAllColumns' | 'getAllLeafColumns' | 'getColumn' | 'getExpandedRowModel' | 'getPaginationRowModel' | 'getPrePaginationRowModel' | 'getRowModel' | 'getSelectedRowModel' | 'getState' | 'options'> & {
|
|
25
25
|
getAllColumns: () => MRT_Column<D>[];
|
|
26
26
|
getAllLeafColumns: () => MRT_Column<D>[];
|
|
27
|
+
getColumn: (columnId: string) => MRT_Column<D>;
|
|
27
28
|
getExpandedRowModel: () => MRT_RowModel<D>;
|
|
28
29
|
getPaginationRowModel: () => MRT_RowModel<D>;
|
|
29
30
|
getPrePaginationRowModel: () => MRT_RowModel<D>;
|
|
@@ -35,10 +36,10 @@ export declare type MRT_TableInstance<D extends Record<string, any> = {}> = Omit
|
|
|
35
36
|
idPrefix: string;
|
|
36
37
|
localization: MRT_Localization;
|
|
37
38
|
};
|
|
38
|
-
setCurrentEditingCell: Dispatch<SetStateAction<MRT_Cell
|
|
39
|
-
setCurrentEditingRow: Dispatch<SetStateAction<MRT_Row
|
|
39
|
+
setCurrentEditingCell: Dispatch<SetStateAction<MRT_Cell | null>>;
|
|
40
|
+
setCurrentEditingRow: Dispatch<SetStateAction<MRT_Row | null>>;
|
|
40
41
|
setCurrentFilterFns: Dispatch<SetStateAction<{
|
|
41
|
-
[key: string]: MRT_FilterFn
|
|
42
|
+
[key: string]: MRT_FilterFn;
|
|
42
43
|
}>>;
|
|
43
44
|
setCurrentGlobalFilterFn: Dispatch<SetStateAction<MRT_FilterFn<D>>>;
|
|
44
45
|
setIsDensePadding: Dispatch<SetStateAction<boolean>>;
|
|
@@ -52,10 +53,13 @@ export declare type MRT_TableState<D extends Record<string, any> = {}> = Omit<Ta
|
|
|
52
53
|
currentFilterFns: Record<string, string | Function>;
|
|
53
54
|
currentGlobalFilterFn: Record<string, string | Function>;
|
|
54
55
|
isDensePadding: boolean;
|
|
56
|
+
isLoading: boolean;
|
|
55
57
|
isFullScreen: boolean;
|
|
58
|
+
pagination: Partial<PaginationState>;
|
|
56
59
|
showFilters: boolean;
|
|
57
60
|
showGlobalFilter: boolean;
|
|
58
|
-
|
|
61
|
+
showProgressBars: boolean;
|
|
62
|
+
showSkeletons: boolean;
|
|
59
63
|
};
|
|
60
64
|
export declare type MRT_ColumnDef<D extends Record<string, any> = {}> = Omit<ColumnDef<D>, 'header' | 'footer' | 'columns' | 'filterFn'> & {
|
|
61
65
|
Edit?: ({ cell, tableInstance, }: {
|
|
@@ -137,6 +141,9 @@ export declare type MRT_ColumnDef<D extends Record<string, any> = {}> = Omit<Col
|
|
|
137
141
|
};
|
|
138
142
|
export declare type MRT_Column<D extends Record<string, any> = {}> = Omit<Column<D>, 'header' | 'footer' | 'columns'> & MRT_ColumnDef<D> & {
|
|
139
143
|
columns?: MRT_Column<D>[];
|
|
144
|
+
columnDef: MRT_ColumnDef<D>;
|
|
145
|
+
header: string;
|
|
146
|
+
footer: string;
|
|
140
147
|
};
|
|
141
148
|
export declare type MRT_Header<D extends Record<string, any> = {}> = Omit<Header<D>, 'column'> & {
|
|
142
149
|
column: MRT_Column<D>;
|
|
@@ -144,11 +151,8 @@ export declare type MRT_Header<D extends Record<string, any> = {}> = Omit<Header
|
|
|
144
151
|
export declare type MRT_HeaderGroup<D extends Record<string, any> = {}> = Omit<HeaderGroup<D>, 'headers'> & {
|
|
145
152
|
headers: MRT_Header<D>[];
|
|
146
153
|
};
|
|
147
|
-
export declare type MRT_Row<D extends Record<string, any> = {}> = Omit<Row<D>, 'getVisibleCells' | 'getAllCells' | 'subRows' | 'original'
|
|
154
|
+
export declare type MRT_Row<D extends Record<string, any> = {}> = Omit<Row<D>, 'getVisibleCells' | 'getAllCells' | 'subRows' | 'original'> & {
|
|
148
155
|
getAllCells: () => MRT_Cell<D>[];
|
|
149
|
-
getCenterVisibleCells: () => MRT_Cell<D>[];
|
|
150
|
-
getLeftVisibleCells: () => MRT_Cell<D>[];
|
|
151
|
-
getRightVisibleCells: () => MRT_Cell<D>[];
|
|
152
156
|
getVisibleCells: () => MRT_Cell<D>[];
|
|
153
157
|
subRows?: MRT_Row<D>[];
|
|
154
158
|
original: D;
|
|
@@ -157,7 +161,7 @@ export declare type MRT_Cell<D extends Record<string, any> = {}> = Omit<Cell<D>,
|
|
|
157
161
|
column: MRT_Column<D>;
|
|
158
162
|
row: MRT_Row<D>;
|
|
159
163
|
};
|
|
160
|
-
export declare type MRT_FilterFn<D extends Record<string, any> = {}> = FilterFn<
|
|
164
|
+
export declare type MRT_FilterFn<D extends Record<string, any> = {}> = FilterFn<TableGenerics> | FilterFnOption<D> | MRT_FILTER_OPTION | number | string | symbol;
|
|
161
165
|
export declare type MaterialReactTableProps<D extends Record<string, any> = {}> = MRT_TableOptions<D> & {
|
|
162
166
|
editingMode?: 'table' | 'row' | 'cell';
|
|
163
167
|
enableClickToCopy?: boolean;
|
|
@@ -181,8 +185,6 @@ export declare type MaterialReactTableProps<D extends Record<string, any> = {}>
|
|
|
181
185
|
enabledGlobalFilterOptions?: (MRT_FILTER_OPTION | string)[];
|
|
182
186
|
icons?: Partial<MRT_Icons>;
|
|
183
187
|
idPrefix?: string;
|
|
184
|
-
isLoading?: boolean;
|
|
185
|
-
isReloading?: boolean;
|
|
186
188
|
localization?: Partial<MRT_Localization>;
|
|
187
189
|
muiLinearProgressProps?: LinearProgressProps | (({ tableInstance, }: {
|
|
188
190
|
tableInstance: MRT_TableInstance;
|
|
@@ -392,5 +394,5 @@ export declare type MaterialReactTableProps<D extends Record<string, any> = {}>
|
|
|
392
394
|
}>;
|
|
393
395
|
}) => ReactNode;
|
|
394
396
|
};
|
|
395
|
-
declare const _default: <D extends Record<string, any> = {}>({ autoResetExpanded,
|
|
397
|
+
declare const _default: <D extends Record<string, any> = {}>({ autoResetExpanded, columnResizeMode, defaultColumn, editingMode, enableColumnActions, enableColumnFilters, enableColumnResizing, enableDensePaddingToggle, enableExpandAll, enableFilters, enableFullScreenToggle, enableGlobalFilter, enableHiding, enableMultiRowSelection, enablePagination, enablePinning, enableSelectAll, enableSorting, enableStickyHeader, enableTableFooter, enableTableHead, enableToolbarBottom, enableToolbarInternalActions, enableToolbarTop, icons, localization, persistentStateMode, positionActionsColumn, positionPagination, positionToolbarActions, positionToolbarAlertBanner, ...rest }: MaterialReactTableProps<D>) => JSX.Element;
|
|
396
398
|
export default _default;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
1
|
+
import { FC, ReactNode } from 'react';
|
|
2
2
|
import { MRT_Cell, MRT_TableInstance } from '..';
|
|
3
3
|
interface Props {
|
|
4
4
|
cell: MRT_Cell;
|
|
5
|
+
children: ReactNode;
|
|
5
6
|
tableInstance: MRT_TableInstance;
|
|
6
7
|
}
|
|
7
8
|
export declare const MRT_CopyButton: FC<Props>;
|
package/dist/enums.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export declare enum MRT_FILTER_OPTION {
|
|
2
|
-
|
|
3
|
-
BEST_MATCH_FIRST = "bestMatchFirst",
|
|
2
|
+
BETWEEN = "between",
|
|
4
3
|
CONTAINS = "contains",
|
|
5
4
|
EMPTY = "empty",
|
|
6
5
|
ENDS_WITH = "endsWith",
|
|
7
6
|
EQUALS = "equals",
|
|
7
|
+
FUZZY = "fuzzy",
|
|
8
8
|
GREATER_THAN = "greaterThan",
|
|
9
9
|
LESS_THAN = "lessThan",
|
|
10
10
|
NOT_EMPTY = "notEmpty",
|
package/dist/filtersFNs.d.ts
CHANGED
|
@@ -1,91 +1,92 @@
|
|
|
1
|
+
import { RankingInfo } from '@tanstack/match-sorter-utils';
|
|
1
2
|
import { MRT_Row } from '.';
|
|
2
|
-
export declare const
|
|
3
|
-
(
|
|
4
|
-
autoRemove(val: any): boolean;
|
|
5
|
-
};
|
|
6
|
-
export declare const bestMatch: {
|
|
7
|
-
(rows: MRT_Row[], columnIds: string[] | string, filterValue: string | number): MRT_Row<{}>[];
|
|
3
|
+
export declare const fuzzy: {
|
|
4
|
+
(row: MRT_Row, columnId: string, value: string, addMeta: (item: RankingInfo) => void): boolean;
|
|
8
5
|
autoRemove(val: any): boolean;
|
|
9
6
|
};
|
|
10
7
|
export declare const contains: {
|
|
11
|
-
(
|
|
8
|
+
(row: MRT_Row, id: string, filterValue: string | number): any;
|
|
12
9
|
autoRemove(val: any): boolean;
|
|
13
10
|
};
|
|
14
11
|
export declare const startsWith: {
|
|
15
|
-
(
|
|
12
|
+
(row: MRT_Row, id: string, filterValue: string | number): any;
|
|
16
13
|
autoRemove(val: any): boolean;
|
|
17
14
|
};
|
|
18
15
|
export declare const endsWith: {
|
|
19
|
-
(
|
|
16
|
+
(row: MRT_Row, id: string, filterValue: string | number): any;
|
|
20
17
|
autoRemove(val: any): boolean;
|
|
21
18
|
};
|
|
22
19
|
export declare const equals: {
|
|
23
|
-
(
|
|
20
|
+
(row: MRT_Row, id: string, filterValue: string | number): boolean;
|
|
24
21
|
autoRemove(val: any): boolean;
|
|
25
22
|
};
|
|
26
23
|
export declare const notEquals: {
|
|
27
|
-
(
|
|
24
|
+
(row: MRT_Row, id: string, filterValue: string | number): boolean;
|
|
28
25
|
autoRemove(val: any): boolean;
|
|
29
26
|
};
|
|
30
27
|
export declare const greaterThan: {
|
|
31
|
-
(
|
|
28
|
+
(row: MRT_Row, id: string, filterValue: string | number): boolean;
|
|
32
29
|
autoRemove(val: any): boolean;
|
|
33
30
|
};
|
|
34
31
|
export declare const lessThan: {
|
|
35
|
-
(
|
|
32
|
+
(row: MRT_Row, id: string, filterValue: string | number): boolean;
|
|
33
|
+
autoRemove(val: any): boolean;
|
|
34
|
+
};
|
|
35
|
+
export declare const between: {
|
|
36
|
+
(row: MRT_Row, id: string, filterValues: [string | number, string | number]): boolean;
|
|
36
37
|
autoRemove(val: any): boolean;
|
|
37
38
|
};
|
|
38
39
|
export declare const empty: {
|
|
39
|
-
(
|
|
40
|
+
(row: MRT_Row, id: string, _filterValue: string | number): boolean;
|
|
40
41
|
autoRemove(val: any): boolean;
|
|
41
42
|
};
|
|
42
43
|
export declare const notEmpty: {
|
|
43
|
-
(
|
|
44
|
+
(row: MRT_Row, id: string, _filterValue: string | number): boolean;
|
|
44
45
|
autoRemove(val: any): boolean;
|
|
45
46
|
};
|
|
46
47
|
export declare const defaultFilterFNs: {
|
|
47
|
-
|
|
48
|
-
(
|
|
49
|
-
autoRemove(val: any): boolean;
|
|
50
|
-
};
|
|
51
|
-
bestMatchFirst: {
|
|
52
|
-
(rows: MRT_Row[], columnIds: string[] | string, filterValue: string | number): MRT_Row<{}>[];
|
|
48
|
+
between: {
|
|
49
|
+
(row: MRT_Row, id: string, filterValues: [string | number, string | number]): boolean;
|
|
53
50
|
autoRemove(val: any): boolean;
|
|
54
51
|
};
|
|
55
52
|
contains: {
|
|
56
|
-
(
|
|
53
|
+
(row: MRT_Row, id: string, filterValue: string | number): any;
|
|
57
54
|
autoRemove(val: any): boolean;
|
|
58
55
|
};
|
|
59
56
|
empty: {
|
|
60
|
-
(
|
|
57
|
+
(row: MRT_Row, id: string, _filterValue: string | number): boolean;
|
|
61
58
|
autoRemove(val: any): boolean;
|
|
62
59
|
};
|
|
63
60
|
endsWith: {
|
|
64
|
-
(
|
|
61
|
+
(row: MRT_Row, id: string, filterValue: string | number): any;
|
|
65
62
|
autoRemove(val: any): boolean;
|
|
66
63
|
};
|
|
67
64
|
equals: {
|
|
68
|
-
(
|
|
65
|
+
(row: MRT_Row, id: string, filterValue: string | number): boolean;
|
|
66
|
+
autoRemove(val: any): boolean;
|
|
67
|
+
};
|
|
68
|
+
fuzzy: {
|
|
69
|
+
(row: MRT_Row, columnId: string, value: string, addMeta: (item: RankingInfo) => void): boolean;
|
|
69
70
|
autoRemove(val: any): boolean;
|
|
70
71
|
};
|
|
71
72
|
greaterThan: {
|
|
72
|
-
(
|
|
73
|
+
(row: MRT_Row, id: string, filterValue: string | number): boolean;
|
|
73
74
|
autoRemove(val: any): boolean;
|
|
74
75
|
};
|
|
75
76
|
lessThan: {
|
|
76
|
-
(
|
|
77
|
+
(row: MRT_Row, id: string, filterValue: string | number): boolean;
|
|
77
78
|
autoRemove(val: any): boolean;
|
|
78
79
|
};
|
|
79
80
|
notEmpty: {
|
|
80
|
-
(
|
|
81
|
+
(row: MRT_Row, id: string, _filterValue: string | number): boolean;
|
|
81
82
|
autoRemove(val: any): boolean;
|
|
82
83
|
};
|
|
83
84
|
notEquals: {
|
|
84
|
-
(
|
|
85
|
+
(row: MRT_Row, id: string, filterValue: string | number): boolean;
|
|
85
86
|
autoRemove(val: any): boolean;
|
|
86
87
|
};
|
|
87
88
|
startsWith: {
|
|
88
|
-
(
|
|
89
|
+
(row: MRT_Row, id: string, filterValue: string | number): any;
|
|
89
90
|
autoRemove(val: any): boolean;
|
|
90
91
|
};
|
|
91
92
|
};
|
package/dist/localization.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export interface MRT_Localization {
|
|
2
2
|
actions: string;
|
|
3
|
+
and: string;
|
|
3
4
|
cancel: string;
|
|
4
5
|
changeFilterMode: string;
|
|
5
6
|
changeSearchMode: string;
|
|
@@ -12,13 +13,13 @@ export interface MRT_Localization {
|
|
|
12
13
|
edit: string;
|
|
13
14
|
expand: string;
|
|
14
15
|
expandAll: string;
|
|
15
|
-
|
|
16
|
-
filterBestMatchFirst: string;
|
|
16
|
+
filterBetween: string;
|
|
17
17
|
filterByColumn: string;
|
|
18
18
|
filterContains: string;
|
|
19
19
|
filterEmpty: string;
|
|
20
20
|
filterEndsWith: string;
|
|
21
21
|
filterEquals: string;
|
|
22
|
+
filterFuzzy: string;
|
|
22
23
|
filterGreaterThan: string;
|
|
23
24
|
filterLessThan: string;
|
|
24
25
|
filterMode: string;
|
|
@@ -30,6 +31,8 @@ export interface MRT_Localization {
|
|
|
30
31
|
groupedBy: string;
|
|
31
32
|
hideAll: string;
|
|
32
33
|
hideColumn: string;
|
|
34
|
+
max: string;
|
|
35
|
+
min: string;
|
|
33
36
|
pinToLeft: string;
|
|
34
37
|
pinToRight: string;
|
|
35
38
|
resetColumnSize: string;
|
|
@@ -50,6 +53,7 @@ export interface MRT_Localization {
|
|
|
50
53
|
sortedByColumnAsc: string;
|
|
51
54
|
sortedByColumnDesc: string;
|
|
52
55
|
thenBy: string;
|
|
56
|
+
to: string;
|
|
53
57
|
toggleDensePadding: string;
|
|
54
58
|
toggleFullScreen: string;
|
|
55
59
|
toggleSelectAll: string;
|