material-react-table 0.5.9 → 0.6.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/dist/localization.d.ts +43 -46
- package/dist/material-react-table.cjs.development.js +254 -194
- 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 +255 -195
- package/dist/material-react-table.esm.js.map +1 -1
- package/dist/menus/MRT_ShowHideColumnsMenu.d.ts +3 -2
- package/dist/menus/MRT_ShowHideColumnsMenuItems.d.ts +8 -0
- package/package.json +1 -1
- package/src/buttons/MRT_EditActionButtons.tsx +4 -7
- package/src/buttons/MRT_ExpandAllButton.tsx +2 -2
- package/src/buttons/MRT_ExpandButton.tsx +2 -2
- package/src/buttons/MRT_FullScreenToggleButton.tsx +2 -2
- package/src/buttons/MRT_ShowHideColumnsButton.tsx +4 -52
- package/src/buttons/MRT_ToggleColumnActionMenuButton.tsx +2 -2
- package/src/buttons/MRT_ToggleDensePaddingButton.tsx +2 -2
- package/src/buttons/MRT_ToggleFiltersButton.tsx +2 -2
- package/src/buttons/MRT_ToggleRowActionMenuButton.tsx +3 -7
- package/src/buttons/MRT_ToggleSearchButton.tsx +1 -1
- package/src/head/MRT_TableHeadCell.tsx +19 -6
- package/src/head/MRT_TableHeadCellActions.tsx +1 -1
- package/src/inputs/MRT_FilterTextField.tsx +33 -9
- package/src/inputs/MRT_SearchTextField.tsx +3 -3
- package/src/inputs/MRT_SelectCheckbox.tsx +4 -4
- package/src/localization.ts +87 -92
- package/src/menus/MRT_ColumnActionMenu.tsx +59 -14
- package/src/menus/MRT_FilterTypeMenu.tsx +10 -10
- package/src/menus/MRT_RowActionMenu.tsx +1 -1
- package/src/menus/MRT_ShowHideColumnsMenu.tsx +52 -35
- package/src/menus/MRT_ShowHideColumnsMenuItems.tsx +57 -0
- package/src/toolbar/MRT_ToolbarAlertBanner.tsx +3 -3
package/dist/localization.d.ts
CHANGED
|
@@ -1,50 +1,47 @@
|
|
|
1
1
|
export interface MRT_Localization {
|
|
2
|
-
|
|
2
|
+
actions: string;
|
|
3
|
+
cancel: string;
|
|
3
4
|
changeFilterMode: string;
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
toggleSearchButtonTitle: string;
|
|
46
|
-
toolbarAlertGroupedByMessage: string;
|
|
47
|
-
toolbarAlertGroupedThenByMessage: string;
|
|
48
|
-
toolbarAlertSelectionMessage: string;
|
|
5
|
+
clearFilter: string;
|
|
6
|
+
clearSearch: string;
|
|
7
|
+
clearSort: string;
|
|
8
|
+
columnActions: string;
|
|
9
|
+
edit: string;
|
|
10
|
+
expand: string;
|
|
11
|
+
expandAll: string;
|
|
12
|
+
filterByColumn: string;
|
|
13
|
+
filterContains: string;
|
|
14
|
+
filterEmpty: string;
|
|
15
|
+
filterEndsWith: string;
|
|
16
|
+
filterEquals: string;
|
|
17
|
+
filterFuzzy: string;
|
|
18
|
+
filterGreaterThan: string;
|
|
19
|
+
filterLessThan: string;
|
|
20
|
+
filterMode: string;
|
|
21
|
+
filterNotEmpty: string;
|
|
22
|
+
filterNotEquals: string;
|
|
23
|
+
filterStartsWith: string;
|
|
24
|
+
filteringByColumn: string;
|
|
25
|
+
groupByColumn: string;
|
|
26
|
+
groupedBy: string;
|
|
27
|
+
hideAll: string;
|
|
28
|
+
hideColumn: string;
|
|
29
|
+
rowActions: string;
|
|
30
|
+
save: string;
|
|
31
|
+
search: string;
|
|
32
|
+
selectedCountOfRowCountRowsSelected: string;
|
|
33
|
+
showAll: string;
|
|
34
|
+
showHideColumns: string;
|
|
35
|
+
showAllColumns: string;
|
|
36
|
+
showHideFilters: string;
|
|
37
|
+
showHideSearch: string;
|
|
38
|
+
sortByColumnAsc: string;
|
|
39
|
+
sortByColumnDesc: string;
|
|
40
|
+
thenBy: string;
|
|
41
|
+
toggleDensePadding: string;
|
|
42
|
+
toggleFullScreen: string;
|
|
43
|
+
toggleSelectAll: string;
|
|
44
|
+
toggleSelectRow: string;
|
|
45
|
+
ungroupByColumn: string;
|
|
49
46
|
}
|
|
50
47
|
export declare const MRT_DefaultLocalization_EN: MRT_Localization;
|