material-react-table 3.0.0-alpha.0 → 3.0.0-beta.1
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 +66 -5
- package/dist/index.esm.js +329 -158
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +329 -157
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/components/body/MRT_TableBodyCell.tsx +20 -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 +18 -1
- package/src/components/head/MRT_TableHeadCell.tsx +16 -0
- package/src/components/inputs/MRT_FilterTextField.tsx +4 -0
- package/src/components/menus/MRT_ActionMenuItem.tsx +1 -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 +55 -7
- package/src/utils/cell.utils.ts +137 -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;
|
@@ -961,6 +997,9 @@ interface MRT_TableOptions<TData extends MRT_RowData> extends Omit<Partial<Table
|
|
961
997
|
row: MRT_Row<TData>;
|
962
998
|
table: MRT_TableInstance<TData>;
|
963
999
|
}) => SkeletonProps) | SkeletonProps;
|
1000
|
+
/**
|
1001
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1002
|
+
*/
|
964
1003
|
muiTableBodyCellProps?: ((props: {
|
965
1004
|
cell: MRT_Cell<TData>;
|
966
1005
|
column: MRT_Column<TData>;
|
@@ -990,6 +1029,9 @@ interface MRT_TableOptions<TData extends MRT_RowData> extends Omit<Partial<Table
|
|
990
1029
|
footerGroup: MRT_HeaderGroup<TData>;
|
991
1030
|
table: MRT_TableInstance<TData>;
|
992
1031
|
}) => TableRowProps) | TableRowProps;
|
1032
|
+
/**
|
1033
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1034
|
+
*/
|
993
1035
|
muiTableHeadCellProps?: ((props: {
|
994
1036
|
column: MRT_Column<TData>;
|
995
1037
|
table: MRT_TableInstance<TData>;
|
@@ -1071,6 +1113,9 @@ interface MRT_TableOptions<TData extends MRT_RowData> extends Omit<Partial<Table
|
|
1071
1113
|
renderCaption?: ((props: {
|
1072
1114
|
table: MRT_TableInstance<TData>;
|
1073
1115
|
}) => ReactNode) | ReactNode;
|
1116
|
+
/**
|
1117
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1118
|
+
*/
|
1074
1119
|
renderCellActionMenuItems?: (props: {
|
1075
1120
|
cell: MRT_Cell<TData>;
|
1076
1121
|
closeMenu: () => void;
|
@@ -1081,12 +1126,18 @@ interface MRT_TableOptions<TData extends MRT_RowData> extends Omit<Partial<Table
|
|
1081
1126
|
staticRowIndex?: number;
|
1082
1127
|
table: MRT_TableInstance<TData>;
|
1083
1128
|
}) => ReactNode[];
|
1129
|
+
/**
|
1130
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1131
|
+
*/
|
1084
1132
|
renderColumnActionsMenuItems?: (props: {
|
1085
1133
|
closeMenu: () => void;
|
1086
1134
|
column: MRT_Column<TData>;
|
1087
1135
|
internalColumnMenuItems: ReactNode[];
|
1088
1136
|
table: MRT_TableInstance<TData>;
|
1089
1137
|
}) => ReactNode[];
|
1138
|
+
/**
|
1139
|
+
* @deprecated Specify this in the `defaultColumn` table option instead if you want to apply to all columns.
|
1140
|
+
*/
|
1090
1141
|
renderColumnFilterModeMenuItems?: (props: {
|
1091
1142
|
column: MRT_Column<TData>;
|
1092
1143
|
internalFilterOptions: MRT_InternalFilterOption[];
|
@@ -1120,7 +1171,7 @@ interface MRT_TableOptions<TData extends MRT_RowData> extends Omit<Partial<Table
|
|
1120
1171
|
row: MRT_Row<TData>;
|
1121
1172
|
staticRowIndex?: number;
|
1122
1173
|
table: MRT_TableInstance<TData>;
|
1123
|
-
}) => ReactNode[];
|
1174
|
+
}) => ReactNode[] | undefined;
|
1124
1175
|
renderRowActions?: (props: {
|
1125
1176
|
cell: MRT_Cell<TData>;
|
1126
1177
|
row: MRT_Row<TData>;
|
@@ -1166,6 +1217,16 @@ declare const openEditingCell: <TData extends MRT_RowData>({ cell, table, }: {
|
|
1166
1217
|
cell: MRT_Cell<TData>;
|
1167
1218
|
table: MRT_TableInstance<TData>;
|
1168
1219
|
}) => void;
|
1220
|
+
declare const cellNavigation: <TData extends MRT_RowData = MRT_RowData>({ cell, cellElements, cellValue, containerElement, event, header, parentElement, table, }: {
|
1221
|
+
cell?: MRT_Cell<TData>;
|
1222
|
+
header?: MRT_Header<TData>;
|
1223
|
+
cellElements?: Array<HTMLTableCellElement>;
|
1224
|
+
cellValue?: string;
|
1225
|
+
containerElement?: HTMLTableElement;
|
1226
|
+
event: React.KeyboardEvent<HTMLTableCellElement>;
|
1227
|
+
parentElement?: HTMLTableRowElement;
|
1228
|
+
table: MRT_TableInstance<TData>;
|
1229
|
+
}) => void;
|
1169
1230
|
|
1170
1231
|
declare const getColumnId: <TData extends MRT_RowData>(columnDef: MRT_ColumnDef<TData>) => string;
|
1171
1232
|
declare const getAllLeafColumnDefs: <TData extends MRT_RowData>(columns: MRT_ColumnDef<TData>[]) => MRT_ColumnDef<TData>[];
|
@@ -1606,7 +1667,7 @@ interface MRT_TableFooterProps<TData extends MRT_RowData> extends TableFooterPro
|
|
1606
1667
|
columnVirtualizer?: MRT_ColumnVirtualizer;
|
1607
1668
|
table: MRT_TableInstance<TData>;
|
1608
1669
|
}
|
1609
|
-
declare const MRT_TableFooter: <TData extends MRT_RowData>({ columnVirtualizer, table, ...rest }: MRT_TableFooterProps<TData>) => react_jsx_runtime.JSX.Element;
|
1670
|
+
declare const MRT_TableFooter: <TData extends MRT_RowData>({ columnVirtualizer, table, ...rest }: MRT_TableFooterProps<TData>) => react_jsx_runtime.JSX.Element | null;
|
1610
1671
|
|
1611
1672
|
interface MRT_TableFooterCellProps<TData extends MRT_RowData> extends TableCellProps {
|
1612
1673
|
footer: MRT_Header<TData>;
|
@@ -1758,7 +1819,7 @@ interface MRT_RowActionMenuProps<TData extends MRT_RowData> extends Partial<Menu
|
|
1758
1819
|
staticRowIndex?: number;
|
1759
1820
|
table: MRT_TableInstance<TData>;
|
1760
1821
|
}
|
1761
|
-
declare const MRT_RowActionMenu: <TData extends MRT_RowData>({ anchorEl, handleEdit, row, setAnchorEl, staticRowIndex, table, ...rest }: MRT_RowActionMenuProps<TData>) => react_jsx_runtime.JSX.Element;
|
1822
|
+
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
1823
|
|
1763
1824
|
interface MRT_ShowHideColumnsMenuProps<TData extends MRT_RowData> extends Partial<MenuProps> {
|
1764
1825
|
anchorEl: HTMLElement | null;
|
@@ -1850,4 +1911,4 @@ interface MRT_TopToolbarProps<TData extends MRT_RowData> {
|
|
1850
1911
|
}
|
1851
1912
|
declare const MRT_TopToolbar: <TData extends MRT_RowData>({ table, }: MRT_TopToolbarProps<TData>) => react_jsx_runtime.JSX.Element;
|
1852
1913
|
|
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 };
|
1914
|
+
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 };
|