material-react-table 3.0.0-alpha.0 → 3.0.0-beta.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 +2 -2
- package/dist/index.d.ts +51 -5
- package/dist/index.esm.js +167 -54
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +167 -53
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/body/MRT_TableBodyCell.tsx +15 -1
- package/src/components/body/MRT_TableBodyRow.tsx +3 -2
- package/src/components/buttons/MRT_ToggleRowActionMenuButton.tsx +5 -1
- package/src/components/footer/MRT_TableFooter.tsx +17 -2
- package/src/components/footer/MRT_TableFooterCell.tsx +14 -1
- package/src/components/head/MRT_TableHeadCell.tsx +11 -0
- package/src/components/menus/MRT_RowActionMenu.tsx +26 -16
- package/src/fns/filterFns.ts +43 -35
- package/src/hooks/useMRT_TableOptions.ts +2 -0
- package/src/types.ts +49 -7
- package/src/utils/cell.utils.ts +75 -0
- package/src/utils/style.utils.ts +5 -0
package/README.md
CHANGED
@@ -14,7 +14,7 @@ View [Documentation](https://www.material-react-table.com/)
|
|
14
14
|
<a href="https://star-history.com/#kevinvandy/material-react-table&Date" target="_blank">
|
15
15
|
<img alt="" src="https://badgen.net/github/stars/KevinVandy/material-react-table?color=blue" />
|
16
16
|
</a>
|
17
|
-
<a href="https://github.com/KevinVandy/material-react-table/blob/
|
17
|
+
<a href="https://github.com/KevinVandy/material-react-table/blob/v3/LICENSE" target="_blank">
|
18
18
|
<img alt="" src="https://badgen.net/github/license/KevinVandy/material-react-table?color=blue" />
|
19
19
|
</a>
|
20
20
|
<a
|
@@ -210,6 +210,6 @@ _Open in [Code Sandbox](https://codesandbox.io/s/simple-material-react-table-exa
|
|
210
210
|
|
211
211
|
PRs are Welcome, but please discuss in [GitHub Discussions](https://github.com/KevinVandy/material-react-table/discussions) or the [Discord Server](https://discord.gg/5wqyRx6fnm) first if it is a large change!
|
212
212
|
|
213
|
-
Read the [Contributing Guide](https://github.com/KevinVandy/material-react-table/blob/
|
213
|
+
Read the [Contributing Guide](https://github.com/KevinVandy/material-react-table/blob/v3/CONTRIBUTING.md) to learn how to run this project locally.
|
214
214
|
|
215
215
|
<!-- Use the FORCE, Luke! -->
|
package/dist/index.d.ts
CHANGED
@@ -374,6 +374,7 @@ interface MRT_Localization {
|
|
374
374
|
}
|
375
375
|
interface MRT_Theme {
|
376
376
|
baseBackgroundColor: string;
|
377
|
+
cellNavigationOutlineColor: string;
|
377
378
|
draggingBorderColor: string;
|
378
379
|
matchHighlightColor: string;
|
379
380
|
menuBackgroundColor: string;
|
@@ -387,7 +388,7 @@ interface MRT_RowModel<TData extends MRT_RowData> {
|
|
387
388
|
[key: string]: MRT_Row<TData>;
|
388
389
|
};
|
389
390
|
}
|
390
|
-
type MRT_TableInstance<TData extends MRT_RowData> = Omit<Table<TData>, 'getAllColumns' | 'getAllFlatColumns' | 'getAllLeafColumns' | 'getBottomRows' | 'getCenterLeafColumns' | 'getCenterRows' | 'getColumn' | 'getExpandedRowModel' | 'getFlatHeaders' | 'getHeaderGroups' | 'getLeafHeaders' | 'getLeftLeafColumns' | 'getPaginationRowModel' | 'getPreFilteredRowModel' | 'getPrePaginationRowModel' | 'getRightLeafColumns' | 'getRowModel' | 'getSelectedRowModel' | 'getState' | 'getTopRows' | 'options'> & {
|
391
|
+
type MRT_TableInstance<TData extends MRT_RowData> = Omit<Table<TData>, 'getAllColumns' | 'getAllFlatColumns' | 'getAllLeafColumns' | 'getBottomRows' | 'getCenterLeafColumns' | 'getCenterRows' | 'getColumn' | 'getExpandedRowModel' | 'getFlatHeaders' | 'getFooterGroups' | 'getHeaderGroups' | 'getLeafHeaders' | 'getLeftLeafColumns' | 'getPaginationRowModel' | 'getPreFilteredRowModel' | 'getPrePaginationRowModel' | 'getRightLeafColumns' | 'getRowModel' | 'getSelectedRowModel' | 'getState' | 'getTopRows' | 'options'> & {
|
391
392
|
getAllColumns: () => MRT_Column<TData>[];
|
392
393
|
getAllFlatColumns: () => MRT_Column<TData>[];
|
393
394
|
getAllLeafColumns: () => MRT_Column<TData>[];
|
@@ -397,6 +398,7 @@ type MRT_TableInstance<TData extends MRT_RowData> = Omit<Table<TData>, 'getAllCo
|
|
397
398
|
getColumn: (columnId: string) => MRT_Column<TData>;
|
398
399
|
getExpandedRowModel: () => MRT_RowModel<TData>;
|
399
400
|
getFlatHeaders: () => MRT_Header<TData>[];
|
401
|
+
getFooterGroups: () => MRT_HeaderGroup<TData>[];
|
400
402
|
getHeaderGroups: () => MRT_HeaderGroup<TData>[];
|
401
403
|
getLeafHeaders: () => MRT_Header<TData>[];
|
402
404
|
getLeftLeafColumns: () => MRT_Column<TData>[];
|
@@ -796,6 +798,7 @@ interface MRT_TableOptions<TData extends MRT_RowData> extends Omit<Partial<Table
|
|
796
798
|
enableFullScreenToggle?: boolean;
|
797
799
|
enableGlobalFilterModes?: boolean;
|
798
800
|
enableGlobalFilterRankedResults?: boolean;
|
801
|
+
enableCellNavigation?: boolean;
|
799
802
|
enablePagination?: boolean;
|
800
803
|
enableRowActions?: boolean;
|
801
804
|
enableRowDragging?: boolean;
|
@@ -845,14 +848,23 @@ interface MRT_TableOptions<TData extends MRT_RowData> extends Omit<Partial<Table
|
|
845
848
|
}) | (CircularProgressProps & {
|
846
849
|
Component?: ReactNode;
|
847
850
|
});
|
851
|
+
/**
|
852
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
853
|
+
*/
|
848
854
|
muiColumnActionsButtonProps?: ((props: {
|
849
855
|
column: MRT_Column<TData>;
|
850
856
|
table: MRT_TableInstance<TData>;
|
851
857
|
}) => IconButtonProps) | IconButtonProps;
|
858
|
+
/**
|
859
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
860
|
+
*/
|
852
861
|
muiColumnDragHandleProps?: ((props: {
|
853
862
|
column: MRT_Column<TData>;
|
854
863
|
table: MRT_TableInstance<TData>;
|
855
864
|
}) => IconButtonProps) | IconButtonProps;
|
865
|
+
/**
|
866
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
867
|
+
*/
|
856
868
|
muiCopyButtonProps?: ((props: {
|
857
869
|
cell: MRT_Cell<TData>;
|
858
870
|
column: MRT_Column<TData>;
|
@@ -871,6 +883,9 @@ interface MRT_TableOptions<TData extends MRT_RowData> extends Omit<Partial<Table
|
|
871
883
|
row: MRT_Row<TData>;
|
872
884
|
table: MRT_TableInstance<TData>;
|
873
885
|
}) => DialogProps) | DialogProps;
|
886
|
+
/**
|
887
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
888
|
+
*/
|
874
889
|
muiEditTextFieldProps?: ((props: {
|
875
890
|
cell: MRT_Cell<TData>;
|
876
891
|
column: MRT_Column<TData>;
|
@@ -885,33 +900,54 @@ interface MRT_TableOptions<TData extends MRT_RowData> extends Omit<Partial<Table
|
|
885
900
|
staticRowIndex?: number;
|
886
901
|
table: MRT_TableInstance<TData>;
|
887
902
|
}) => IconButtonProps) | IconButtonProps;
|
903
|
+
/**
|
904
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
905
|
+
*/
|
888
906
|
muiFilterAutocompleteProps?: ((props: {
|
889
907
|
column: MRT_Column<TData>;
|
890
908
|
table: MRT_TableInstance<TData>;
|
891
909
|
}) => AutocompleteProps<any, any, any, any>) | AutocompleteProps<any, any, any, any>;
|
910
|
+
/**
|
911
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
912
|
+
*/
|
892
913
|
muiFilterCheckboxProps?: ((props: {
|
893
914
|
column: MRT_Column<TData>;
|
894
915
|
table: MRT_TableInstance<TData>;
|
895
916
|
}) => CheckboxProps) | CheckboxProps;
|
917
|
+
/**
|
918
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
919
|
+
*/
|
896
920
|
muiFilterDatePickerProps?: ((props: {
|
897
921
|
column: MRT_Column<TData>;
|
898
922
|
rangeFilterIndex?: number;
|
899
923
|
table: MRT_TableInstance<TData>;
|
900
924
|
}) => DatePickerProps<never>) | DatePickerProps<never>;
|
925
|
+
/**
|
926
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
927
|
+
*/
|
901
928
|
muiFilterDateTimePickerProps?: ((props: {
|
902
929
|
column: MRT_Column<TData>;
|
903
930
|
rangeFilterIndex?: number;
|
904
931
|
table: MRT_TableInstance<TData>;
|
905
932
|
}) => DateTimePickerProps<never>) | DateTimePickerProps<never>;
|
933
|
+
/**
|
934
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
935
|
+
*/
|
906
936
|
muiFilterSliderProps?: ((props: {
|
907
937
|
column: MRT_Column<TData>;
|
908
938
|
table: MRT_TableInstance<TData>;
|
909
939
|
}) => SliderProps) | SliderProps;
|
940
|
+
/**
|
941
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
942
|
+
*/
|
910
943
|
muiFilterTextFieldProps?: ((props: {
|
911
944
|
column: MRT_Column<TData>;
|
912
945
|
rangeFilterIndex?: number;
|
913
946
|
table: MRT_TableInstance<TData>;
|
914
947
|
}) => TextFieldProps) | TextFieldProps;
|
948
|
+
/**
|
949
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
950
|
+
*/
|
915
951
|
muiFilterTimePickerProps?: ((props: {
|
916
952
|
column: MRT_Column<TData>;
|
917
953
|
rangeFilterIndex?: number;
|
@@ -955,12 +991,18 @@ interface MRT_TableOptions<TData extends MRT_RowData> extends Omit<Partial<Table
|
|
955
991
|
staticRowIndex?: number;
|
956
992
|
table: MRT_TableInstance<TData>;
|
957
993
|
}) => CheckboxProps | RadioProps) | (CheckboxProps | RadioProps);
|
994
|
+
/**
|
995
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
996
|
+
*/
|
958
997
|
muiSkeletonProps?: ((props: {
|
959
998
|
cell: MRT_Cell<TData>;
|
960
999
|
column: MRT_Column<TData>;
|
961
1000
|
row: MRT_Row<TData>;
|
962
1001
|
table: MRT_TableInstance<TData>;
|
963
1002
|
}) => SkeletonProps) | SkeletonProps;
|
1003
|
+
/**
|
1004
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1005
|
+
*/
|
964
1006
|
muiTableBodyCellProps?: ((props: {
|
965
1007
|
cell: MRT_Cell<TData>;
|
966
1008
|
column: MRT_Column<TData>;
|
@@ -990,6 +1032,9 @@ interface MRT_TableOptions<TData extends MRT_RowData> extends Omit<Partial<Table
|
|
990
1032
|
footerGroup: MRT_HeaderGroup<TData>;
|
991
1033
|
table: MRT_TableInstance<TData>;
|
992
1034
|
}) => TableRowProps) | TableRowProps;
|
1035
|
+
/**
|
1036
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1037
|
+
*/
|
993
1038
|
muiTableHeadCellProps?: ((props: {
|
994
1039
|
column: MRT_Column<TData>;
|
995
1040
|
table: MRT_TableInstance<TData>;
|
@@ -1120,7 +1165,7 @@ interface MRT_TableOptions<TData extends MRT_RowData> extends Omit<Partial<Table
|
|
1120
1165
|
row: MRT_Row<TData>;
|
1121
1166
|
staticRowIndex?: number;
|
1122
1167
|
table: MRT_TableInstance<TData>;
|
1123
|
-
}) => ReactNode[];
|
1168
|
+
}) => ReactNode[] | undefined;
|
1124
1169
|
renderRowActions?: (props: {
|
1125
1170
|
cell: MRT_Cell<TData>;
|
1126
1171
|
row: MRT_Row<TData>;
|
@@ -1166,6 +1211,7 @@ declare const openEditingCell: <TData extends MRT_RowData>({ cell, table, }: {
|
|
1166
1211
|
cell: MRT_Cell<TData>;
|
1167
1212
|
table: MRT_TableInstance<TData>;
|
1168
1213
|
}) => void;
|
1214
|
+
declare const cellNavigation: (e: React.KeyboardEvent<HTMLTableCellElement>) => void;
|
1169
1215
|
|
1170
1216
|
declare const getColumnId: <TData extends MRT_RowData>(columnDef: MRT_ColumnDef<TData>) => string;
|
1171
1217
|
declare const getAllLeafColumnDefs: <TData extends MRT_RowData>(columns: MRT_ColumnDef<TData>[]) => MRT_ColumnDef<TData>[];
|
@@ -1606,7 +1652,7 @@ interface MRT_TableFooterProps<TData extends MRT_RowData> extends TableFooterPro
|
|
1606
1652
|
columnVirtualizer?: MRT_ColumnVirtualizer;
|
1607
1653
|
table: MRT_TableInstance<TData>;
|
1608
1654
|
}
|
1609
|
-
declare const MRT_TableFooter: <TData extends MRT_RowData>({ columnVirtualizer, table, ...rest }: MRT_TableFooterProps<TData>) => react_jsx_runtime.JSX.Element;
|
1655
|
+
declare const MRT_TableFooter: <TData extends MRT_RowData>({ columnVirtualizer, table, ...rest }: MRT_TableFooterProps<TData>) => react_jsx_runtime.JSX.Element | null;
|
1610
1656
|
|
1611
1657
|
interface MRT_TableFooterCellProps<TData extends MRT_RowData> extends TableCellProps {
|
1612
1658
|
footer: MRT_Header<TData>;
|
@@ -1758,7 +1804,7 @@ interface MRT_RowActionMenuProps<TData extends MRT_RowData> extends Partial<Menu
|
|
1758
1804
|
staticRowIndex?: number;
|
1759
1805
|
table: MRT_TableInstance<TData>;
|
1760
1806
|
}
|
1761
|
-
declare const MRT_RowActionMenu: <TData extends MRT_RowData>({ anchorEl, handleEdit, row, setAnchorEl, staticRowIndex, table, ...rest }: MRT_RowActionMenuProps<TData>) => react_jsx_runtime.JSX.Element;
|
1807
|
+
declare const MRT_RowActionMenu: <TData extends MRT_RowData>({ anchorEl, handleEdit, row, setAnchorEl, staticRowIndex, table, ...rest }: MRT_RowActionMenuProps<TData>) => react_jsx_runtime.JSX.Element | null;
|
1762
1808
|
|
1763
1809
|
interface MRT_ShowHideColumnsMenuProps<TData extends MRT_RowData> extends Partial<MenuProps> {
|
1764
1810
|
anchorEl: HTMLElement | null;
|
@@ -1850,4 +1896,4 @@ interface MRT_TopToolbarProps<TData extends MRT_RowData> {
|
|
1850
1896
|
}
|
1851
1897
|
declare const MRT_TopToolbar: <TData extends MRT_RowData>({ table, }: MRT_TopToolbarProps<TData>) => react_jsx_runtime.JSX.Element;
|
1852
1898
|
|
1853
|
-
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_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 };
|
1899
|
+
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_VirtualizerOptions, type MRT_VisibilityState, MaterialReactTable, type MaterialReactTableProps, Memo_MRT_TableBody, Memo_MRT_TableBodyCell, Memo_MRT_TableBodyRow, type Prettify, type Xor, cellNavigation, 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 };
|