material-react-table-narender 2.13.21 → 2.13.22
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +0 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/buttons/MRT_ToggleNavigationButton.tsx +2 -2
- package/src/components/toolbar/MRT_ToolbarInternalButtons.tsx +3 -2
- package/src/types.ts +1 -1
package/package.json
CHANGED
@@ -32,10 +32,10 @@ export const MRT_ToggleNavigationButton = <TData extends MRT_RowData>({
|
|
32
32
|
return (
|
33
33
|
<Tooltip
|
34
34
|
open={tooltipOpened}
|
35
|
-
title={rest?.title ?? localization.
|
35
|
+
title={rest?.title ?? localization.toggleFullScreen}
|
36
36
|
>
|
37
37
|
<IconButton
|
38
|
-
aria-label={localization.
|
38
|
+
aria-label={localization.toggleFullScreen}
|
39
39
|
onClick={handleToggleFullScreen}
|
40
40
|
onMouseEnter={() => setTooltipOpened(true)}
|
41
41
|
onMouseLeave={() => setTooltipOpened(false)}
|
@@ -67,9 +67,10 @@ export const MRT_ToolbarInternalButtons = <TData extends MRT_RowData>({
|
|
67
67
|
{enableFullScreenToggle && (
|
68
68
|
<MRT_ToggleFullScreenButton table={table} />
|
69
69
|
)}
|
70
|
-
{enableKeyboardShortcuts && (
|
70
|
+
{/* {enableKeyboardShortcuts && (
|
71
71
|
<MRT_ToggleNavigationButton table={table} />
|
72
|
-
|
72
|
+
)} */}
|
73
|
+
<MRT_ToggleNavigationButton table={table} />
|
73
74
|
</>
|
74
75
|
)}
|
75
76
|
</Box>
|
package/src/types.ts
CHANGED
@@ -247,7 +247,7 @@ export interface MRT_Localization {
|
|
247
247
|
thenBy: string;
|
248
248
|
toggleDensity: string;
|
249
249
|
toggleFullScreen: string;
|
250
|
-
keyboardNavigation: string;
|
250
|
+
// keyboardNavigation: string;
|
251
251
|
toggleSelectAll: string;
|
252
252
|
toggleSelectRow: string;
|
253
253
|
toggleVisibility: string;
|