material-react-table 0.41.0 → 1.0.0-beta.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/README.md +22 -20
- package/dist/cjs/MaterialReactTable.d.ts +96 -19
- package/dist/cjs/_locales/en.d.ts +2 -0
- package/dist/cjs/_locales/es.d.ts +2 -0
- package/dist/cjs/body/MRT_EditRowModal.d.ts +0 -1
- package/dist/cjs/body/MRT_TableBody.d.ts +1 -2
- package/dist/cjs/body/MRT_TableBodyCellValue.d.ts +2 -2
- package/dist/cjs/buttons/MRT_ColumnPinningButtons.d.ts +0 -1
- package/dist/cjs/buttons/MRT_EditActionButtons.d.ts +0 -1
- package/dist/cjs/buttons/MRT_FullScreenToggleButton.d.ts +0 -1
- package/dist/cjs/buttons/MRT_ShowHideColumnsButton.d.ts +0 -1
- package/dist/cjs/buttons/MRT_ToggleDensePaddingButton.d.ts +0 -1
- package/dist/cjs/buttons/MRT_ToggleFiltersButton.d.ts +0 -1
- package/dist/cjs/buttons/MRT_ToggleGlobalFilterButton.d.ts +0 -1
- package/dist/cjs/column.utils.d.ts +12 -1
- package/dist/cjs/index.d.ts +4 -3
- package/dist/cjs/index.js +244 -195
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/inputs/MRT_EditCellTextField.d.ts +0 -1
- package/dist/cjs/inputs/MRT_GlobalFilterTextField.d.ts +0 -1
- package/dist/cjs/menus/MRT_FilterOptionMenu.d.ts +3 -4
- package/dist/cjs/menus/MRT_ShowHideColumnsMenu.d.ts +0 -1
- package/dist/cjs/table/MRT_Table.d.ts +1 -2
- package/dist/cjs/table/MRT_TableRoot.d.ts +250 -3
- package/dist/cjs/toolbar/MRT_TablePagination.d.ts +3 -4
- package/dist/cjs/toolbar/MRT_ToolbarAlertBanner.d.ts +1 -1
- package/dist/cjs/toolbar/MRT_ToolbarInternalButtons.d.ts +3 -4
- package/dist/cjs/toolbar/MRT_TopToolbar.d.ts +1 -0
- package/dist/en.cjs +90 -0
- package/dist/en.cjs.d.ts +2 -0
- package/dist/en.cjs.map +1 -0
- package/dist/en.esm.d.ts +2 -0
- package/dist/en.esm.js +86 -0
- package/dist/en.esm.js.map +1 -0
- package/dist/esm/MaterialReactTable.d.ts +96 -19
- package/dist/esm/_locales/en.d.ts +2 -0
- package/dist/esm/_locales/es.d.ts +2 -0
- package/dist/esm/body/MRT_EditRowModal.d.ts +0 -1
- package/dist/esm/body/MRT_TableBody.d.ts +1 -2
- package/dist/esm/body/MRT_TableBodyCellValue.d.ts +2 -2
- package/dist/esm/buttons/MRT_ColumnPinningButtons.d.ts +0 -1
- package/dist/esm/buttons/MRT_EditActionButtons.d.ts +0 -1
- package/dist/esm/buttons/MRT_FullScreenToggleButton.d.ts +0 -1
- package/dist/esm/buttons/MRT_ShowHideColumnsButton.d.ts +0 -1
- package/dist/esm/buttons/MRT_ToggleDensePaddingButton.d.ts +0 -1
- package/dist/esm/buttons/MRT_ToggleFiltersButton.d.ts +0 -1
- package/dist/esm/buttons/MRT_ToggleGlobalFilterButton.d.ts +0 -1
- package/dist/esm/column.utils.d.ts +12 -1
- package/dist/esm/index.d.ts +4 -3
- package/dist/esm/inputs/MRT_EditCellTextField.d.ts +0 -1
- package/dist/esm/inputs/MRT_GlobalFilterTextField.d.ts +0 -1
- package/dist/esm/material-react-table.esm.js +245 -198
- package/dist/esm/material-react-table.esm.js.map +1 -1
- package/dist/esm/menus/MRT_FilterOptionMenu.d.ts +3 -4
- package/dist/esm/menus/MRT_ShowHideColumnsMenu.d.ts +0 -1
- package/dist/esm/table/MRT_Table.d.ts +1 -2
- package/dist/esm/table/MRT_TableRoot.d.ts +250 -3
- package/dist/esm/toolbar/MRT_TablePagination.d.ts +3 -4
- package/dist/esm/toolbar/MRT_ToolbarAlertBanner.d.ts +1 -1
- package/dist/esm/toolbar/MRT_ToolbarInternalButtons.d.ts +3 -4
- package/dist/esm/toolbar/MRT_TopToolbar.d.ts +1 -0
- package/dist/index.d.ts +47 -41
- package/package.json +7 -6
- package/src/MaterialReactTable.tsx +100 -23
- package/src/_locales/de.ts +0 -0
- package/src/{localization.ts → _locales/en.ts} +4 -82
- package/src/_locales/es.ts +86 -0
- package/src/_locales/fr.ts +0 -0
- package/src/_locales/hi.ts +0 -0
- package/src/_locales/id.ts +0 -0
- package/src/_locales/ja.ts +0 -0
- package/src/_locales/nl.ts +0 -0
- package/src/_locales/pt.ts +0 -0
- package/src/_locales/ru.ts +0 -0
- package/src/_locales/uk.ts +0 -0
- package/src/_locales/vi.ts +0 -0
- package/src/_locales/zh.ts +0 -0
- package/src/body/MRT_TableBody.tsx +54 -30
- package/src/body/MRT_TableBodyCell.tsx +11 -58
- package/src/body/MRT_TableBodyCellValue.tsx +7 -2
- package/src/body/MRT_TableBodyRowGrabHandle.tsx +5 -8
- package/src/buttons/MRT_GrabHandleButton.tsx +2 -2
- package/src/buttons/MRT_ToggleGlobalFilterButton.tsx +7 -2
- package/src/column.utils.ts +72 -0
- package/src/footer/MRT_TableFooter.tsx +3 -2
- package/src/footer/MRT_TableFooterCell.tsx +5 -15
- package/src/head/MRT_TableHead.tsx +10 -2
- package/src/head/MRT_TableHeadCell.tsx +9 -50
- package/src/head/MRT_TableHeadCellFilterLabel.tsx +7 -7
- package/src/head/MRT_TableHeadCellGrabHandle.tsx +5 -12
- package/src/index.tsx +6 -3
- package/src/inputs/MRT_FilterTextField.tsx +8 -7
- package/src/inputs/MRT_GlobalFilterTextField.tsx +7 -1
- package/src/menus/MRT_FilterOptionMenu.tsx +19 -2
- package/src/table/MRT_Table.tsx +3 -4
- package/src/table/MRT_TableContainer.tsx +2 -11
- package/src/table/MRT_TablePaper.tsx +34 -20
- package/src/table/MRT_TableRoot.tsx +34 -11
- package/src/toolbar/MRT_BottomToolbar.tsx +11 -2
- package/src/toolbar/MRT_TablePagination.tsx +7 -5
- package/src/toolbar/MRT_ToolbarAlertBanner.tsx +7 -1
- package/src/toolbar/MRT_ToolbarInternalButtons.tsx +14 -12
- package/src/toolbar/MRT_TopToolbar.tsx +13 -2
- package/dist/cjs/localization.d.ts +0 -82
- package/dist/esm/localization.d.ts +0 -82
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
import type { MRT_Header, MRT_InternalFilterOption, MRT_TableInstance } from '..';
|
|
3
|
-
import { MRT_Localization } from '../localization';
|
|
1
|
+
import type { MRT_Header, MRT_InternalFilterOption, MRT_Localization, MRT_TableInstance } from '..';
|
|
4
2
|
export declare const mrtFilterOptions: (localization: MRT_Localization) => MRT_InternalFilterOption[];
|
|
5
3
|
interface Props<TData extends Record<string, any> = {}> {
|
|
6
4
|
anchorEl: HTMLElement | null;
|
|
7
5
|
header?: MRT_Header<TData>;
|
|
8
6
|
onSelect?: () => void;
|
|
9
7
|
setAnchorEl: (anchorEl: HTMLElement | null) => void;
|
|
8
|
+
setFilterValue?: (filterValue: any) => void;
|
|
10
9
|
table: MRT_TableInstance<TData>;
|
|
11
10
|
}
|
|
12
|
-
export declare const MRT_FilterOptionMenu: <TData extends Record<string, any> = {}>({ anchorEl, header, onSelect, setAnchorEl, table, }: Props<TData>) => JSX.Element;
|
|
11
|
+
export declare const MRT_FilterOptionMenu: <TData extends Record<string, any> = {}>({ anchorEl, header, onSelect, setAnchorEl, setFilterValue, table, }: Props<TData>) => JSX.Element;
|
|
13
12
|
export {};
|
|
@@ -1,3 +1,250 @@
|
|
|
1
|
-
|
|
2
|
-
import type { MaterialReactTableProps } from '..';
|
|
3
|
-
export declare const MRT_TableRoot: <TData extends Record<string, any> = {}>(props:
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import type { MRT_Cell, MRT_Column, MRT_ColumnDef, MRT_FilterOption, MRT_Row, MRT_TableInstance, MRT_TableState, MaterialReactTableProps, MRT_Localization } from '..';
|
|
3
|
+
export declare const MRT_TableRoot: <TData extends Record<string, any> = {}>(props: Omit<Partial<import("@tanstack/table-core").TableOptions<TData>>, "state" | "data" | "onStateChange" | "initialState" | "columns" | "defaultColumn" | "enableRowSelection" | "expandRowsFn"> & {
|
|
4
|
+
columnFilterModeOptions?: (string | (string & Record<never, never>))[] | null | undefined;
|
|
5
|
+
columns: MRT_ColumnDef<TData>[];
|
|
6
|
+
data: TData[];
|
|
7
|
+
defaultColumn?: Partial<MRT_ColumnDef<TData>> | undefined;
|
|
8
|
+
defaultDisplayColumn?: Partial<MRT_ColumnDef<TData>> | undefined;
|
|
9
|
+
displayColumnDefOptions?: Partial<{
|
|
10
|
+
"mrt-row-drag": Partial<MRT_ColumnDef<{}>>;
|
|
11
|
+
"mrt-row-actions": Partial<MRT_ColumnDef<{}>>;
|
|
12
|
+
"mrt-row-expand": Partial<MRT_ColumnDef<{}>>;
|
|
13
|
+
"mrt-row-select": Partial<MRT_ColumnDef<{}>>;
|
|
14
|
+
"mrt-row-numbers": Partial<MRT_ColumnDef<{}>>;
|
|
15
|
+
}> | undefined;
|
|
16
|
+
editingMode?: "cell" | "row" | "table" | "modal" | undefined;
|
|
17
|
+
enableBottomToolbar?: boolean | undefined;
|
|
18
|
+
enableClickToCopy?: boolean | undefined;
|
|
19
|
+
enableColumnActions?: boolean | undefined;
|
|
20
|
+
enableColumnDragging?: boolean | undefined;
|
|
21
|
+
enableColumnFilterModes?: boolean | undefined;
|
|
22
|
+
enableColumnOrdering?: boolean | undefined;
|
|
23
|
+
enableDensityToggle?: boolean | undefined;
|
|
24
|
+
enableEditing?: boolean | undefined;
|
|
25
|
+
enableExpandAll?: boolean | undefined;
|
|
26
|
+
enableFullScreenToggle?: boolean | undefined;
|
|
27
|
+
enableGlobalFilterModes?: boolean | undefined;
|
|
28
|
+
enableGlobalFilterRankedResults?: boolean | undefined;
|
|
29
|
+
enablePagination?: boolean | undefined;
|
|
30
|
+
enableRowActions?: boolean | undefined;
|
|
31
|
+
enableRowDragging?: boolean | undefined;
|
|
32
|
+
enableRowNumbers?: boolean | undefined;
|
|
33
|
+
enableRowOrdering?: boolean | undefined;
|
|
34
|
+
enableRowSelection?: boolean | ((row: MRT_Row<TData>) => boolean) | undefined;
|
|
35
|
+
enableRowVirtualization?: boolean | undefined;
|
|
36
|
+
enableSelectAll?: boolean | undefined;
|
|
37
|
+
enableStickyFooter?: boolean | undefined;
|
|
38
|
+
enableStickyHeader?: boolean | undefined;
|
|
39
|
+
enableTableFooter?: boolean | undefined;
|
|
40
|
+
enableTableHead?: boolean | undefined;
|
|
41
|
+
enableToolbarInternalActions?: boolean | undefined;
|
|
42
|
+
enableTopToolbar?: boolean | undefined;
|
|
43
|
+
globalFilterModeOptions?: (string | (string & Record<never, never>))[] | null | undefined;
|
|
44
|
+
expandRowsFn?: ((dataRow: TData) => TData[]) | undefined;
|
|
45
|
+
icons?: Partial<import("..").MRT_Icons> | undefined;
|
|
46
|
+
initialState?: Partial<MRT_TableState<TData>> | undefined;
|
|
47
|
+
localization?: Partial<MRT_Localization> | undefined;
|
|
48
|
+
muiBottomToolbarProps?: import("@mui/material").ToolbarProps<"div", {}> | (({ table }: {
|
|
49
|
+
table: MRT_TableInstance<TData>;
|
|
50
|
+
}) => import("@mui/material").ToolbarProps<"div", {}>) | undefined;
|
|
51
|
+
muiExpandAllButtonProps?: import("@mui/material").IconButtonProps<"button", {}> | (({ table }: {
|
|
52
|
+
table: MRT_TableInstance<TData>;
|
|
53
|
+
}) => import("@mui/material").IconButtonProps<"button", {}>) | undefined;
|
|
54
|
+
muiExpandButtonProps?: import("@mui/material").IconButtonProps<"button", {}> | (({ row, table, }: {
|
|
55
|
+
table: MRT_TableInstance<TData>;
|
|
56
|
+
row: MRT_Row<TData>;
|
|
57
|
+
}) => import("@mui/material").IconButtonProps<"button", {}>) | undefined;
|
|
58
|
+
muiLinearProgressProps?: import("@mui/material").LinearProgressProps | (({ isTopToolbar, table, }: {
|
|
59
|
+
isTopToolbar: boolean;
|
|
60
|
+
table: MRT_TableInstance<TData>;
|
|
61
|
+
}) => import("@mui/material").LinearProgressProps) | undefined;
|
|
62
|
+
muiSearchTextFieldProps?: import("@mui/material").TextFieldProps | (({ table }: {
|
|
63
|
+
table: MRT_TableInstance<TData>;
|
|
64
|
+
}) => import("@mui/material").TextFieldProps) | undefined;
|
|
65
|
+
muiSelectAllCheckboxProps?: import("@mui/material").CheckboxProps | (({ table }: {
|
|
66
|
+
table: MRT_TableInstance<TData>;
|
|
67
|
+
}) => import("@mui/material").CheckboxProps) | undefined;
|
|
68
|
+
muiSelectCheckboxProps?: import("@mui/material").CheckboxProps | (({ table, row, }: {
|
|
69
|
+
table: MRT_TableInstance<TData>;
|
|
70
|
+
row: MRT_Row<TData>;
|
|
71
|
+
}) => import("@mui/material").CheckboxProps) | undefined;
|
|
72
|
+
muiTableBodyCellCopyButtonProps?: import("@mui/material").ButtonProps<"button", {}> | (({ cell, column, row, table, }: {
|
|
73
|
+
cell: MRT_Cell<TData>;
|
|
74
|
+
column: MRT_Column<TData>;
|
|
75
|
+
row: MRT_Row<TData>;
|
|
76
|
+
table: MRT_TableInstance<TData>;
|
|
77
|
+
}) => import("@mui/material").ButtonProps<"button", {}>) | undefined;
|
|
78
|
+
muiTableBodyCellEditTextFieldProps?: import("@mui/material").TextFieldProps | (({ cell, column, row, table, }: {
|
|
79
|
+
cell: MRT_Cell<TData>;
|
|
80
|
+
column: MRT_Column<TData>;
|
|
81
|
+
row: MRT_Row<TData>;
|
|
82
|
+
table: MRT_TableInstance<TData>;
|
|
83
|
+
}) => import("@mui/material").TextFieldProps) | undefined;
|
|
84
|
+
muiTableBodyCellProps?: import("@mui/material").TableCellProps | (({ cell, column, row, table, }: {
|
|
85
|
+
cell: MRT_Cell<TData>;
|
|
86
|
+
column: MRT_Column<TData>;
|
|
87
|
+
row: MRT_Row<TData>;
|
|
88
|
+
table: MRT_TableInstance<TData>;
|
|
89
|
+
}) => import("@mui/material").TableCellProps) | undefined;
|
|
90
|
+
muiTableBodyCellSkeletonProps?: import("@mui/material").SkeletonProps<"span", {}> | (({ cell, column, row, table, }: {
|
|
91
|
+
cell: MRT_Cell<TData>;
|
|
92
|
+
column: MRT_Column<TData>;
|
|
93
|
+
row: MRT_Row<TData>;
|
|
94
|
+
table: MRT_TableInstance<TData>;
|
|
95
|
+
}) => import("@mui/material").SkeletonProps<"span", {}>) | undefined;
|
|
96
|
+
muiTableBodyProps?: import("@mui/material").TableBodyProps<"tbody", {}> | (({ table }: {
|
|
97
|
+
table: MRT_TableInstance<TData>;
|
|
98
|
+
}) => import("@mui/material").TableBodyProps<"tbody", {}>) | undefined;
|
|
99
|
+
muiTableBodyRowDragHandleProps?: import("@mui/material").IconButtonProps<"button", {}> | (({ table, row, }: {
|
|
100
|
+
table: MRT_TableInstance<TData>;
|
|
101
|
+
row: MRT_Row<TData>;
|
|
102
|
+
}) => import("@mui/material").IconButtonProps<"button", {}>) | undefined;
|
|
103
|
+
muiTableBodyRowProps?: import("@mui/material").TableRowProps<"tr", {}> | (({ table, row, }: {
|
|
104
|
+
table: MRT_TableInstance<TData>;
|
|
105
|
+
row: MRT_Row<TData>;
|
|
106
|
+
}) => import("@mui/material").TableRowProps<"tr", {}>) | undefined;
|
|
107
|
+
muiTableContainerProps?: import("@mui/material").TableContainerProps<"div", {}> | (({ table, }: {
|
|
108
|
+
table: MRT_TableInstance<TData>;
|
|
109
|
+
}) => import("@mui/material").TableContainerProps<"div", {}>) | undefined;
|
|
110
|
+
muiTableDetailPanelProps?: import("@mui/material").TableCellProps | (({ table, row, }: {
|
|
111
|
+
table: MRT_TableInstance<TData>;
|
|
112
|
+
row: MRT_Row<TData>;
|
|
113
|
+
}) => import("@mui/material").TableCellProps) | undefined;
|
|
114
|
+
muiTableFooterCellProps?: import("@mui/material").TableCellProps | (({ table, column, }: {
|
|
115
|
+
table: MRT_TableInstance<TData>;
|
|
116
|
+
column: MRT_Column<TData>;
|
|
117
|
+
}) => import("@mui/material").TableCellProps) | undefined;
|
|
118
|
+
muiTableFooterProps?: import("@mui/material").TableFooterProps<"tfoot", {}> | (({ table }: {
|
|
119
|
+
table: MRT_TableInstance<TData>;
|
|
120
|
+
}) => import("@mui/material").TableFooterProps<"tfoot", {}>) | undefined;
|
|
121
|
+
muiTableFooterRowProps?: import("@mui/material").TableRowProps<"tr", {}> | (({ table, footerGroup, }: {
|
|
122
|
+
table: MRT_TableInstance<TData>;
|
|
123
|
+
footerGroup: import("..").MRT_HeaderGroup<TData>;
|
|
124
|
+
}) => import("@mui/material").TableRowProps<"tr", {}>) | undefined;
|
|
125
|
+
muiTableHeadCellColumnActionsButtonProps?: import("@mui/material").IconButtonProps<"button", {}> | (({ table, column, }: {
|
|
126
|
+
table: MRT_TableInstance<TData>;
|
|
127
|
+
column: MRT_Column<TData>;
|
|
128
|
+
}) => import("@mui/material").IconButtonProps<"button", {}>) | undefined;
|
|
129
|
+
muiTableHeadCellDragHandleProps?: import("@mui/material").IconButtonProps<"button", {}> | (({ table, column, }: {
|
|
130
|
+
table: MRT_TableInstance<TData>;
|
|
131
|
+
column: MRT_Column<TData>;
|
|
132
|
+
}) => import("@mui/material").IconButtonProps<"button", {}>) | undefined;
|
|
133
|
+
muiTableHeadCellFilterTextFieldProps?: import("@mui/material").TextFieldProps | (({ table, column, rangeFilterIndex, }: {
|
|
134
|
+
table: MRT_TableInstance<TData>;
|
|
135
|
+
column: MRT_Column<TData>;
|
|
136
|
+
rangeFilterIndex?: number | undefined;
|
|
137
|
+
}) => import("@mui/material").TextFieldProps) | undefined;
|
|
138
|
+
muiTableHeadCellProps?: import("@mui/material").TableCellProps | (({ table, column, }: {
|
|
139
|
+
table: MRT_TableInstance<TData>;
|
|
140
|
+
column: MRT_Column<TData>;
|
|
141
|
+
}) => import("@mui/material").TableCellProps) | undefined;
|
|
142
|
+
muiTableHeadProps?: import("@mui/material").TableHeadProps<"thead", {}> | (({ table }: {
|
|
143
|
+
table: MRT_TableInstance<TData>;
|
|
144
|
+
}) => import("@mui/material").TableHeadProps<"thead", {}>) | undefined;
|
|
145
|
+
muiTableHeadRowProps?: import("@mui/material").TableRowProps<"tr", {}> | (({ table, headerGroup, }: {
|
|
146
|
+
table: MRT_TableInstance<TData>;
|
|
147
|
+
headerGroup: import("..").MRT_HeaderGroup<TData>;
|
|
148
|
+
}) => import("@mui/material").TableRowProps<"tr", {}>) | undefined;
|
|
149
|
+
muiTablePaginationProps?: Partial<import("@mui/material").TablePaginationProps<React.JSXElementConstructor<import("@mui/material").TablePaginationBaseProps>, {}>> | (({ table, }: {
|
|
150
|
+
table: MRT_TableInstance<TData>;
|
|
151
|
+
}) => Partial<import("@mui/material").TablePaginationProps<React.JSXElementConstructor<import("@mui/material").TablePaginationBaseProps>, {}>>) | undefined;
|
|
152
|
+
muiTablePaperProps?: import("@mui/material").PaperProps<"div", {}> | (({ table }: {
|
|
153
|
+
table: MRT_TableInstance<TData>;
|
|
154
|
+
}) => import("@mui/material").PaperProps<"div", {}>) | undefined;
|
|
155
|
+
muiTableProps?: import("@mui/material").TableProps<"table", {}> | (({ table }: {
|
|
156
|
+
table: MRT_TableInstance<TData>;
|
|
157
|
+
}) => import("@mui/material").TableProps<"table", {}>) | undefined;
|
|
158
|
+
muiToolbarAlertBannerChipProps?: import("@mui/material").ChipProps<"div", {}> | (({ table }: {
|
|
159
|
+
table: MRT_TableInstance<TData>;
|
|
160
|
+
}) => import("@mui/material").ChipProps<"div", {}>) | undefined;
|
|
161
|
+
muiToolbarAlertBannerProps?: import("@mui/material").AlertProps | (({ table }: {
|
|
162
|
+
table: MRT_TableInstance<TData>;
|
|
163
|
+
}) => import("@mui/material").AlertProps) | undefined;
|
|
164
|
+
muiTopToolbarProps?: import("@mui/material").ToolbarProps<"div", {}> | (({ table }: {
|
|
165
|
+
table: MRT_TableInstance<TData>;
|
|
166
|
+
}) => import("@mui/material").ToolbarProps<"div", {}>) | undefined;
|
|
167
|
+
onDensityChange?: import("@tanstack/table-core").OnChangeFn<boolean> | undefined;
|
|
168
|
+
onDraggingColumnChange?: import("@tanstack/table-core").OnChangeFn<MRT_Column<TData> | null> | undefined;
|
|
169
|
+
onDraggingRowChange?: import("@tanstack/table-core").OnChangeFn<MRT_Row<TData> | null> | undefined;
|
|
170
|
+
onEditingCellChange?: import("@tanstack/table-core").OnChangeFn<MRT_Cell<TData> | null> | undefined;
|
|
171
|
+
onEditingRowSave?: (({ exitEditingMode, row, table, values, }: {
|
|
172
|
+
exitEditingMode: () => void;
|
|
173
|
+
row: MRT_Row<TData>;
|
|
174
|
+
table: MRT_TableInstance<TData>;
|
|
175
|
+
values: Record<(string & Record<never, never>) | (string & import("@tanstack/table-core").DeepKeys<TData>), any>;
|
|
176
|
+
}) => void | Promise<void>) | undefined;
|
|
177
|
+
onEditingRowChange?: import("@tanstack/table-core").OnChangeFn<MRT_Row<TData> | null> | undefined;
|
|
178
|
+
onFilterFnsChange?: import("@tanstack/table-core").OnChangeFn<{
|
|
179
|
+
[key: string]: MRT_FilterOption;
|
|
180
|
+
}> | undefined;
|
|
181
|
+
onGlobalFilterFnChange?: import("@tanstack/table-core").OnChangeFn<MRT_FilterOption> | undefined;
|
|
182
|
+
onHoveredColumnChange?: import("@tanstack/table-core").OnChangeFn<MRT_Column<TData> | null> | undefined;
|
|
183
|
+
onHoveredRowChange?: import("@tanstack/table-core").OnChangeFn<MRT_Row<TData> | null> | undefined;
|
|
184
|
+
onIsFullScreenChange?: import("@tanstack/table-core").OnChangeFn<boolean> | undefined;
|
|
185
|
+
onShowAlertBannerChange?: import("@tanstack/table-core").OnChangeFn<boolean> | undefined;
|
|
186
|
+
onShowFiltersChange?: import("@tanstack/table-core").OnChangeFn<boolean> | undefined;
|
|
187
|
+
onShowGlobalFilterChange?: import("@tanstack/table-core").OnChangeFn<boolean> | undefined;
|
|
188
|
+
positionActionsColumn?: "first" | "last" | undefined;
|
|
189
|
+
positionExpandColumn?: "first" | "last" | undefined;
|
|
190
|
+
positionGlobalFilter?: "left" | "right" | undefined;
|
|
191
|
+
positionPagination?: "bottom" | "top" | "both" | undefined;
|
|
192
|
+
positionToolbarAlertBanner?: "bottom" | "top" | "none" | undefined;
|
|
193
|
+
positionToolbarDropZone?: "bottom" | "top" | "none" | "both" | undefined;
|
|
194
|
+
renderBottomToolbar?: React.ReactNode | (({ table }: {
|
|
195
|
+
table: MRT_TableInstance<TData>;
|
|
196
|
+
}) => React.ReactNode);
|
|
197
|
+
renderBottomToolbarCustomActions?: (({ table, }: {
|
|
198
|
+
table: MRT_TableInstance<TData>;
|
|
199
|
+
}) => React.ReactNode) | undefined;
|
|
200
|
+
renderColumnActionsMenuItems?: (({ column, closeMenu, table, }: {
|
|
201
|
+
column: MRT_Column<TData>;
|
|
202
|
+
closeMenu: () => void;
|
|
203
|
+
table: MRT_TableInstance<TData>;
|
|
204
|
+
}) => React.ReactNode[]) | undefined;
|
|
205
|
+
renderColumnFilterModeMenuItems?: (({ column, internalFilterOptions, onSelectFilterMode, table, }: {
|
|
206
|
+
column: MRT_Column<TData>;
|
|
207
|
+
internalFilterOptions: import("..").MRT_InternalFilterOption[];
|
|
208
|
+
onSelectFilterMode: (filterMode: MRT_FilterOption) => void;
|
|
209
|
+
table: MRT_TableInstance<TData>;
|
|
210
|
+
}) => React.ReactNode[]) | undefined;
|
|
211
|
+
renderDetailPanel?: (({ row, table, }: {
|
|
212
|
+
row: MRT_Row<TData>;
|
|
213
|
+
table: MRT_TableInstance<TData>;
|
|
214
|
+
}) => React.ReactNode) | undefined;
|
|
215
|
+
renderGlobalFilterModeMenuItems?: (({ internalFilterOptions, onSelectFilterMode, table, }: {
|
|
216
|
+
internalFilterOptions: import("..").MRT_InternalFilterOption[];
|
|
217
|
+
onSelectFilterMode: (filterMode: MRT_FilterOption) => void;
|
|
218
|
+
table: MRT_TableInstance<TData>;
|
|
219
|
+
}) => React.ReactNode[]) | undefined;
|
|
220
|
+
renderRowActionMenuItems?: (({ closeMenu, row, table, }: {
|
|
221
|
+
closeMenu: () => void;
|
|
222
|
+
row: MRT_Row<TData>;
|
|
223
|
+
table: MRT_TableInstance<TData>;
|
|
224
|
+
}) => React.ReactNode[]) | undefined;
|
|
225
|
+
renderRowActions?: (({ cell, row, table, }: {
|
|
226
|
+
cell: MRT_Cell<TData>;
|
|
227
|
+
row: MRT_Row<TData>;
|
|
228
|
+
table: MRT_TableInstance<TData>;
|
|
229
|
+
}) => React.ReactNode) | undefined;
|
|
230
|
+
renderToolbarInternalActions?: (({ table, }: {
|
|
231
|
+
table: MRT_TableInstance<TData>;
|
|
232
|
+
}) => React.ReactNode) | undefined;
|
|
233
|
+
renderTopToolbar?: React.ReactNode | (({ table }: {
|
|
234
|
+
table: MRT_TableInstance<TData>;
|
|
235
|
+
}) => React.ReactNode);
|
|
236
|
+
renderTopToolbarCustomActions?: (({ table, }: {
|
|
237
|
+
table: MRT_TableInstance<TData>;
|
|
238
|
+
}) => React.ReactNode) | undefined;
|
|
239
|
+
rowCount?: number | undefined;
|
|
240
|
+
rowNumberMode?: "original" | "static" | undefined;
|
|
241
|
+
selectAllMode?: "all" | "page" | undefined;
|
|
242
|
+
state?: Partial<MRT_TableState<TData>> | undefined;
|
|
243
|
+
tableInstanceRef?: React.MutableRefObject<MRT_TableInstance<TData> | null> | undefined;
|
|
244
|
+
virtualizerProps?: Partial<import("react-virtual").Options<HTMLDivElement>> | (({ table, }: {
|
|
245
|
+
table: MRT_TableInstance<TData>;
|
|
246
|
+
}) => Partial<import("react-virtual").Options<HTMLDivElement>>) | undefined;
|
|
247
|
+
virtualizerInstanceRef?: React.MutableRefObject<import("..").Virtualizer | null> | undefined;
|
|
248
|
+
} & {
|
|
249
|
+
localization: MRT_Localization;
|
|
250
|
+
}) => JSX.Element;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
2
1
|
import { MRT_TableInstance } from '..';
|
|
3
|
-
interface Props {
|
|
4
|
-
table: MRT_TableInstance
|
|
2
|
+
interface Props<TData extends Record<string, any> = {}> {
|
|
3
|
+
table: MRT_TableInstance<TData>;
|
|
5
4
|
position: 'top' | 'bottom';
|
|
6
5
|
}
|
|
7
|
-
export declare const MRT_TablePagination:
|
|
6
|
+
export declare const MRT_TablePagination: <TData extends Record<string, any> = {}>({ table, position, }: Props<TData>) => JSX.Element;
|
|
8
7
|
export {};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { FC } from 'react';
|
|
2
1
|
import type { MRT_TableInstance } from '..';
|
|
3
|
-
interface Props {
|
|
4
|
-
table: MRT_TableInstance
|
|
2
|
+
interface Props<TData extends Record<string, any> = {}> {
|
|
3
|
+
table: MRT_TableInstance<TData>;
|
|
5
4
|
}
|
|
6
|
-
export declare const MRT_ToolbarInternalButtons:
|
|
5
|
+
export declare const MRT_ToolbarInternalButtons: <TData extends Record<string, any> = {}>({ table, }: Props<TData>) => JSX.Element;
|
|
7
6
|
export {};
|
package/dist/en.cjs
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const MRT_Localization_EN = {
|
|
6
|
+
actions: 'Actions',
|
|
7
|
+
and: 'and',
|
|
8
|
+
cancel: 'Cancel',
|
|
9
|
+
changeFilterMode: 'Change filter mode',
|
|
10
|
+
changeSearchMode: 'Change search mode',
|
|
11
|
+
clearFilter: 'Clear filter',
|
|
12
|
+
clearSearch: 'Clear search',
|
|
13
|
+
clearSort: 'Clear sort',
|
|
14
|
+
clickToCopy: 'Click to copy',
|
|
15
|
+
columnActions: 'Column Actions',
|
|
16
|
+
copiedToClipboard: 'Copied to clipboard',
|
|
17
|
+
dropToGroupBy: 'Drop to group by {column}',
|
|
18
|
+
edit: 'Edit',
|
|
19
|
+
expand: 'Expand',
|
|
20
|
+
expandAll: 'Expand all',
|
|
21
|
+
filterArrIncludes: 'Includes',
|
|
22
|
+
filterArrIncludesAll: 'Includes all',
|
|
23
|
+
filterArrIncludesSome: 'Includes',
|
|
24
|
+
filterBetween: 'Between',
|
|
25
|
+
filterBetweenInclusive: 'Between Inclusive',
|
|
26
|
+
filterByColumn: 'Filter by {column}',
|
|
27
|
+
filterContains: 'Contains',
|
|
28
|
+
filterEmpty: 'Empty',
|
|
29
|
+
filterEndsWith: 'Ends With',
|
|
30
|
+
filterEquals: 'Equals',
|
|
31
|
+
filterEqualsString: 'Equals',
|
|
32
|
+
filterFuzzy: 'Fuzzy',
|
|
33
|
+
filterGreaterThan: 'Greater Than',
|
|
34
|
+
filterGreaterThanOrEqualTo: 'Greater Than Or Equal To',
|
|
35
|
+
filterInNumberRange: 'Between',
|
|
36
|
+
filterIncludesString: 'Contains',
|
|
37
|
+
filterIncludesStringSensitive: 'Contains',
|
|
38
|
+
filterLessThan: 'Less Than',
|
|
39
|
+
filterLessThanOrEqualTo: 'Less Than Or Equal To',
|
|
40
|
+
filterMode: 'Filter Mode: {filterType}',
|
|
41
|
+
filterNotEmpty: 'Not Empty',
|
|
42
|
+
filterNotEquals: 'Not Equals',
|
|
43
|
+
filterStartsWith: 'Starts With',
|
|
44
|
+
filterWeakEquals: 'Equals',
|
|
45
|
+
filteringByColumn: 'Filtering by {column} - {filterType} {filterValue}',
|
|
46
|
+
grab: 'Grab',
|
|
47
|
+
groupByColumn: 'Group by {column}',
|
|
48
|
+
groupedBy: 'Grouped by ',
|
|
49
|
+
hideAll: 'Hide all',
|
|
50
|
+
hideColumn: 'Hide {column} column',
|
|
51
|
+
max: 'Max',
|
|
52
|
+
min: 'Min',
|
|
53
|
+
move: 'Move',
|
|
54
|
+
noRecordsToDisplay: 'No records to display',
|
|
55
|
+
noResultsFound: 'No results found',
|
|
56
|
+
or: 'or',
|
|
57
|
+
pinToLeft: 'Pin to left',
|
|
58
|
+
pinToRight: 'Pin to right',
|
|
59
|
+
resetColumnSize: 'Reset column size',
|
|
60
|
+
resetOrder: 'Reset order',
|
|
61
|
+
rowActions: 'Row Actions',
|
|
62
|
+
rowNumber: '#',
|
|
63
|
+
rowNumbers: 'Row Numbers',
|
|
64
|
+
save: 'Save',
|
|
65
|
+
search: 'Search',
|
|
66
|
+
selectedCountOfRowCountRowsSelected: '{selectedCount} of {rowCount} row(s) selected',
|
|
67
|
+
select: 'Select',
|
|
68
|
+
showAll: 'Show all',
|
|
69
|
+
showAllColumns: 'Show all columns',
|
|
70
|
+
showHideColumns: 'Show/Hide columns',
|
|
71
|
+
showHideFilters: 'Show/Hide filters',
|
|
72
|
+
showHideSearch: 'Show/Hide search',
|
|
73
|
+
sortByColumnAsc: 'Sort by {column} ascending',
|
|
74
|
+
sortByColumnDesc: 'Sort by {column} descending',
|
|
75
|
+
sortedByColumnAsc: 'Sorted by {column} ascending',
|
|
76
|
+
sortedByColumnDesc: 'Sorted by {column} descending',
|
|
77
|
+
thenBy: ', then by ',
|
|
78
|
+
toggleDensity: 'Toggle density',
|
|
79
|
+
toggleFullScreen: 'Toggle full screen',
|
|
80
|
+
toggleSelectAll: 'Toggle select all',
|
|
81
|
+
toggleSelectRow: 'Toggle select row',
|
|
82
|
+
toggleVisibility: 'Toggle visibility',
|
|
83
|
+
ungroupByColumn: 'Ungroup by {column}',
|
|
84
|
+
unpin: 'Unpin',
|
|
85
|
+
unpinAll: 'Unpin all',
|
|
86
|
+
unsorted: 'Unsorted',
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
exports.MRT_Localization_EN = MRT_Localization_EN;
|
|
90
|
+
//# sourceMappingURL=en.cjs.map
|
package/dist/en.cjs.d.ts
ADDED
package/dist/en.cjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"en.cjs","sources":["../src/_locales/en.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|
package/dist/en.esm.d.ts
ADDED
package/dist/en.esm.js
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
const MRT_Localization_EN = {
|
|
2
|
+
actions: 'Actions',
|
|
3
|
+
and: 'and',
|
|
4
|
+
cancel: 'Cancel',
|
|
5
|
+
changeFilterMode: 'Change filter mode',
|
|
6
|
+
changeSearchMode: 'Change search mode',
|
|
7
|
+
clearFilter: 'Clear filter',
|
|
8
|
+
clearSearch: 'Clear search',
|
|
9
|
+
clearSort: 'Clear sort',
|
|
10
|
+
clickToCopy: 'Click to copy',
|
|
11
|
+
columnActions: 'Column Actions',
|
|
12
|
+
copiedToClipboard: 'Copied to clipboard',
|
|
13
|
+
dropToGroupBy: 'Drop to group by {column}',
|
|
14
|
+
edit: 'Edit',
|
|
15
|
+
expand: 'Expand',
|
|
16
|
+
expandAll: 'Expand all',
|
|
17
|
+
filterArrIncludes: 'Includes',
|
|
18
|
+
filterArrIncludesAll: 'Includes all',
|
|
19
|
+
filterArrIncludesSome: 'Includes',
|
|
20
|
+
filterBetween: 'Between',
|
|
21
|
+
filterBetweenInclusive: 'Between Inclusive',
|
|
22
|
+
filterByColumn: 'Filter by {column}',
|
|
23
|
+
filterContains: 'Contains',
|
|
24
|
+
filterEmpty: 'Empty',
|
|
25
|
+
filterEndsWith: 'Ends With',
|
|
26
|
+
filterEquals: 'Equals',
|
|
27
|
+
filterEqualsString: 'Equals',
|
|
28
|
+
filterFuzzy: 'Fuzzy',
|
|
29
|
+
filterGreaterThan: 'Greater Than',
|
|
30
|
+
filterGreaterThanOrEqualTo: 'Greater Than Or Equal To',
|
|
31
|
+
filterInNumberRange: 'Between',
|
|
32
|
+
filterIncludesString: 'Contains',
|
|
33
|
+
filterIncludesStringSensitive: 'Contains',
|
|
34
|
+
filterLessThan: 'Less Than',
|
|
35
|
+
filterLessThanOrEqualTo: 'Less Than Or Equal To',
|
|
36
|
+
filterMode: 'Filter Mode: {filterType}',
|
|
37
|
+
filterNotEmpty: 'Not Empty',
|
|
38
|
+
filterNotEquals: 'Not Equals',
|
|
39
|
+
filterStartsWith: 'Starts With',
|
|
40
|
+
filterWeakEquals: 'Equals',
|
|
41
|
+
filteringByColumn: 'Filtering by {column} - {filterType} {filterValue}',
|
|
42
|
+
grab: 'Grab',
|
|
43
|
+
groupByColumn: 'Group by {column}',
|
|
44
|
+
groupedBy: 'Grouped by ',
|
|
45
|
+
hideAll: 'Hide all',
|
|
46
|
+
hideColumn: 'Hide {column} column',
|
|
47
|
+
max: 'Max',
|
|
48
|
+
min: 'Min',
|
|
49
|
+
move: 'Move',
|
|
50
|
+
noRecordsToDisplay: 'No records to display',
|
|
51
|
+
noResultsFound: 'No results found',
|
|
52
|
+
or: 'or',
|
|
53
|
+
pinToLeft: 'Pin to left',
|
|
54
|
+
pinToRight: 'Pin to right',
|
|
55
|
+
resetColumnSize: 'Reset column size',
|
|
56
|
+
resetOrder: 'Reset order',
|
|
57
|
+
rowActions: 'Row Actions',
|
|
58
|
+
rowNumber: '#',
|
|
59
|
+
rowNumbers: 'Row Numbers',
|
|
60
|
+
save: 'Save',
|
|
61
|
+
search: 'Search',
|
|
62
|
+
selectedCountOfRowCountRowsSelected: '{selectedCount} of {rowCount} row(s) selected',
|
|
63
|
+
select: 'Select',
|
|
64
|
+
showAll: 'Show all',
|
|
65
|
+
showAllColumns: 'Show all columns',
|
|
66
|
+
showHideColumns: 'Show/Hide columns',
|
|
67
|
+
showHideFilters: 'Show/Hide filters',
|
|
68
|
+
showHideSearch: 'Show/Hide search',
|
|
69
|
+
sortByColumnAsc: 'Sort by {column} ascending',
|
|
70
|
+
sortByColumnDesc: 'Sort by {column} descending',
|
|
71
|
+
sortedByColumnAsc: 'Sorted by {column} ascending',
|
|
72
|
+
sortedByColumnDesc: 'Sorted by {column} descending',
|
|
73
|
+
thenBy: ', then by ',
|
|
74
|
+
toggleDensity: 'Toggle density',
|
|
75
|
+
toggleFullScreen: 'Toggle full screen',
|
|
76
|
+
toggleSelectAll: 'Toggle select all',
|
|
77
|
+
toggleSelectRow: 'Toggle select row',
|
|
78
|
+
toggleVisibility: 'Toggle visibility',
|
|
79
|
+
ungroupByColumn: 'Ungroup by {column}',
|
|
80
|
+
unpin: 'Unpin',
|
|
81
|
+
unpinAll: 'Unpin all',
|
|
82
|
+
unsorted: 'Unsorted',
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
export { MRT_Localization_EN };
|
|
86
|
+
//# sourceMappingURL=en.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"en.esm.js","sources":["../src/_locales/en.ts"],"sourcesContent":[null],"names":[],"mappings":"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"}
|