material-react-table 2.11.3 → 2.12.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 +29 -22
- package/dist/index.d.ts +19 -1
- package/dist/index.esm.js +116 -70
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +117 -69
- package/dist/index.js.map +1 -1
- package/package.json +16 -16
- package/src/components/body/MRT_TableBodyCell.tsx +7 -0
- package/src/components/body/MRT_TableBodyRow.tsx +5 -0
- package/src/components/body/MRT_TableDetailPanel.tsx +2 -5
- package/src/components/head/MRT_TableHead.tsx +11 -11
- package/src/components/head/MRT_TableHeadCell.tsx +7 -0
- package/src/components/head/MRT_TableHeadCellFilterContainer.tsx +3 -4
- package/src/components/head/MRT_TableHeadCellFilterLabel.tsx +61 -37
- package/src/components/inputs/MRT_FilterRangeFields.tsx +8 -2
- package/src/components/inputs/MRT_FilterTextField.tsx +29 -38
- package/src/components/table/MRT_TablePaper.tsx +4 -4
- package/src/components/toolbar/MRT_ToolbarDropZone.tsx +5 -0
- package/src/hooks/display-columns/getMRT_RowActionsColumnDef.tsx +1 -1
- package/src/hooks/display-columns/getMRT_RowDragColumnDef.tsx +1 -1
- package/src/hooks/display-columns/getMRT_RowExpandColumnDef.tsx +1 -1
- package/src/hooks/display-columns/getMRT_RowNumbersColumnDef.tsx +1 -1
- package/src/hooks/display-columns/getMRT_RowPinningColumnDef.tsx +1 -1
- package/src/hooks/display-columns/getMRT_RowSelectColumnDef.tsx +1 -1
- package/src/hooks/display-columns/getMRT_RowSpacerColumnDef.tsx +1 -1
- package/src/utils/column.utils.ts +86 -0
- package/src/utils/utils.ts +1 -1
package/README.md
CHANGED
@@ -16,9 +16,6 @@ View [Documentation](https://www.material-react-table.com/)
|
|
16
16
|
</a>
|
17
17
|
<a href="https://github.com/KevinVandy/material-react-table/blob/v2/LICENSE" target="_blank">
|
18
18
|
<img alt="" src="https://badgen.net/github/license/KevinVandy/material-react-table?color=blue" />
|
19
|
-
</a>
|
20
|
-
<a href="http://makeapullrequest.com" target="_blank">
|
21
|
-
<img alt="" src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square" />
|
22
19
|
</a>
|
23
20
|
<a
|
24
21
|
href="https://github.com/sponsors/kevinvandy"
|
@@ -27,14 +24,21 @@ View [Documentation](https://www.material-react-table.com/)
|
|
27
24
|
>
|
28
25
|
<img alt="" src="https://img.shields.io/badge/sponsor-violet" />
|
29
26
|
</a>
|
27
|
+
<a
|
28
|
+
href="https://discord.gg/5wqyRx6fnm"
|
29
|
+
target="_blank"
|
30
|
+
rel="noopener"
|
31
|
+
>
|
32
|
+
<img alt="" src="https://dcbadge.vercel.app/api/server/5wqyRx6fnm?style=flat">
|
33
|
+
</a>
|
30
34
|
|
31
35
|
## About
|
32
36
|
|
33
37
|
### _Quickly Create React Data Tables with Material Design_
|
34
38
|
|
35
|
-
###
|
39
|
+
### **Built with [Material UI <sup>V5</sup>](https://mui.com) and [TanStack Table <sup>V8</sup>](https://tanstack.com/table/v8)**
|
36
40
|
|
37
|
-
<img src="https://material-react-table.com/banner.png" alt="MRT" height="50"/>
|
41
|
+
<img src="https://material-react-table.com/banner.png" alt="MRT" height="50" />
|
38
42
|
|
39
43
|
> Want to use Mantine instead of Material UI? Check out [Mantine React Table](https://www.mantine-react-table.com)
|
40
44
|
|
@@ -46,19 +50,19 @@ View [Documentation](https://www.material-react-table.com/)
|
|
46
50
|
|
47
51
|
### Quick Examples
|
48
52
|
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
53
|
+
- [Basic Table](https://www.material-react-table.com/docs/examples/basic/) (See Default Features)
|
54
|
+
- [Minimal Table](https://www.material-react-table.com/docs/examples/minimal/) (Turn off Features like Pagination, Sorting, Filtering, and Toolbars)
|
55
|
+
- [Advanced Table](https://www.material-react-table.com/docs/examples/advanced/) (See some of the Advanced Features)
|
56
|
+
- [Custom Headless Table](https://www.material-react-table.com/docs/examples/custom-headless/) (Build your own table markup)
|
57
|
+
- [Dragging / Ordering Examples](https://www.material-react-table.com/docs/examples/column-ordering/) (Drag and Drop)
|
58
|
+
- [Editing (CRUD) Examples](https://www.material-react-table.com/docs/examples/editing-crud/) (Create, Edit, and Delete Rows)
|
59
|
+
- [Expanding / Grouping Examples](https://www.material-react-table.com/docs/examples/aggregation-and-grouping/) (Sum, Average, Count, etc.)
|
60
|
+
- [Filtering Examples](https://www.material-react-table.com/docs/examples/filter-variants/) (Faceted Values, Switching Filters, etc.)
|
61
|
+
- [Sticky Pinning Examples](https://www.material-react-table.com/docs/examples/sticky-header/) (Sticky Headers, Sticky Columns, Sticky Rows, etc.)
|
62
|
+
- [Remote Data Fetching Examples](https://www.material-react-table.com/docs/examples/react-query/) (Server-side Pagination, Sorting, and Filtering)
|
63
|
+
- [Virtualized Examples](https://www.material-react-table.com/docs/examples/virtualized/) (10,000 rows at once!)
|
64
|
+
- [Infinite Scrolling](https://www.material-react-table.com/docs/examples/infinite-scrolling/) (Fetch data as you scroll)
|
65
|
+
- [Localization (i18n)](https://www.material-react-table.com/docs/guides/localization#built-in-locale-examples) (Over a dozen languages built-in)
|
62
66
|
|
63
67
|
View additional [storybook examples](https://www.material-react-table.dev/)
|
64
68
|
|
@@ -68,7 +72,7 @@ _All features can easily be enabled/disabled_
|
|
68
72
|
|
69
73
|
_**Fully Fleshed out [Docs](https://www.material-react-table.com/docs/guides#guides) are available for all features**_
|
70
74
|
|
71
|
-
- [x] 30-
|
75
|
+
- [x] 30-56kb gzipped - [Bundlephobia](https://bundlephobia.com/package/material-react-table)
|
72
76
|
- [x] Advanced TypeScript Generics Support (TypeScript Optional)
|
73
77
|
- [x] Aggregation and Grouping (Sum, Average, Count, etc.)
|
74
78
|
- [x] Cell Actions (Right-click Context Menu)
|
@@ -132,7 +136,10 @@ npm install material-react-table
|
|
132
136
|
|
133
137
|
```jsx
|
134
138
|
import { useMemo, useState, useEffect } from 'react';
|
135
|
-
import {
|
139
|
+
import {
|
140
|
+
MaterialReactTable,
|
141
|
+
useMaterialReactTable,
|
142
|
+
} from 'material-react-table';
|
136
143
|
|
137
144
|
//data must be stable reference (useState, useMemo, useQuery, defined outside of component, etc.)
|
138
145
|
const data = [
|
@@ -144,7 +151,7 @@ const data = [
|
|
144
151
|
name: 'Sara',
|
145
152
|
age: 25,
|
146
153
|
},
|
147
|
-
]
|
154
|
+
];
|
148
155
|
|
149
156
|
export default function App() {
|
150
157
|
const columns = useMemo(
|
@@ -185,7 +192,7 @@ export default function App() {
|
|
185
192
|
const someEventHandler = () => {
|
186
193
|
//read the table state during an event from the table instance
|
187
194
|
console.log(table.getState().sorting);
|
188
|
-
}
|
195
|
+
};
|
189
196
|
|
190
197
|
return (
|
191
198
|
<MaterialReactTable table={table} /> //other more lightweight MRT sub components also available
|
package/dist/index.d.ts
CHANGED
@@ -1181,6 +1181,24 @@ declare const prepareColumns: <TData extends MRT_RowData>({ columnDefs, tableOpt
|
|
1181
1181
|
}) => MRT_DefinedColumnDef<TData>[];
|
1182
1182
|
declare const reorderColumn: <TData extends MRT_RowData>(draggedColumn: MRT_Column<TData>, targetColumn: MRT_Column<TData>, columnOrder: _tanstack_react_table.ColumnOrderState) => _tanstack_react_table.ColumnOrderState;
|
1183
1183
|
declare const getDefaultColumnFilterFn: <TData extends MRT_RowData>(columnDef: MRT_ColumnDef<TData>) => MRT_FilterOption;
|
1184
|
+
declare const getColumnFilterInfo: <TData extends MRT_RowData>({ header, table, }: {
|
1185
|
+
header: MRT_Header<TData>;
|
1186
|
+
table: MRT_TableInstance<TData>;
|
1187
|
+
}) => {
|
1188
|
+
readonly allowedColumnFilterOptions: LiteralUnion<string & MRT_FilterOption, string>[] | null | undefined;
|
1189
|
+
readonly currentFilterOption: MRT_FilterOption;
|
1190
|
+
readonly facetedUniqueValues: Map<any, number>;
|
1191
|
+
readonly isAutocompleteFilter: boolean;
|
1192
|
+
readonly isDateFilter: boolean;
|
1193
|
+
readonly isMultiSelectFilter: boolean;
|
1194
|
+
readonly isRangeFilter: boolean;
|
1195
|
+
readonly isSelectFilter: boolean;
|
1196
|
+
readonly isTextboxFilter: boolean;
|
1197
|
+
};
|
1198
|
+
declare const useDropdownOptions: <TData extends MRT_RowData>({ header, table, }: {
|
1199
|
+
header: MRT_Header<TData>;
|
1200
|
+
table: MRT_TableInstance<TData>;
|
1201
|
+
}) => DropdownOption[] | undefined;
|
1184
1202
|
|
1185
1203
|
declare function defaultDisplayColumnProps<TData extends MRT_RowData>({ header, id, size, tableOptions, }: {
|
1186
1204
|
header?: keyof MRT_Localization;
|
@@ -1834,4 +1852,4 @@ interface MRT_TopToolbarProps<TData extends MRT_RowData> {
|
|
1834
1852
|
}
|
1835
1853
|
declare const MRT_TopToolbar: <TData extends MRT_RowData>({ table, }: MRT_TopToolbarProps<TData>) => react_jsx_runtime.JSX.Element;
|
1836
1854
|
|
1837
|
-
export { type DropdownOption, type LiteralUnion, MRT_ActionMenuItem, type MRT_ActionMenuItemProps, type MRT_AggregationFn, MRT_AggregationFns, type MRT_AggregationOption, MRT_BottomToolbar, type MRT_BottomToolbarProps, type MRT_Cell, type MRT_Column, MRT_ColumnActionMenu, type MRT_ColumnActionMenuProps, type MRT_ColumnDef, type MRT_ColumnFilterFnsState, type MRT_ColumnFiltersState, type MRT_ColumnHelper, type MRT_ColumnOrderState, MRT_ColumnPinningButtons, type MRT_ColumnPinningButtonsProps, type MRT_ColumnPinningState, type MRT_ColumnSizingInfoState, type MRT_ColumnSizingState, type MRT_ColumnVirtualizer, MRT_CopyButton, type MRT_CopyButtonProps, MRT_DefaultColumn, MRT_DefaultDisplayColumn, type MRT_DefinedColumnDef, type MRT_DefinedTableOptions, type MRT_DensityState, type MRT_DisplayColumnDef, type MRT_DisplayColumnIds, MRT_EditActionButtons, type MRT_EditActionButtonsProps, MRT_EditCellTextField, type MRT_EditCellTextFieldProps, MRT_EditRowModal, type MRT_EditRowModalProps, MRT_ExpandAllButton, type MRT_ExpandAllButtonProps, MRT_ExpandButton, type MRT_ExpandButtonProps, type MRT_ExpandedState, MRT_FilterCheckbox, type MRT_FilterCheckboxProps, type MRT_FilterFn, MRT_FilterFns, type MRT_FilterOption, MRT_FilterOptionMenu, type MRT_FilterOptionMenuProps, MRT_FilterRangeFields, type MRT_FilterRangeFieldsProps, MRT_FilterRangeSlider, type MRT_FilterRangeSliderProps, MRT_FilterTextField, type MRT_FilterTextFieldProps, MRT_GlobalFilterTextField, type MRT_GlobalFilterTextFieldProps, MRT_GrabHandleButton, type MRT_GrabHandleButtonProps, type MRT_GroupColumnDef, type MRT_GroupingState, type MRT_Header, type MRT_HeaderGroup, type MRT_Icons, type MRT_InternalFilterOption, MRT_LinearProgressBar, type MRT_LinearProgressBarProps, type MRT_Localization, type MRT_PaginationState, type MRT_Row, MRT_RowActionMenu, type MRT_RowActionMenuProps, type MRT_RowData, type MRT_RowModel, MRT_RowPinButton, type MRT_RowPinButtonProps, type MRT_RowSelectionState, type MRT_RowVirtualizer, MRT_SelectCheckbox, type MRT_SelectCheckboxProps, MRT_ShowHideColumnsButton, type MRT_ShowHideColumnsButtonProps, MRT_ShowHideColumnsMenu, MRT_ShowHideColumnsMenuItems, type MRT_ShowHideColumnsMenuItemsProps, type MRT_ShowHideColumnsMenuProps, type MRT_SortingFn, MRT_SortingFns, type MRT_SortingOption, type MRT_SortingState, type MRT_StatefulTableOptions, MRT_Table, MRT_TableBody, MRT_TableBodyCell, type MRT_TableBodyCellProps, MRT_TableBodyCellValue, type MRT_TableBodyCellValueProps, type MRT_TableBodyProps, MRT_TableBodyRow, MRT_TableBodyRowGrabHandle, type MRT_TableBodyRowGrabHandleProps, MRT_TableBodyRowPinButton, type MRT_TableBodyRowPinButtonProps, type MRT_TableBodyRowProps, MRT_TableContainer, type MRT_TableContainerProps, MRT_TableDetailPanel, type MRT_TableDetailPanelProps, MRT_TableFooter, MRT_TableFooterCell, type MRT_TableFooterCellProps, type MRT_TableFooterProps, MRT_TableFooterRow, type MRT_TableFooterRowProps, MRT_TableHead, MRT_TableHeadCell, MRT_TableHeadCellColumnActionsButton, type MRT_TableHeadCellColumnActionsButtonProps, MRT_TableHeadCellFilterContainer, type MRT_TableHeadCellFilterContainerProps, MRT_TableHeadCellFilterLabel, type MRT_TableHeadCellFilterLabelProps, MRT_TableHeadCellGrabHandle, type MRT_TableHeadCellGrabHandleProps, type MRT_TableHeadCellProps, MRT_TableHeadCellResizeHandle, type MRT_TableHeadCellResizeHandleProps, MRT_TableHeadCellSortLabel, type MRT_TableHeadCellSortLabelProps, type MRT_TableHeadProps, MRT_TableHeadRow, type MRT_TableHeadRowProps, type MRT_TableInstance, MRT_TableLoadingOverlay, type MRT_TableLoadingOverlayProps, type MRT_TableOptions, MRT_TablePagination, type MRT_TablePaginationProps, MRT_TablePaper, type MRT_TablePaperProps, type MRT_TableProps, type MRT_TableState, type MRT_Theme, MRT_ToggleDensePaddingButton, type MRT_ToggleDensePaddingButtonProps, MRT_ToggleFiltersButton, type MRT_ToggleFiltersButtonProps, MRT_ToggleFullScreenButton, type MRT_ToggleFullScreenButtonProps, MRT_ToggleGlobalFilterButton, type MRT_ToggleGlobalFilterButtonProps, MRT_ToggleRowActionMenuButton, type MRT_ToggleRowActionMenuButtonProps, MRT_ToolbarAlertBanner, type MRT_ToolbarAlertBannerProps, MRT_ToolbarDropZone, type MRT_ToolbarDropZoneProps, MRT_ToolbarInternalButtons, type MRT_ToolbarInternalButtonsProps, MRT_TopToolbar, type MRT_TopToolbarProps, type MRT_Updater, type MRT_VirtualItem, type MRT_Virtualizer, type MRT_VirtualizerOptions, type MRT_VisibilityState, MaterialReactTable, type MaterialReactTableProps, Memo_MRT_TableBody, Memo_MRT_TableBodyCell, Memo_MRT_TableBodyRow, type Prettify, type Xor, createMRTColumnHelper, createRow, defaultDisplayColumnProps, flexRender, getAllLeafColumnDefs, getCanRankRows, getColumnId, getDefaultColumnFilterFn, getDefaultColumnOrderIds, getIsRankingRows, getIsRowSelected, getLeadingDisplayColumnIds, getMRT_RowSelectionHandler, getMRT_Rows, getMRT_SelectAllHandler, getTrailingDisplayColumnIds, isCellEditable, mrtFilterOptions, openEditingCell, prepareColumns, rankGlobalFuzzy, reorderColumn, showRowActionsColumn, showRowDragColumn, showRowExpandColumn, showRowNumbersColumn, showRowPinningColumn, showRowSelectionColumn, showRowSpacerColumn, useMRT_ColumnVirtualizer, useMRT_Effects, useMRT_RowVirtualizer, useMRT_Rows, useMRT_TableInstance, useMRT_TableOptions, useMaterialReactTable };
|
1855
|
+
export { type DropdownOption, type LiteralUnion, MRT_ActionMenuItem, type MRT_ActionMenuItemProps, type MRT_AggregationFn, MRT_AggregationFns, type MRT_AggregationOption, MRT_BottomToolbar, type MRT_BottomToolbarProps, type MRT_Cell, type MRT_Column, MRT_ColumnActionMenu, type MRT_ColumnActionMenuProps, type MRT_ColumnDef, type MRT_ColumnFilterFnsState, type MRT_ColumnFiltersState, type MRT_ColumnHelper, type MRT_ColumnOrderState, MRT_ColumnPinningButtons, type MRT_ColumnPinningButtonsProps, type MRT_ColumnPinningState, type MRT_ColumnSizingInfoState, type MRT_ColumnSizingState, type MRT_ColumnVirtualizer, MRT_CopyButton, type MRT_CopyButtonProps, MRT_DefaultColumn, MRT_DefaultDisplayColumn, type MRT_DefinedColumnDef, type MRT_DefinedTableOptions, type MRT_DensityState, type MRT_DisplayColumnDef, type MRT_DisplayColumnIds, MRT_EditActionButtons, type MRT_EditActionButtonsProps, MRT_EditCellTextField, type MRT_EditCellTextFieldProps, MRT_EditRowModal, type MRT_EditRowModalProps, MRT_ExpandAllButton, type MRT_ExpandAllButtonProps, MRT_ExpandButton, type MRT_ExpandButtonProps, type MRT_ExpandedState, MRT_FilterCheckbox, type MRT_FilterCheckboxProps, type MRT_FilterFn, MRT_FilterFns, type MRT_FilterOption, MRT_FilterOptionMenu, type MRT_FilterOptionMenuProps, MRT_FilterRangeFields, type MRT_FilterRangeFieldsProps, MRT_FilterRangeSlider, type MRT_FilterRangeSliderProps, MRT_FilterTextField, type MRT_FilterTextFieldProps, MRT_GlobalFilterTextField, type MRT_GlobalFilterTextFieldProps, MRT_GrabHandleButton, type MRT_GrabHandleButtonProps, type MRT_GroupColumnDef, type MRT_GroupingState, type MRT_Header, type MRT_HeaderGroup, type MRT_Icons, type MRT_InternalFilterOption, MRT_LinearProgressBar, type MRT_LinearProgressBarProps, type MRT_Localization, type MRT_PaginationState, type MRT_Row, MRT_RowActionMenu, type MRT_RowActionMenuProps, type MRT_RowData, type MRT_RowModel, MRT_RowPinButton, type MRT_RowPinButtonProps, type MRT_RowSelectionState, type MRT_RowVirtualizer, MRT_SelectCheckbox, type MRT_SelectCheckboxProps, MRT_ShowHideColumnsButton, type MRT_ShowHideColumnsButtonProps, MRT_ShowHideColumnsMenu, MRT_ShowHideColumnsMenuItems, type MRT_ShowHideColumnsMenuItemsProps, type MRT_ShowHideColumnsMenuProps, type MRT_SortingFn, MRT_SortingFns, type MRT_SortingOption, type MRT_SortingState, type MRT_StatefulTableOptions, MRT_Table, MRT_TableBody, MRT_TableBodyCell, type MRT_TableBodyCellProps, MRT_TableBodyCellValue, type MRT_TableBodyCellValueProps, type MRT_TableBodyProps, MRT_TableBodyRow, MRT_TableBodyRowGrabHandle, type MRT_TableBodyRowGrabHandleProps, MRT_TableBodyRowPinButton, type MRT_TableBodyRowPinButtonProps, type MRT_TableBodyRowProps, MRT_TableContainer, type MRT_TableContainerProps, MRT_TableDetailPanel, type MRT_TableDetailPanelProps, MRT_TableFooter, MRT_TableFooterCell, type MRT_TableFooterCellProps, type MRT_TableFooterProps, MRT_TableFooterRow, type MRT_TableFooterRowProps, MRT_TableHead, MRT_TableHeadCell, MRT_TableHeadCellColumnActionsButton, type MRT_TableHeadCellColumnActionsButtonProps, MRT_TableHeadCellFilterContainer, type MRT_TableHeadCellFilterContainerProps, MRT_TableHeadCellFilterLabel, type MRT_TableHeadCellFilterLabelProps, MRT_TableHeadCellGrabHandle, type MRT_TableHeadCellGrabHandleProps, type MRT_TableHeadCellProps, MRT_TableHeadCellResizeHandle, type MRT_TableHeadCellResizeHandleProps, MRT_TableHeadCellSortLabel, type MRT_TableHeadCellSortLabelProps, type MRT_TableHeadProps, MRT_TableHeadRow, type MRT_TableHeadRowProps, type MRT_TableInstance, MRT_TableLoadingOverlay, type MRT_TableLoadingOverlayProps, type MRT_TableOptions, MRT_TablePagination, type MRT_TablePaginationProps, MRT_TablePaper, type MRT_TablePaperProps, type MRT_TableProps, type MRT_TableState, type MRT_Theme, MRT_ToggleDensePaddingButton, type MRT_ToggleDensePaddingButtonProps, MRT_ToggleFiltersButton, type MRT_ToggleFiltersButtonProps, MRT_ToggleFullScreenButton, type MRT_ToggleFullScreenButtonProps, MRT_ToggleGlobalFilterButton, type MRT_ToggleGlobalFilterButtonProps, MRT_ToggleRowActionMenuButton, type MRT_ToggleRowActionMenuButtonProps, MRT_ToolbarAlertBanner, type MRT_ToolbarAlertBannerProps, MRT_ToolbarDropZone, type MRT_ToolbarDropZoneProps, MRT_ToolbarInternalButtons, type MRT_ToolbarInternalButtonsProps, MRT_TopToolbar, type MRT_TopToolbarProps, type MRT_Updater, type MRT_VirtualItem, type MRT_Virtualizer, type MRT_VirtualizerOptions, type MRT_VisibilityState, MaterialReactTable, type MaterialReactTableProps, Memo_MRT_TableBody, Memo_MRT_TableBodyCell, Memo_MRT_TableBodyRow, type Prettify, type Xor, createMRTColumnHelper, createRow, defaultDisplayColumnProps, flexRender, getAllLeafColumnDefs, getCanRankRows, getColumnFilterInfo, getColumnId, getDefaultColumnFilterFn, getDefaultColumnOrderIds, getIsRankingRows, getIsRowSelected, getLeadingDisplayColumnIds, getMRT_RowSelectionHandler, getMRT_Rows, getMRT_SelectAllHandler, getTrailingDisplayColumnIds, isCellEditable, mrtFilterOptions, openEditingCell, prepareColumns, rankGlobalFuzzy, reorderColumn, showRowActionsColumn, showRowDragColumn, showRowExpandColumn, showRowNumbersColumn, showRowPinningColumn, showRowSelectionColumn, showRowSpacerColumn, useDropdownOptions, useMRT_ColumnVirtualizer, useMRT_Effects, useMRT_RowVirtualizer, useMRT_Rows, useMRT_TableInstance, useMRT_TableOptions, useMaterialReactTable };
|
package/dist/index.esm.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { flexRender as flexRender$1, createRow as createRow$1, sortingFns, aggregationFns, filterFns, getCoreRowModel, getExpandedRowModel, getFacetedMinMaxValues, getFacetedRowModel, getFacetedUniqueValues, getFilteredRowModel, getGroupedRowModel, getPaginationRowModel, getSortedRowModel, useReactTable } from '@tanstack/react-table';
|
2
|
+
import { useMemo, useState, useReducer, useRef, useEffect, useCallback, memo, Fragment as Fragment$1, useLayoutEffect } from 'react';
|
2
3
|
import { compareItems, rankItem, rankings } from '@tanstack/match-sorter-utils';
|
3
|
-
import { useState, useMemo, useReducer, useRef, useEffect, useCallback, memo, Fragment as Fragment$1, useLayoutEffect } from 'react';
|
4
4
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
5
5
|
import IconButton from '@mui/material/IconButton';
|
6
6
|
import Tooltip from '@mui/material/Tooltip';
|
@@ -169,6 +169,54 @@ const getDefaultColumnFilterFn = (columnDef) => {
|
|
169
169
|
return 'equals';
|
170
170
|
return 'fuzzy';
|
171
171
|
};
|
172
|
+
const getColumnFilterInfo = ({ header, table, }) => {
|
173
|
+
var _a;
|
174
|
+
const { options: { columnFilterModeOptions }, } = table;
|
175
|
+
const { column } = header;
|
176
|
+
const { columnDef } = column;
|
177
|
+
const { filterVariant } = columnDef;
|
178
|
+
const isDateFilter = !!((filterVariant === null || filterVariant === void 0 ? void 0 : filterVariant.startsWith('date')) || (filterVariant === null || filterVariant === void 0 ? void 0 : filterVariant.startsWith('time')));
|
179
|
+
const isAutocompleteFilter = filterVariant === 'autocomplete';
|
180
|
+
const isRangeFilter = (filterVariant === null || filterVariant === void 0 ? void 0 : filterVariant.includes('range')) ||
|
181
|
+
['between', 'betweenInclusive', 'inNumberRange'].includes(columnDef._filterFn);
|
182
|
+
const isSelectFilter = filterVariant === 'select';
|
183
|
+
const isMultiSelectFilter = filterVariant === 'multi-select';
|
184
|
+
const isTextboxFilter = ['autocomplete', 'text'].includes(filterVariant) ||
|
185
|
+
(!isSelectFilter && !isMultiSelectFilter);
|
186
|
+
const currentFilterOption = columnDef._filterFn;
|
187
|
+
const allowedColumnFilterOptions = (_a = columnDef === null || columnDef === void 0 ? void 0 : columnDef.columnFilterModeOptions) !== null && _a !== void 0 ? _a : columnFilterModeOptions;
|
188
|
+
const facetedUniqueValues = column.getFacetedUniqueValues();
|
189
|
+
return {
|
190
|
+
allowedColumnFilterOptions,
|
191
|
+
currentFilterOption,
|
192
|
+
facetedUniqueValues,
|
193
|
+
isAutocompleteFilter,
|
194
|
+
isDateFilter,
|
195
|
+
isMultiSelectFilter,
|
196
|
+
isRangeFilter,
|
197
|
+
isSelectFilter,
|
198
|
+
isTextboxFilter,
|
199
|
+
};
|
200
|
+
};
|
201
|
+
const useDropdownOptions = ({ header, table, }) => {
|
202
|
+
const { column } = header;
|
203
|
+
const { columnDef } = column;
|
204
|
+
const { facetedUniqueValues, isAutocompleteFilter, isMultiSelectFilter, isSelectFilter, } = getColumnFilterInfo({ header, table });
|
205
|
+
return useMemo(() => {
|
206
|
+
var _a;
|
207
|
+
return (_a = columnDef.filterSelectOptions) !== null && _a !== void 0 ? _a : ((isSelectFilter || isMultiSelectFilter || isAutocompleteFilter) &&
|
208
|
+
facetedUniqueValues
|
209
|
+
? Array.from(facetedUniqueValues.keys())
|
210
|
+
.filter((value) => value !== null && value !== undefined)
|
211
|
+
.sort((a, b) => a.localeCompare(b))
|
212
|
+
: undefined);
|
213
|
+
}, [
|
214
|
+
columnDef.filterSelectOptions,
|
215
|
+
facetedUniqueValues,
|
216
|
+
isMultiSelectFilter,
|
217
|
+
isSelectFilter,
|
218
|
+
]);
|
219
|
+
};
|
172
220
|
|
173
221
|
const flexRender = flexRender$1;
|
174
222
|
function createMRTColumnHelper() {
|
@@ -2008,6 +2056,11 @@ const MRT_TableBodyCell = (_a) => {
|
|
2008
2056
|
setHoveredColumn(columnDef.enableColumnOrdering !== false ? column : null);
|
2009
2057
|
}
|
2010
2058
|
};
|
2059
|
+
const handleDragOver = (e) => {
|
2060
|
+
if (columnDef.enableColumnOrdering !== false) {
|
2061
|
+
e.preventDefault();
|
2062
|
+
}
|
2063
|
+
};
|
2011
2064
|
const handleContextMenu = (e) => {
|
2012
2065
|
var _a;
|
2013
2066
|
(_a = tableCellProps === null || tableCellProps === void 0 ? void 0 : tableCellProps.onContextMenu) === null || _a === void 0 ? void 0 : _a.call(tableCellProps, e);
|
@@ -2017,7 +2070,7 @@ const MRT_TableBodyCell = (_a) => {
|
|
2017
2070
|
table.refs.actionCellRef.current = e.currentTarget;
|
2018
2071
|
}
|
2019
2072
|
};
|
2020
|
-
return (jsx(TableCell, Object.assign({ align: theme.direction === 'rtl' ? 'right' : 'left', "data-index": staticColumnIndex, "data-pinned": !!isColumnPinned || undefined }, tableCellProps, { onContextMenu: handleContextMenu, onDoubleClick: handleDoubleClick, onDragEnter: handleDragEnter, sx: (theme) => (Object.assign(Object.assign({ '&:hover': {
|
2073
|
+
return (jsx(TableCell, Object.assign({ align: theme.direction === 'rtl' ? 'right' : 'left', "data-index": staticColumnIndex, "data-pinned": !!isColumnPinned || undefined }, tableCellProps, { onContextMenu: handleContextMenu, onDoubleClick: handleDoubleClick, onDragEnter: handleDragEnter, onDragOver: handleDragOver, sx: (theme) => (Object.assign(Object.assign({ '&:hover': {
|
2021
2074
|
outline: (actionCell === null || actionCell === void 0 ? void 0 : actionCell.id) === cell.id ||
|
2022
2075
|
(editDisplayMode === 'cell' && isEditable) ||
|
2023
2076
|
(editDisplayMode === 'table' && (isCreating || isEditing))
|
@@ -2062,7 +2115,7 @@ const Memo_MRT_TableBodyCell = memo(MRT_TableBodyCell, (prev, next) => next.cell
|
|
2062
2115
|
|
2063
2116
|
const MRT_TableDetailPanel = (_a) => {
|
2064
2117
|
var { parentRowRef, row, rowVirtualizer, staticRowIndex, table, virtualRow } = _a, rest = __rest(_a, ["parentRowRef", "row", "rowVirtualizer", "staticRowIndex", "table", "virtualRow"]);
|
2065
|
-
const { getState, getVisibleLeafColumns, options: {
|
2118
|
+
const { getState, getVisibleLeafColumns, options: { layoutMode, mrtTheme: { baseBackgroundColor }, muiDetailPanelProps, muiTableBodyRowProps, renderDetailPanel, }, } = table;
|
2066
2119
|
const { isLoading } = getState();
|
2067
2120
|
const tableRowProps = parseFromValuesOrFunc(muiTableBodyRowProps, {
|
2068
2121
|
isDetailPanel: true,
|
@@ -2087,9 +2140,7 @@ const MRT_TableDetailPanel = (_a) => {
|
|
2087
2140
|
: undefined, transform: virtualRow
|
2088
2141
|
? `translateY(${virtualRow === null || virtualRow === void 0 ? void 0 : virtualRow.start}px)`
|
2089
2142
|
: undefined, width: '100%' }, parseFromValuesOrFunc(tableRowProps === null || tableRowProps === void 0 ? void 0 : tableRowProps.sx, theme)));
|
2090
|
-
}, children: jsx(TableCell, Object.assign({ className: "Mui-TableBodyCell-DetailPanel", colSpan: getVisibleLeafColumns().length }, tableCellProps, { sx: (theme) => (Object.assign({ backgroundColor: virtualRow ? baseBackgroundColor : undefined, borderBottom: !row.getIsExpanded() ? 'none' : undefined, display: (layoutMode === null || layoutMode === void 0 ? void 0 : layoutMode.startsWith('grid')) ? 'flex' : undefined, py: !!DetailPanel && row.getIsExpanded() ? '1rem' : 0, transition: !
|
2091
|
-
? 'all 150ms ease-in-out'
|
2092
|
-
: undefined, width: `100%` }, parseFromValuesOrFunc(tableCellProps === null || tableCellProps === void 0 ? void 0 : tableCellProps.sx, theme))), children: enableRowVirtualization ? (row.getIsExpanded() && DetailPanel) : (jsx(Collapse, { in: row.getIsExpanded(), mountOnEnter: true, unmountOnExit: true, children: DetailPanel })) })) })));
|
2143
|
+
}, children: jsx(TableCell, Object.assign({ className: "Mui-TableBodyCell-DetailPanel", colSpan: getVisibleLeafColumns().length }, tableCellProps, { sx: (theme) => (Object.assign({ backgroundColor: virtualRow ? baseBackgroundColor : undefined, borderBottom: !row.getIsExpanded() ? 'none' : undefined, display: (layoutMode === null || layoutMode === void 0 ? void 0 : layoutMode.startsWith('grid')) ? 'flex' : undefined, py: !!DetailPanel && row.getIsExpanded() ? '1rem' : 0, transition: !virtualRow ? 'all 150ms ease-in-out' : undefined, width: `100%` }, parseFromValuesOrFunc(tableCellProps === null || tableCellProps === void 0 ? void 0 : tableCellProps.sx, theme))), children: virtualRow ? (row.getIsExpanded() && DetailPanel) : (jsx(Collapse, { in: row.getIsExpanded(), mountOnEnter: true, unmountOnExit: true, children: DetailPanel })) })) })));
|
2093
2144
|
};
|
2094
2145
|
|
2095
2146
|
const MRT_TableBodyRow = (_a) => {
|
@@ -2135,6 +2186,9 @@ const MRT_TableBodyRow = (_a) => {
|
|
2135
2186
|
setHoveredRow(row);
|
2136
2187
|
}
|
2137
2188
|
};
|
2189
|
+
const handleDragOver = (e) => {
|
2190
|
+
e.preventDefault();
|
2191
|
+
};
|
2138
2192
|
const rowRef = useRef(null);
|
2139
2193
|
const cellHighlightColor = isRowSelected
|
2140
2194
|
? selectedRowBackgroundColor
|
@@ -2148,7 +2202,7 @@ const MRT_TableBodyRow = (_a) => {
|
|
2148
2202
|
? `${lighten(baseBackgroundColor, 0.3)}`
|
2149
2203
|
: `${darken(baseBackgroundColor, 0.3)}`
|
2150
2204
|
: undefined;
|
2151
|
-
return (jsxs(Fragment, { children: [jsxs(TableRow, Object.assign({ "data-index": renderDetailPanel ? staticRowIndex * 2 : staticRowIndex, "data-pinned": !!isRowPinned || undefined, "data-selected": isRowSelected || undefined, onDragEnter: handleDragEnter, ref: (node) => {
|
2205
|
+
return (jsxs(Fragment, { children: [jsxs(TableRow, Object.assign({ "data-index": renderDetailPanel ? staticRowIndex * 2 : staticRowIndex, "data-pinned": !!isRowPinned || undefined, "data-selected": isRowSelected || undefined, onDragEnter: handleDragEnter, onDragOver: handleDragOver, ref: (node) => {
|
2152
2206
|
if (node) {
|
2153
2207
|
rowRef.current = node;
|
2154
2208
|
rowVirtualizer === null || rowVirtualizer === void 0 ? void 0 : rowVirtualizer.measureElement(node);
|
@@ -2743,9 +2797,9 @@ const MRT_FilterCheckbox = (_a) => {
|
|
2743
2797
|
};
|
2744
2798
|
|
2745
2799
|
const MRT_FilterTextField = (_a) => {
|
2746
|
-
var _b, _c, _d, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t
|
2800
|
+
var _b, _c, _d, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t;
|
2747
2801
|
var { header, rangeFilterIndex, table } = _a, rest = __rest(_a, ["header", "rangeFilterIndex", "table"]);
|
2748
|
-
const { options: {
|
2802
|
+
const { options: { enableColumnFilterModes, icons: { CloseIcon, FilterListIcon }, localization, manualFiltering, muiFilterAutocompleteProps, muiFilterDatePickerProps, muiFilterDateTimePickerProps, muiFilterTextFieldProps, muiFilterTimePickerProps, }, refs: { filterInputRefs }, setColumnFilterFns, } = table;
|
2749
2803
|
const { column } = header;
|
2750
2804
|
const { columnDef } = column;
|
2751
2805
|
const { filterVariant } = columnDef;
|
@@ -2769,14 +2823,8 @@ const MRT_FilterTextField = (_a) => {
|
|
2769
2823
|
column,
|
2770
2824
|
table,
|
2771
2825
|
}));
|
2772
|
-
const
|
2773
|
-
const
|
2774
|
-
const isRangeFilter = (filterVariant === null || filterVariant === void 0 ? void 0 : filterVariant.includes('range')) || rangeFilterIndex !== undefined;
|
2775
|
-
const isSelectFilter = filterVariant === 'select';
|
2776
|
-
const isMultiSelectFilter = filterVariant === 'multi-select';
|
2777
|
-
const isTextboxFilter = ['autocomplete', 'text'].includes(filterVariant) ||
|
2778
|
-
(!isSelectFilter && !isMultiSelectFilter);
|
2779
|
-
const currentFilterOption = columnDef._filterFn;
|
2826
|
+
const { allowedColumnFilterOptions, currentFilterOption, facetedUniqueValues, isAutocompleteFilter, isDateFilter, isMultiSelectFilter, isRangeFilter, isSelectFilter, isTextboxFilter, } = getColumnFilterInfo({ header, table });
|
2827
|
+
const dropdownOptions = useDropdownOptions({ header, table });
|
2780
2828
|
const filterChipLabel = ['empty', 'notEmpty'].includes(currentFilterOption)
|
2781
2829
|
? //@ts-ignore
|
2782
2830
|
localization[`filter${((_c = (_b = currentFilterOption === null || currentFilterOption === void 0 ? void 0 : currentFilterOption.charAt) === null || _b === void 0 ? void 0 : _b.call(currentFilterOption, 0)) === null || _c === void 0 ? void 0 : _c.toUpperCase()) +
|
@@ -2789,13 +2837,11 @@ const MRT_FilterTextField = (_a) => {
|
|
2789
2837
|
: rangeFilterIndex === 1
|
2790
2838
|
? localization.max
|
2791
2839
|
: '';
|
2792
|
-
const
|
2793
|
-
const showChangeModeButton = enableColumnFilterModes &&
|
2840
|
+
const showChangeModeButton = !!(enableColumnFilterModes &&
|
2794
2841
|
columnDef.enableColumnFilterModes !== false &&
|
2795
2842
|
!rangeFilterIndex &&
|
2796
2843
|
(allowedColumnFilterOptions === undefined ||
|
2797
|
-
!!(allowedColumnFilterOptions === null || allowedColumnFilterOptions === void 0 ? void 0 : allowedColumnFilterOptions.length));
|
2798
|
-
const facetedUniqueValues = column.getFacetedUniqueValues();
|
2844
|
+
!!(allowedColumnFilterOptions === null || allowedColumnFilterOptions === void 0 ? void 0 : allowedColumnFilterOptions.length)));
|
2799
2845
|
const [anchorEl, setAnchorEl] = useState(null);
|
2800
2846
|
const [filterValue, setFilterValue] = useState(() => {
|
2801
2847
|
var _a, _b;
|
@@ -2882,23 +2928,9 @@ const MRT_FilterTextField = (_a) => {
|
|
2882
2928
|
isMounted.current = true;
|
2883
2929
|
}, [column.getFilterValue()]);
|
2884
2930
|
if (columnDef.Filter) {
|
2885
|
-
return (jsx(Fragment, { children: (
|
2931
|
+
return (jsx(Fragment, { children: (_g = columnDef.Filter) === null || _g === void 0 ? void 0 : _g.call(columnDef, { column, header, rangeFilterIndex, table }) }));
|
2886
2932
|
}
|
2887
|
-
const
|
2888
|
-
var _a;
|
2889
|
-
return (_a = columnDef.filterSelectOptions) !== null && _a !== void 0 ? _a : ((isSelectFilter || isMultiSelectFilter || isAutocompleteFilter) &&
|
2890
|
-
facetedUniqueValues
|
2891
|
-
? Array.from(facetedUniqueValues.keys())
|
2892
|
-
.filter((value) => value !== null && value !== undefined)
|
2893
|
-
.sort((a, b) => a.localeCompare(b))
|
2894
|
-
: undefined);
|
2895
|
-
}, [
|
2896
|
-
columnDef.filterSelectOptions,
|
2897
|
-
facetedUniqueValues,
|
2898
|
-
isMultiSelectFilter,
|
2899
|
-
isSelectFilter,
|
2900
|
-
]);
|
2901
|
-
const endAdornment = !isAutocompleteFilter && !isDateFilter && !filterChipLabel ? (jsx(InputAdornment, { position: "end", sx: { mr: isSelectFilter || isMultiSelectFilter ? '20px' : undefined }, children: jsx(Tooltip, { placement: "right", title: (_j = localization.clearFilter) !== null && _j !== void 0 ? _j : '', children: jsx("span", { children: jsx(IconButton, { "aria-label": localization.clearFilter, disabled: !((_k = filterValue === null || filterValue === void 0 ? void 0 : filterValue.toString()) === null || _k === void 0 ? void 0 : _k.length), onClick: handleClear, size: "small", sx: {
|
2933
|
+
const endAdornment = !isAutocompleteFilter && !isDateFilter && !filterChipLabel ? (jsx(InputAdornment, { position: "end", sx: { mr: isSelectFilter || isMultiSelectFilter ? '20px' : undefined }, children: jsx(Tooltip, { placement: "right", title: (_h = localization.clearFilter) !== null && _h !== void 0 ? _h : '', children: jsx("span", { children: jsx(IconButton, { "aria-label": localization.clearFilter, disabled: !((_j = filterValue === null || filterValue === void 0 ? void 0 : filterValue.toString()) === null || _j === void 0 ? void 0 : _j.length), onClick: handleClear, size: "small", sx: {
|
2902
2934
|
height: '2rem',
|
2903
2935
|
transform: 'scale(0.9)',
|
2904
2936
|
width: '2rem',
|
@@ -2914,7 +2946,7 @@ const MRT_FilterTextField = (_a) => {
|
|
2914
2946
|
? { endAdornment, startAdornment }
|
2915
2947
|
: { startAdornment }, fullWidth: true, helperText: showChangeModeButton ? (jsx("label", { children: localization.filterMode.replace('{filterType}',
|
2916
2948
|
// @ts-ignore
|
2917
|
-
localization[`filter${((
|
2949
|
+
localization[`filter${((_k = currentFilterOption === null || currentFilterOption === void 0 ? void 0 : currentFilterOption.charAt(0)) === null || _k === void 0 ? void 0 : _k.toUpperCase()) +
|
2918
2950
|
(currentFilterOption === null || currentFilterOption === void 0 ? void 0 : currentFilterOption.slice(1))}`]) })) : null, inputProps: {
|
2919
2951
|
'aria-label': filterPlaceholder,
|
2920
2952
|
autoComplete: 'new-password', // disable autocomplete and autofill
|
@@ -2948,15 +2980,15 @@ const MRT_FilterTextField = (_a) => {
|
|
2948
2980
|
value: filterValue || null,
|
2949
2981
|
};
|
2950
2982
|
return (jsxs(Fragment, { children: [(filterVariant === null || filterVariant === void 0 ? void 0 : filterVariant.startsWith('time')) ? (jsx(TimePicker, Object.assign({}, commonDatePickerProps, timePickerProps, { slotProps: {
|
2951
|
-
field: Object.assign({ clearable: true, onClear: () => handleClear() }, (
|
2952
|
-
textField: Object.assign(Object.assign({}, commonTextFieldProps), (
|
2983
|
+
field: Object.assign({ clearable: true, onClear: () => handleClear() }, (_l = timePickerProps === null || timePickerProps === void 0 ? void 0 : timePickerProps.slotProps) === null || _l === void 0 ? void 0 : _l.field),
|
2984
|
+
textField: Object.assign(Object.assign({}, commonTextFieldProps), (_m = timePickerProps === null || timePickerProps === void 0 ? void 0 : timePickerProps.slotProps) === null || _m === void 0 ? void 0 : _m.textField),
|
2953
2985
|
} }))) : (filterVariant === null || filterVariant === void 0 ? void 0 : filterVariant.startsWith('datetime')) ? (jsx(DateTimePicker, Object.assign({}, commonDatePickerProps, dateTimePickerProps, { slotProps: {
|
2954
|
-
field: Object.assign({ clearable: true, onClear: () => handleClear() }, (
|
2955
|
-
textField: Object.assign(Object.assign({}, commonTextFieldProps), (
|
2986
|
+
field: Object.assign({ clearable: true, onClear: () => handleClear() }, (_o = dateTimePickerProps === null || dateTimePickerProps === void 0 ? void 0 : dateTimePickerProps.slotProps) === null || _o === void 0 ? void 0 : _o.field),
|
2987
|
+
textField: Object.assign(Object.assign({}, commonTextFieldProps), (_p = dateTimePickerProps === null || dateTimePickerProps === void 0 ? void 0 : dateTimePickerProps.slotProps) === null || _p === void 0 ? void 0 : _p.textField),
|
2956
2988
|
} }))) : (filterVariant === null || filterVariant === void 0 ? void 0 : filterVariant.startsWith('date')) ? (jsx(DatePicker, Object.assign({}, commonDatePickerProps, datePickerProps, { slotProps: {
|
2957
|
-
field: Object.assign({ clearable: true, onClear: () => handleClear() }, (
|
2958
|
-
textField: Object.assign(Object.assign({}, commonTextFieldProps), (
|
2959
|
-
} }))) : isAutocompleteFilter ? (jsx(Autocomplete, Object.assign({ freeSolo: true, getOptionLabel: (option) => getValueAndLabel(option).label, onChange: (_e, newValue) => handleAutocompleteChange(newValue), options: (
|
2989
|
+
field: Object.assign({ clearable: true, onClear: () => handleClear() }, (_q = datePickerProps === null || datePickerProps === void 0 ? void 0 : datePickerProps.slotProps) === null || _q === void 0 ? void 0 : _q.field),
|
2990
|
+
textField: Object.assign(Object.assign({}, commonTextFieldProps), (_r = datePickerProps === null || datePickerProps === void 0 ? void 0 : datePickerProps.slotProps) === null || _r === void 0 ? void 0 : _r.textField),
|
2991
|
+
} }))) : isAutocompleteFilter ? (jsx(Autocomplete, Object.assign({ freeSolo: true, getOptionLabel: (option) => getValueAndLabel(option).label, onChange: (_e, newValue) => handleAutocompleteChange(newValue), options: (_s = dropdownOptions === null || dropdownOptions === void 0 ? void 0 : dropdownOptions.map((option) => getValueAndLabel(option))) !== null && _s !== void 0 ? _s : [] }, autocompleteProps, { renderInput: (builtinTextFieldProps) => {
|
2960
2992
|
var _a;
|
2961
2993
|
return (jsx(TextField, Object.assign({}, builtinTextFieldProps, commonTextFieldProps, { InputProps: Object.assign(Object.assign({}, builtinTextFieldProps.InputProps), { startAdornment: (_a = commonTextFieldProps === null || commonTextFieldProps === void 0 ? void 0 : commonTextFieldProps.InputProps) === null || _a === void 0 ? void 0 : _a.startAdornment }), inputProps: Object.assign(Object.assign({}, builtinTextFieldProps.inputProps), commonTextFieldProps === null || commonTextFieldProps === void 0 ? void 0 : commonTextFieldProps.inputProps), onChange: handleTextFieldChange, onClick: (e) => e.stopPropagation() })));
|
2962
2994
|
}, value: autocompleteValue }))) : (jsx(TextField, Object.assign({ select: isSelectFilter || isMultiSelectFilter }, commonTextFieldProps, { SelectProps: Object.assign({ MenuProps: { disableScrollLock: true }, displayEmpty: true, multiple: isMultiSelectFilter, renderValue: isMultiSelectFilter
|
@@ -2967,7 +2999,7 @@ const MRT_FilterTextField = (_a) => {
|
|
2967
2999
|
: undefined }, commonTextFieldProps.SelectProps), onChange: handleTextFieldChange, onClick: (e) => e.stopPropagation(), value: filterValue !== null && filterValue !== void 0 ? filterValue : '', children: (isSelectFilter || isMultiSelectFilter) && [
|
2968
3000
|
jsx(MenuItem, { disabled: true, divider: true, hidden: true, value: "", children: jsx(Box, { sx: { opacity: 0.5 }, children: filterPlaceholder }) }, "p"),
|
2969
3001
|
...[
|
2970
|
-
(
|
3002
|
+
(_t = textFieldProps.children) !== null && _t !== void 0 ? _t : dropdownOptions === null || dropdownOptions === void 0 ? void 0 : dropdownOptions.map((option, index) => {
|
2971
3003
|
var _a;
|
2972
3004
|
const { label, value } = getValueAndLabel(option);
|
2973
3005
|
return (jsxs(MenuItem, { sx: {
|
@@ -2984,7 +3016,7 @@ const MRT_FilterTextField = (_a) => {
|
|
2984
3016
|
|
2985
3017
|
const MRT_FilterRangeFields = (_a) => {
|
2986
3018
|
var { header, table } = _a, rest = __rest(_a, ["header", "table"]);
|
2987
|
-
return (
|
3019
|
+
return (jsx(Box, Object.assign({}, rest, { sx: (theme) => (Object.assign({ display: 'grid', gap: '1rem', gridTemplateColumns: '1fr 1fr' }, parseFromValuesOrFunc(rest === null || rest === void 0 ? void 0 : rest.sx, theme))), children: [0, 1].map((rangeFilterIndex) => (jsx(MRT_FilterTextField, { header: header, rangeFilterIndex: rangeFilterIndex, table: table }, rangeFilterIndex))) })));
|
2988
3020
|
};
|
2989
3021
|
|
2990
3022
|
const MRT_FilterRangeSlider = (_a) => {
|
@@ -3060,41 +3092,45 @@ const MRT_FilterRangeSlider = (_a) => {
|
|
3060
3092
|
};
|
3061
3093
|
|
3062
3094
|
const MRT_TableHeadCellFilterContainer = (_a) => {
|
3063
|
-
var _b;
|
3064
3095
|
var { header, table } = _a, rest = __rest(_a, ["header", "table"]);
|
3065
3096
|
const { getState, options: { columnFilterDisplayMode }, } = table;
|
3066
3097
|
const { showColumnFilters } = getState();
|
3067
3098
|
const { column } = header;
|
3068
3099
|
const { columnDef } = column;
|
3069
|
-
|
3070
|
-
|
3100
|
+
const { isRangeFilter } = getColumnFilterInfo({ header, table });
|
3101
|
+
return (jsx(Collapse, Object.assign({ in: showColumnFilters || columnFilterDisplayMode === 'popover', mountOnEnter: true, unmountOnExit: true }, rest, { children: columnDef.filterVariant === 'checkbox' ? (jsx(MRT_FilterCheckbox, { column: column, table: table })) : columnDef.filterVariant === 'range-slider' ? (jsx(MRT_FilterRangeSlider, { header: header, table: table })) : isRangeFilter ? (jsx(MRT_FilterRangeFields, { header: header, table: table })) : (jsx(MRT_FilterTextField, { header: header, table: table })) })));
|
3071
3102
|
};
|
3072
3103
|
|
3073
3104
|
const MRT_TableHeadCellFilterLabel = (_a) => {
|
3074
|
-
var _b, _c
|
3105
|
+
var _b, _c;
|
3075
3106
|
var { header, table } = _a, rest = __rest(_a, ["header", "table"]);
|
3076
3107
|
const { options: { columnFilterDisplayMode, icons: { FilterAltIcon }, localization, }, refs: { filterInputRefs }, setShowColumnFilters, } = table;
|
3077
3108
|
const { column } = header;
|
3078
3109
|
const { columnDef } = column;
|
3079
3110
|
const filterValue = column.getFilterValue();
|
3080
3111
|
const [anchorEl, setAnchorEl] = useState(null);
|
3112
|
+
const { currentFilterOption, isMultiSelectFilter, isRangeFilter, isSelectFilter, } = getColumnFilterInfo({ header, table });
|
3113
|
+
const dropdownOptions = useDropdownOptions({ header, table });
|
3114
|
+
const getSelectLabel = (index) => getValueAndLabel(dropdownOptions === null || dropdownOptions === void 0 ? void 0 : dropdownOptions.find((option) => getValueAndLabel(option).value ===
|
3115
|
+
(index !== undefined ? filterValue[index] : filterValue))).label;
|
3081
3116
|
const isFilterActive = (Array.isArray(filterValue) && filterValue.some(Boolean)) ||
|
3082
3117
|
(!!filterValue && !Array.isArray(filterValue));
|
3083
|
-
const isRangeFilter = ((_b = columnDef.filterVariant) === null || _b === void 0 ? void 0 : _b.includes('range')) ||
|
3084
|
-
['between', 'betweenInclusive', 'inNumberRange'].includes(columnDef._filterFn);
|
3085
|
-
const currentFilterOption = columnDef._filterFn;
|
3086
3118
|
const filterTooltip = columnFilterDisplayMode === 'popover' && !isFilterActive
|
3087
|
-
? (
|
3119
|
+
? (_b = localization.filterByColumn) === null || _b === void 0 ? void 0 : _b.replace('{column}', String(columnDef.header))
|
3088
3120
|
: localization.filteringByColumn
|
3089
3121
|
.replace('{column}', String(columnDef.header))
|
3090
3122
|
.replace('{filterType}', currentFilterOption
|
3091
3123
|
? // @ts-ignore
|
3092
|
-
localization[`filter${((
|
3124
|
+
localization[`filter${((_c = currentFilterOption === null || currentFilterOption === void 0 ? void 0 : currentFilterOption.charAt(0)) === null || _c === void 0 ? void 0 : _c.toUpperCase()) +
|
3093
3125
|
(currentFilterOption === null || currentFilterOption === void 0 ? void 0 : currentFilterOption.slice(1))}`]
|
3094
3126
|
: '')
|
3095
3127
|
.replace('{filterValue}', `"${Array.isArray(filterValue)
|
3096
|
-
? filterValue
|
3097
|
-
|
3128
|
+
? filterValue
|
3129
|
+
.map((value, index) => isMultiSelectFilter ? getSelectLabel(index) : value)
|
3130
|
+
.join(`" ${isRangeFilter ? localization.and : localization.or} "`)
|
3131
|
+
: isSelectFilter
|
3132
|
+
? getSelectLabel()
|
3133
|
+
: filterValue}"`)
|
3098
3134
|
.replace('" "', '');
|
3099
3135
|
return (jsxs(Fragment, { children: [jsx(Grow, { in: columnFilterDisplayMode === 'popover' ||
|
3100
3136
|
(!!filterValue && !isRangeFilter) ||
|
@@ -3112,7 +3148,7 @@ const MRT_TableHeadCellFilterLabel = (_a) => {
|
|
3112
3148
|
(_d = (_c = filterInputRefs.current[`${column.id}-0`]) === null || _c === void 0 ? void 0 : _c.select) === null || _d === void 0 ? void 0 : _d.call(_c);
|
3113
3149
|
});
|
3114
3150
|
event.stopPropagation();
|
3115
|
-
}, size: "small" }, rest, { sx: (theme) => (Object.assign({ height: '16px', ml: '4px', opacity: isFilterActive ? 1 : 0.3, p: '8px', transform: 'scale(0.75)', transition: 'all 150ms ease-in-out', width: '16px' }, parseFromValuesOrFunc(rest === null || rest === void 0 ? void 0 : rest.sx, theme))), children: jsx(FilterAltIcon, {}) })) }) }) }), jsx(Popover, { anchorEl: anchorEl, anchorOrigin: {
|
3151
|
+
}, size: "small" }, rest, { sx: (theme) => (Object.assign({ height: '16px', ml: '4px', opacity: isFilterActive ? 1 : 0.3, p: '8px', transform: 'scale(0.75)', transition: 'all 150ms ease-in-out', width: '16px' }, parseFromValuesOrFunc(rest === null || rest === void 0 ? void 0 : rest.sx, theme))), children: jsx(FilterAltIcon, {}) })) }) }) }), columnFilterDisplayMode === 'popover' && (jsx(Popover, { anchorEl: anchorEl, anchorOrigin: {
|
3116
3152
|
horizontal: 'center',
|
3117
3153
|
vertical: 'top',
|
3118
3154
|
}, disableScrollLock: true, onClick: (event) => event.stopPropagation(), onClose: (event) => {
|
@@ -3122,7 +3158,7 @@ const MRT_TableHeadCellFilterLabel = (_a) => {
|
|
3122
3158
|
}, onKeyDown: (event) => event.key === 'Enter' && setAnchorEl(null), open: !!anchorEl, slotProps: { paper: { sx: { overflow: 'visible' } } }, transformOrigin: {
|
3123
3159
|
horizontal: 'center',
|
3124
3160
|
vertical: 'bottom',
|
3125
|
-
}, children: jsx(Box, { sx: { p: '1rem' }, children: jsx(MRT_TableHeadCellFilterContainer, { header: header, table: table }) }) })] }));
|
3161
|
+
}, children: jsx(Box, { sx: { p: '1rem' }, children: jsx(MRT_TableHeadCellFilterContainer, { header: header, table: table }) }) }))] }));
|
3126
3162
|
};
|
3127
3163
|
|
3128
3164
|
const MRT_TableHeadCellGrabHandle = (_a) => {
|
@@ -3302,6 +3338,11 @@ const MRT_TableHeadCell = (_a) => {
|
|
3302
3338
|
setHoveredColumn(columnDef.enableColumnOrdering !== false ? column : null);
|
3303
3339
|
}
|
3304
3340
|
};
|
3341
|
+
const handleDragOver = (e) => {
|
3342
|
+
if (columnDef.enableColumnOrdering !== false) {
|
3343
|
+
e.preventDefault();
|
3344
|
+
}
|
3345
|
+
};
|
3305
3346
|
const HeaderElement = (_b = parseFromValuesOrFunc(columnDef.Header, {
|
3306
3347
|
column,
|
3307
3348
|
header,
|
@@ -3311,7 +3352,7 @@ const MRT_TableHeadCell = (_a) => {
|
|
3311
3352
|
? 'center'
|
3312
3353
|
: theme.direction === 'rtl'
|
3313
3354
|
? 'right'
|
3314
|
-
: 'left', colSpan: header.colSpan, "data-index": staticColumnIndex, "data-pinned": !!isColumnPinned || undefined, onDragEnter: handleDragEnter, ref: (node) => {
|
3355
|
+
: 'left', colSpan: header.colSpan, "data-index": staticColumnIndex, "data-pinned": !!isColumnPinned || undefined, onDragEnter: handleDragEnter, onDragOver: handleDragOver, ref: (node) => {
|
3315
3356
|
var _a;
|
3316
3357
|
if (node) {
|
3317
3358
|
tableHeadCellRefs.current[column.id] = node;
|
@@ -3454,7 +3495,7 @@ const MRT_ToolbarAlertBanner = (_a) => {
|
|
3454
3495
|
|
3455
3496
|
const MRT_TableHead = (_a) => {
|
3456
3497
|
var { columnVirtualizer, table } = _a, rest = __rest(_a, ["columnVirtualizer", "table"]);
|
3457
|
-
const {
|
3498
|
+
const { getState, options: { enableStickyHeader, layoutMode, muiTableHeadProps, positionToolbarAlertBanner, }, refs: { tableHeadRef }, } = table;
|
3458
3499
|
const { isFullScreen, showAlertBanner } = getState();
|
3459
3500
|
const tableHeadProps = Object.assign(Object.assign({}, parseFromValuesOrFunc(muiTableHeadProps, { table })), rest);
|
3460
3501
|
const stickyHeader = enableStickyHeader || isFullScreen;
|
@@ -3465,12 +3506,14 @@ const MRT_TableHead = (_a) => {
|
|
3465
3506
|
tableHeadProps.ref.current = ref;
|
3466
3507
|
}
|
3467
3508
|
}, sx: (theme) => (Object.assign({ display: (layoutMode === null || layoutMode === void 0 ? void 0 : layoutMode.startsWith('grid')) ? 'grid' : undefined, opacity: 0.97, position: stickyHeader ? 'sticky' : 'relative', top: stickyHeader && (layoutMode === null || layoutMode === void 0 ? void 0 : layoutMode.startsWith('grid')) ? 0 : undefined, zIndex: stickyHeader ? 2 : undefined }, parseFromValuesOrFunc(tableHeadProps === null || tableHeadProps === void 0 ? void 0 : tableHeadProps.sx, theme))), children: positionToolbarAlertBanner === 'head-overlay' &&
|
3468
|
-
(showAlertBanner || getSelectedRowModel().rows.length > 0) ? (jsx("tr", { style: {
|
3509
|
+
(showAlertBanner || table.getSelectedRowModel().rows.length > 0) ? (jsx("tr", { style: {
|
3469
3510
|
display: (layoutMode === null || layoutMode === void 0 ? void 0 : layoutMode.startsWith('grid')) ? 'grid' : undefined,
|
3470
3511
|
}, children: jsx("th", { colSpan: table.getVisibleLeafColumns().length, style: {
|
3471
3512
|
display: (layoutMode === null || layoutMode === void 0 ? void 0 : layoutMode.startsWith('grid')) ? 'grid' : undefined,
|
3472
3513
|
padding: 0,
|
3473
|
-
}, children: jsx(MRT_ToolbarAlertBanner, { table: table }) }) })) : (
|
3514
|
+
}, children: jsx(MRT_ToolbarAlertBanner, { table: table }) }) })) : (table
|
3515
|
+
.getHeaderGroups()
|
3516
|
+
.map((headerGroup) => (jsx(MRT_TableHeadRow, { columnVirtualizer: columnVirtualizer, headerGroup: headerGroup, table: table }, headerGroup.id)))) })));
|
3474
3517
|
};
|
3475
3518
|
|
3476
3519
|
const MRT_Table = (_a) => {
|
@@ -3719,6 +3762,9 @@ const MRT_ToolbarDropZone = (_a) => {
|
|
3719
3762
|
const handleDragEnter = (_event) => {
|
3720
3763
|
setHoveredColumn({ id: 'drop-zone' });
|
3721
3764
|
};
|
3765
|
+
const handleDragOver = (e) => {
|
3766
|
+
e.preventDefault();
|
3767
|
+
};
|
3722
3768
|
useEffect(() => {
|
3723
3769
|
var _a;
|
3724
3770
|
if (((_a = table.options.state) === null || _a === void 0 ? void 0 : _a.showToolbarDropZone) !== undefined) {
|
@@ -3728,7 +3774,7 @@ const MRT_ToolbarDropZone = (_a) => {
|
|
3728
3774
|
!grouping.includes(draggingColumn.id));
|
3729
3775
|
}
|
3730
3776
|
}, [enableGrouping, draggingColumn, grouping]);
|
3731
|
-
return (jsx(Fade, { in: showToolbarDropZone, children: jsx(Box, Object.assign({ className: "Mui-ToolbarDropZone", onDragEnter: handleDragEnter }, rest, { sx: (theme) => (Object.assign({ alignItems: 'center', backdropFilter: 'blur(4px)', backgroundColor: alpha(theme.palette.info.main, (hoveredColumn === null || hoveredColumn === void 0 ? void 0 : hoveredColumn.id) === 'drop-zone' ? 0.2 : 0.1), border: `dashed ${theme.palette.info.main} 2px`, boxSizing: 'border-box', display: 'flex', height: '100%', justifyContent: 'center', position: 'absolute', width: '100%', zIndex: 4 }, parseFromValuesOrFunc(rest === null || rest === void 0 ? void 0 : rest.sx, theme))), children: jsx(Typography, { fontStyle: "italic", children: localization.dropToGroupBy.replace('{column}', (_c = (_b = draggingColumn === null || draggingColumn === void 0 ? void 0 : draggingColumn.columnDef) === null || _b === void 0 ? void 0 : _b.header) !== null && _c !== void 0 ? _c : '') }) })) }));
|
3777
|
+
return (jsx(Fade, { in: showToolbarDropZone, children: jsx(Box, Object.assign({ className: "Mui-ToolbarDropZone", onDragEnter: handleDragEnter, onDragOver: handleDragOver }, rest, { sx: (theme) => (Object.assign({ alignItems: 'center', backdropFilter: 'blur(4px)', backgroundColor: alpha(theme.palette.info.main, (hoveredColumn === null || hoveredColumn === void 0 ? void 0 : hoveredColumn.id) === 'drop-zone' ? 0.2 : 0.1), border: `dashed ${theme.palette.info.main} 2px`, boxSizing: 'border-box', display: 'flex', height: '100%', justifyContent: 'center', position: 'absolute', width: '100%', zIndex: 4 }, parseFromValuesOrFunc(rest === null || rest === void 0 ? void 0 : rest.sx, theme))), children: jsx(Typography, { fontStyle: "italic", children: localization.dropToGroupBy.replace('{column}', (_c = (_b = draggingColumn === null || draggingColumn === void 0 ? void 0 : draggingColumn.columnDef) === null || _b === void 0 ? void 0 : _b.header) !== null && _c !== void 0 ? _c : '') }) })) }));
|
3732
3778
|
};
|
3733
3779
|
|
3734
3780
|
const MRT_BottomToolbar = (_a) => {
|
@@ -4073,16 +4119,16 @@ const MRT_TablePaper = (_a) => {
|
|
4073
4119
|
}, style: Object.assign(Object.assign({}, (isFullScreen
|
4074
4120
|
? {
|
4075
4121
|
bottom: 0,
|
4076
|
-
height: '
|
4122
|
+
height: '100dvh',
|
4077
4123
|
left: 0,
|
4078
4124
|
margin: 0,
|
4079
|
-
maxHeight: '
|
4080
|
-
maxWidth: '
|
4125
|
+
maxHeight: '100dvh',
|
4126
|
+
maxWidth: '100dvw',
|
4081
4127
|
padding: 0,
|
4082
4128
|
position: 'fixed',
|
4083
4129
|
right: 0,
|
4084
4130
|
top: 0,
|
4085
|
-
width: '
|
4131
|
+
width: '100dvw',
|
4086
4132
|
zIndex: 999,
|
4087
4133
|
}
|
4088
4134
|
: {})), paperProps === null || paperProps === void 0 ? void 0 : paperProps.style), sx: (theme) => (Object.assign({ backgroundColor: baseBackgroundColor, backgroundImage: 'unset', overflow: 'hidden', transition: 'all 100ms ease-in-out' }, parseFromValuesOrFunc(paperProps === null || paperProps === void 0 ? void 0 : paperProps.sx, theme))), children: [enableTopToolbar &&
|
@@ -4102,5 +4148,5 @@ const MaterialReactTable = (props) => {
|
|
4102
4148
|
return jsx(MRT_TablePaper, { table: table });
|
4103
4149
|
};
|
4104
4150
|
|
4105
|
-
export { MRT_ActionMenuItem, MRT_AggregationFns, MRT_BottomToolbar, MRT_ColumnActionMenu, MRT_ColumnPinningButtons, MRT_CopyButton, MRT_DefaultColumn, MRT_DefaultDisplayColumn, MRT_EditActionButtons, MRT_EditCellTextField, MRT_EditRowModal, MRT_ExpandAllButton, MRT_ExpandButton, MRT_FilterCheckbox, MRT_FilterFns, MRT_FilterOptionMenu, MRT_FilterRangeFields, MRT_FilterRangeSlider, MRT_FilterTextField, MRT_GlobalFilterTextField, MRT_GrabHandleButton, MRT_LinearProgressBar, MRT_RowActionMenu, MRT_RowPinButton, MRT_SelectCheckbox, MRT_ShowHideColumnsButton, MRT_ShowHideColumnsMenu, MRT_ShowHideColumnsMenuItems, MRT_SortingFns, MRT_Table, MRT_TableBody, MRT_TableBodyCell, MRT_TableBodyCellValue, MRT_TableBodyRow, MRT_TableBodyRowGrabHandle, MRT_TableBodyRowPinButton, MRT_TableContainer, MRT_TableDetailPanel, MRT_TableFooter, MRT_TableFooterCell, MRT_TableFooterRow, MRT_TableHead, MRT_TableHeadCell, MRT_TableHeadCellColumnActionsButton, MRT_TableHeadCellFilterContainer, MRT_TableHeadCellFilterLabel, MRT_TableHeadCellGrabHandle, MRT_TableHeadCellResizeHandle, MRT_TableHeadCellSortLabel, MRT_TableHeadRow, MRT_TableLoadingOverlay, MRT_TablePagination, MRT_TablePaper, MRT_ToggleDensePaddingButton, MRT_ToggleFiltersButton, MRT_ToggleFullScreenButton, MRT_ToggleGlobalFilterButton, MRT_ToggleRowActionMenuButton, MRT_ToolbarAlertBanner, MRT_ToolbarDropZone, MRT_ToolbarInternalButtons, MRT_TopToolbar, MaterialReactTable, Memo_MRT_TableBody, Memo_MRT_TableBodyCell, Memo_MRT_TableBodyRow, createMRTColumnHelper, createRow, defaultDisplayColumnProps, flexRender, getAllLeafColumnDefs, getCanRankRows, getColumnId, getDefaultColumnFilterFn, getDefaultColumnOrderIds, getIsRankingRows, getIsRowSelected, getLeadingDisplayColumnIds, getMRT_RowSelectionHandler, getMRT_Rows, getMRT_SelectAllHandler, getTrailingDisplayColumnIds, isCellEditable, mrtFilterOptions, openEditingCell, prepareColumns, rankGlobalFuzzy, reorderColumn, showRowActionsColumn, showRowDragColumn, showRowExpandColumn, showRowNumbersColumn, showRowPinningColumn, showRowSelectionColumn, showRowSpacerColumn, useMRT_ColumnVirtualizer, useMRT_Effects, useMRT_RowVirtualizer, useMRT_Rows, useMRT_TableInstance, useMRT_TableOptions, useMaterialReactTable };
|
4151
|
+
export { MRT_ActionMenuItem, MRT_AggregationFns, MRT_BottomToolbar, MRT_ColumnActionMenu, MRT_ColumnPinningButtons, MRT_CopyButton, MRT_DefaultColumn, MRT_DefaultDisplayColumn, MRT_EditActionButtons, MRT_EditCellTextField, MRT_EditRowModal, MRT_ExpandAllButton, MRT_ExpandButton, MRT_FilterCheckbox, MRT_FilterFns, MRT_FilterOptionMenu, MRT_FilterRangeFields, MRT_FilterRangeSlider, MRT_FilterTextField, MRT_GlobalFilterTextField, MRT_GrabHandleButton, MRT_LinearProgressBar, MRT_RowActionMenu, MRT_RowPinButton, MRT_SelectCheckbox, MRT_ShowHideColumnsButton, MRT_ShowHideColumnsMenu, MRT_ShowHideColumnsMenuItems, MRT_SortingFns, MRT_Table, MRT_TableBody, MRT_TableBodyCell, MRT_TableBodyCellValue, MRT_TableBodyRow, MRT_TableBodyRowGrabHandle, MRT_TableBodyRowPinButton, MRT_TableContainer, MRT_TableDetailPanel, MRT_TableFooter, MRT_TableFooterCell, MRT_TableFooterRow, MRT_TableHead, MRT_TableHeadCell, MRT_TableHeadCellColumnActionsButton, MRT_TableHeadCellFilterContainer, MRT_TableHeadCellFilterLabel, MRT_TableHeadCellGrabHandle, MRT_TableHeadCellResizeHandle, MRT_TableHeadCellSortLabel, MRT_TableHeadRow, MRT_TableLoadingOverlay, MRT_TablePagination, MRT_TablePaper, MRT_ToggleDensePaddingButton, MRT_ToggleFiltersButton, MRT_ToggleFullScreenButton, MRT_ToggleGlobalFilterButton, MRT_ToggleRowActionMenuButton, MRT_ToolbarAlertBanner, MRT_ToolbarDropZone, MRT_ToolbarInternalButtons, MRT_TopToolbar, MaterialReactTable, Memo_MRT_TableBody, Memo_MRT_TableBodyCell, Memo_MRT_TableBodyRow, createMRTColumnHelper, createRow, defaultDisplayColumnProps, flexRender, getAllLeafColumnDefs, getCanRankRows, getColumnFilterInfo, getColumnId, getDefaultColumnFilterFn, getDefaultColumnOrderIds, getIsRankingRows, getIsRowSelected, getLeadingDisplayColumnIds, getMRT_RowSelectionHandler, getMRT_Rows, getMRT_SelectAllHandler, getTrailingDisplayColumnIds, isCellEditable, mrtFilterOptions, openEditingCell, prepareColumns, rankGlobalFuzzy, reorderColumn, showRowActionsColumn, showRowDragColumn, showRowExpandColumn, showRowNumbersColumn, showRowPinningColumn, showRowSelectionColumn, showRowSpacerColumn, useDropdownOptions, useMRT_ColumnVirtualizer, useMRT_Effects, useMRT_RowVirtualizer, useMRT_Rows, useMRT_TableInstance, useMRT_TableOptions, useMaterialReactTable };
|
4106
4152
|
//# sourceMappingURL=index.esm.js.map
|