material-react-table 2.4.0 → 2.5.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/dist/index.d.ts CHANGED
@@ -1,10 +1,8 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { CSSProperties, MutableRefObject, Dispatch, SetStateAction, ReactNode, RefObject, DragEventHandler, MouseEvent } from 'react';
3
3
  import * as _tanstack_react_table from '@tanstack/react-table';
4
- import { Row, AccessorFn, DeepKeys, DeepValue, Table, TableState, ColumnDef, Column, Header, HeaderGroup, Cell, AggregationFn, SortingFn, FilterFn, TableOptions, OnChangeFn, RowPinningPosition, ColumnOrderState, GroupingState, Renderable } from '@tanstack/react-table';
5
- export { ColumnFiltersState as MRT_ColumnFiltersState, ColumnOrderState as MRT_ColumnOrderState, ColumnPinningState as MRT_ColumnPinningState, ColumnSizingInfoState as MRT_ColumnSizingInfoState, ColumnSizingState as MRT_ColumnSizingState, ExpandedState as MRT_ExpandedState, GroupingState as MRT_GroupingState, PaginationState as MRT_PaginationState, RowSelectionState as MRT_RowSelectionState, SortingState as MRT_SortingState, Updater as MRT_Updater, VisibilityState as MRT_VisibilityState } from '@tanstack/react-table';
6
- import { Virtualizer, VirtualizerOptions, VirtualItem, Range } from '@tanstack/react-virtual';
7
- export { VirtualItem as MRT_VirtualItem, Virtualizer as MRT_Virtualizer, VirtualizerOptions as MRT_VirtualizerOptions } from '@tanstack/react-virtual';
4
+ import { Row, ColumnFiltersState, ColumnOrderState, ColumnPinningState, ColumnSizingInfoState, ColumnSizingState, ExpandedState, GroupingState, PaginationState, RowSelectionState, SortingState, Updater, VisibilityState, AccessorFn, DeepKeys, DeepValue, Table, TableState, ColumnDef, Column, Header, HeaderGroup, Cell, AggregationFn, SortingFn, FilterFn, TableOptions, OnChangeFn, RowPinningPosition, Renderable } from '@tanstack/react-table';
5
+ import { VirtualItem, VirtualizerOptions, Virtualizer, Range } from '@tanstack/react-virtual';
8
6
  import { AlertProps } from '@mui/material/Alert';
9
7
  import { AutocompleteProps } from '@mui/material/Autocomplete';
10
8
  import { BoxProps } from '@mui/material/Box';
@@ -177,12 +175,32 @@ type Xor<A, B> = Prettify<A & {
177
175
  type MRT_DensityState = 'comfortable' | 'compact' | 'spacious';
178
176
  type MRT_ColumnFilterFnsState = Record<string, MRT_FilterOption>;
179
177
  type MRT_RowData = Record<string, any>;
180
-
178
+ type MRT_ColumnFiltersState = ColumnFiltersState;
179
+ type MRT_ColumnOrderState = ColumnOrderState;
180
+ type MRT_ColumnPinningState = ColumnPinningState;
181
+ type MRT_ColumnSizingInfoState = ColumnSizingInfoState;
182
+ type MRT_ColumnSizingState = ColumnSizingState;
183
+ type MRT_ExpandedState = ExpandedState;
184
+ type MRT_GroupingState = GroupingState;
185
+ type MRT_PaginationState = PaginationState;
186
+ type MRT_RowSelectionState = RowSelectionState;
187
+ type MRT_SortingState = SortingState;
188
+ type MRT_Updater<T> = Updater<T>;
189
+ type MRT_VirtualItem = VirtualItem;
190
+ type MRT_VisibilityState = VisibilityState;
191
+ type MRT_VirtualizerOptions<TScrollElement extends Element | Window = Element | Window, TItemElement extends Element = Element> = VirtualizerOptions<TScrollElement, TItemElement>;
181
192
  type MRT_ColumnVirtualizer<TScrollElement extends Element | Window = HTMLDivElement, TItemElement extends Element = HTMLTableCellElement> = Virtualizer<TScrollElement, TItemElement> & {
193
+ virtualColumns: MRT_VirtualItem[];
182
194
  virtualPaddingLeft?: number;
183
195
  virtualPaddingRight?: number;
184
196
  };
185
- type MRT_RowVirtualizer<TScrollElement extends Element | Window = HTMLDivElement, TItemElement extends Element = HTMLTableRowElement> = Virtualizer<TScrollElement, TItemElement>;
197
+ type MRT_RowVirtualizer<TScrollElement extends Element | Window = HTMLDivElement, TItemElement extends Element = HTMLTableRowElement> = Virtualizer<TScrollElement, TItemElement> & {
198
+ virtualRows: MRT_VirtualItem[];
199
+ };
200
+ /**
201
+ * @deprecated use `MRT_ColumnVirtualizer` or `MRT_RowVirtualizer` instead
202
+ */
203
+ type MRT_Virtualizer<_TScrollElement = any, _TItemElement = any> = MRT_ColumnVirtualizer | MRT_RowVirtualizer;
186
204
  type MRT_ColumnHelper<TData extends MRT_RowData> = {
187
205
  accessor: <TAccessor extends AccessorFn<TData> | DeepKeys<TData>, TValue extends TAccessor extends AccessorFn<TData, infer TReturn> ? TReturn : TAccessor extends DeepKeys<TData> ? DeepValue<TData, TAccessor> : never>(accessor: TAccessor, column: MRT_DisplayColumnDef<TData, TValue>) => MRT_ColumnDef<TData, TValue>;
188
206
  display: (column: MRT_DisplayColumnDef<TData>) => MRT_ColumnDef<TData>;
@@ -382,6 +400,7 @@ type MRT_ColumnDef<TData extends MRT_RowData, TValue = unknown> = Omit<ColumnDef
382
400
  renderedCellValue: ReactNode;
383
401
  row: MRT_Row<TData>;
384
402
  rowRef?: RefObject<HTMLTableRowElement>;
403
+ staticRowIndex?: number;
385
404
  table: MRT_TableInstance<TData>;
386
405
  }) => ReactNode;
387
406
  Edit?: (props: {
@@ -593,9 +612,12 @@ type MRT_Header<TData extends MRT_RowData> = Omit<Header<TData, unknown>, 'colum
593
612
  type MRT_HeaderGroup<TData extends MRT_RowData> = Omit<HeaderGroup<TData>, 'headers'> & {
594
613
  headers: MRT_Header<TData>[];
595
614
  };
596
- type MRT_Row<TData extends MRT_RowData> = Omit<Row<TData>, '_valuesCache' | 'getAllCells' | 'getVisibleCells' | 'subRows'> & {
615
+ type MRT_Row<TData extends MRT_RowData> = Omit<Row<TData>, '_valuesCache' | 'getAllCells' | 'getParentRow' | 'getParentRows' | 'getRow' | 'getVisibleCells' | 'subRows'> & {
597
616
  _valuesCache: Record<LiteralUnion<string & DeepKeys<TData>>, any>;
598
617
  getAllCells: () => MRT_Cell<TData>[];
618
+ getParentRow: () => MRT_Row<TData> | null;
619
+ getParentRows: () => MRT_Row<TData>[];
620
+ getRow: () => MRT_Row<TData>;
599
621
  getVisibleCells: () => MRT_Cell<TData>[];
600
622
  subRows?: MRT_Row<TData>[];
601
623
  };
@@ -628,7 +650,7 @@ type MRT_DisplayColumnIds = 'mrt-row-actions' | 'mrt-row-drag' | 'mrt-row-expand
628
650
  type MRT_TableOptions<TData extends MRT_RowData> = Omit<Partial<TableOptions<TData>>, 'columns' | 'data' | 'defaultColumn' | 'enableRowSelection' | 'expandRowsFn' | 'getRowId' | 'globalFilterFn' | 'initialState' | 'onStateChange' | 'state'> & {
629
651
  columnFilterDisplayMode?: 'custom' | 'popover' | 'subheader';
630
652
  columnFilterModeOptions?: Array<LiteralUnion<string & MRT_FilterOption>> | null;
631
- columnVirtualizerInstanceRef?: MutableRefObject<MRT_ColumnVirtualizer | null>;
653
+ columnVirtualizerInstanceRef?: MutableRefObject<MRT_ColumnVirtualizer | MRT_Virtualizer | null>;
632
654
  columnVirtualizerOptions?: ((props: {
633
655
  table: MRT_TableInstance<TData>;
634
656
  }) => Partial<VirtualizerOptions<HTMLDivElement, HTMLTableCellElement>>) | Partial<VirtualizerOptions<HTMLDivElement, HTMLTableCellElement>>;
@@ -802,6 +824,7 @@ type MRT_TableOptions<TData extends MRT_RowData> = Omit<Partial<TableOptions<TDa
802
824
  table: MRT_TableInstance<TData>;
803
825
  }) => Partial<PaginationProps & {
804
826
  SelectProps?: Partial<SelectProps>;
827
+ disabled?: boolean;
805
828
  rowsPerPageOptions?: {
806
829
  label: string;
807
830
  value: number;
@@ -809,6 +832,7 @@ type MRT_TableOptions<TData extends MRT_RowData> = Omit<Partial<TableOptions<TDa
809
832
  showRowsPerPage?: boolean;
810
833
  }>) | Partial<PaginationProps & {
811
834
  SelectProps?: Partial<SelectProps>;
835
+ disabled?: boolean;
812
836
  rowsPerPageOptions?: {
813
837
  label: string;
814
838
  value: number;
@@ -827,6 +851,7 @@ type MRT_TableOptions<TData extends MRT_RowData> = Omit<Partial<TableOptions<TDa
827
851
  }) => CheckboxProps) | CheckboxProps;
828
852
  muiSelectCheckboxProps?: ((props: {
829
853
  row: MRT_Row<TData>;
854
+ staticRowIndex?: number;
830
855
  table: MRT_TableInstance<TData>;
831
856
  }) => CheckboxProps | RadioProps) | (CheckboxProps | RadioProps);
832
857
  muiSkeletonProps?: ((props: {
@@ -1001,7 +1026,7 @@ type MRT_TableOptions<TData extends MRT_RowData> = Omit<Partial<TableOptions<TDa
1001
1026
  rowCount?: number;
1002
1027
  rowNumberDisplayMode?: 'original' | 'static';
1003
1028
  rowPinningDisplayMode?: 'bottom' | 'select-bottom' | 'select-sticky' | 'select-top' | 'sticky' | 'top' | 'top-and-bottom';
1004
- rowVirtualizerInstanceRef?: MutableRefObject<MRT_RowVirtualizer | null>;
1029
+ rowVirtualizerInstanceRef?: MutableRefObject<MRT_RowVirtualizer | MRT_Virtualizer | null>;
1005
1030
  rowVirtualizerOptions?: ((props: {
1006
1031
  table: MRT_TableInstance<TData>;
1007
1032
  }) => Partial<VirtualizerOptions<HTMLDivElement, HTMLTableRowElement>>) | Partial<VirtualizerOptions<HTMLDivElement, HTMLTableRowElement>>;
@@ -1021,10 +1046,9 @@ declare const MaterialReactTable: <TData extends MRT_RowData>(props: Props$U<TDa
1021
1046
  interface Props$T<TData extends MRT_RowData> extends TableBodyProps {
1022
1047
  columnVirtualizer?: MRT_ColumnVirtualizer;
1023
1048
  table: MRT_TableInstance<TData>;
1024
- virtualColumns?: VirtualItem[];
1025
1049
  }
1026
- declare const MRT_TableBody: <TData extends MRT_RowData>({ columnVirtualizer, table, virtualColumns, ...rest }: Props$T<TData>) => react_jsx_runtime.JSX.Element;
1027
- declare const Memo_MRT_TableBody: <TData extends MRT_RowData>({ columnVirtualizer, table, virtualColumns, ...rest }: Props$T<TData>) => react_jsx_runtime.JSX.Element;
1050
+ declare const MRT_TableBody: <TData extends MRT_RowData>({ columnVirtualizer, table, ...rest }: Props$T<TData>) => react_jsx_runtime.JSX.Element;
1051
+ declare const Memo_MRT_TableBody: <TData extends MRT_RowData>({ columnVirtualizer, table, ...rest }: Props$T<TData>) => react_jsx_runtime.JSX.Element;
1028
1052
 
1029
1053
  interface Props$S<TData extends MRT_RowData> extends TableCellProps {
1030
1054
  cell: MRT_Cell<TData>;
@@ -1040,9 +1064,11 @@ declare const Memo_MRT_TableBodyCell: <TData extends MRT_RowData>({ cell, measur
1040
1064
 
1041
1065
  interface Props$R<TData extends MRT_RowData> {
1042
1066
  cell: MRT_Cell<TData>;
1067
+ rowRef?: RefObject<HTMLTableRowElement>;
1068
+ staticRowIndex?: number;
1043
1069
  table: MRT_TableInstance<TData>;
1044
1070
  }
1045
- declare const MRT_TableBodyCellValue: <TData extends MRT_RowData>({ cell, table, }: Props$R<TData>) => ReactNode;
1071
+ declare const MRT_TableBodyCellValue: <TData extends MRT_RowData>({ cell, rowRef, staticRowIndex, table, }: Props$R<TData>) => ReactNode;
1046
1072
 
1047
1073
  interface Props$Q<TData extends MRT_RowData> {
1048
1074
  columnVirtualizer?: MRT_ColumnVirtualizer;
@@ -1052,11 +1078,10 @@ interface Props$Q<TData extends MRT_RowData> {
1052
1078
  row: MRT_Row<TData>;
1053
1079
  rowIndex: number;
1054
1080
  table: MRT_TableInstance<TData>;
1055
- virtualColumns?: VirtualItem[];
1056
1081
  virtualRow?: VirtualItem;
1057
1082
  }
1058
- declare const MRT_TableBodyRow: <TData extends MRT_RowData>({ columnVirtualizer, measureElement, numRows, pinnedRowIds, row, rowIndex, table, virtualColumns, virtualRow, }: Props$Q<TData>) => react_jsx_runtime.JSX.Element;
1059
- declare const Memo_MRT_TableBodyRow: <TData extends MRT_RowData>({ columnVirtualizer, measureElement, numRows, pinnedRowIds, row, rowIndex, table, virtualColumns, virtualRow, }: Props$Q<TData>) => react_jsx_runtime.JSX.Element;
1083
+ declare const MRT_TableBodyRow: <TData extends MRT_RowData>({ columnVirtualizer, measureElement, numRows, pinnedRowIds, row, rowIndex, table, virtualRow, }: Props$Q<TData>) => react_jsx_runtime.JSX.Element;
1084
+ declare const Memo_MRT_TableBodyRow: <TData extends MRT_RowData>({ columnVirtualizer, measureElement, numRows, pinnedRowIds, row, rowIndex, table, virtualRow, }: Props$Q<TData>) => react_jsx_runtime.JSX.Element;
1060
1085
 
1061
1086
  interface Props$P<TData extends MRT_RowData> extends IconButtonProps {
1062
1087
  row: MRT_Row<TData>;
@@ -1253,8 +1278,8 @@ declare const prepareColumns: <TData extends MRT_RowData>({ aggregationFns, colu
1253
1278
  basic: _tanstack_react_table.SortingFn<any>;
1254
1279
  } & Record<string, _tanstack_react_table.SortingFn<any>>;
1255
1280
  }) => MRT_DefinedColumnDef<TData>[];
1256
- declare const reorderColumn: <TData extends MRT_RowData>(draggedColumn: MRT_Column<TData>, targetColumn: MRT_Column<TData>, columnOrder: ColumnOrderState) => ColumnOrderState;
1257
- declare const showExpandColumn: <TData extends MRT_RowData>(props: MRT_TableOptions<TData>, grouping?: GroupingState) => boolean;
1281
+ declare const reorderColumn: <TData extends MRT_RowData>(draggedColumn: MRT_Column<TData>, targetColumn: MRT_Column<TData>, columnOrder: _tanstack_react_table.ColumnOrderState) => _tanstack_react_table.ColumnOrderState;
1282
+ declare const showExpandColumn: <TData extends MRT_RowData>(props: MRT_TableOptions<TData>, grouping?: MRT_GroupingState) => boolean;
1258
1283
  declare const getLeadingDisplayColumnIds: <TData extends MRT_RowData>(props: MRT_TableOptions<TData>) => MRT_DisplayColumnIds[];
1259
1284
  declare const getTrailingDisplayColumnIds: <TData extends MRT_RowData>(props: MRT_TableOptions<TData>) => MRT_DisplayColumnIds[];
1260
1285
  declare const getDefaultColumnOrderIds: <TData extends MRT_RowData>(props: MRT_TableOptions<TData>) => string[];
@@ -1268,7 +1293,7 @@ declare const getCanRankRows: <TData extends MRT_RowData>(table: MRT_TableInstan
1268
1293
  declare const parseFromValuesOrFunc: <T, U>(fn: T | ((arg: U) => T) | undefined, arg: U) => T | undefined;
1269
1294
  declare const flexRender: (Comp: Renderable<any>, props: any) => JSX.Element | ReactNode;
1270
1295
  declare const createRow: <TData extends MRT_RowData>(table: MRT_TableInstance<TData>, originalRow?: TData | undefined) => MRT_Row<TData>;
1271
- declare const extraIndexRangeExtractor: (range: Range, draggingIndex: number) => number[];
1296
+ declare const extraIndexRangeExtractor: (range: Range, draggingIndex?: number) => number[];
1272
1297
  declare function createMRTColumnHelper<TData extends MRT_RowData>(): MRT_ColumnHelper<TData>;
1273
1298
  declare const getValueAndLabel: (option: {
1274
1299
  label?: string;
@@ -1282,9 +1307,8 @@ declare const getValueAndLabel: (option: {
1282
1307
  interface Props$z<TData extends MRT_RowData> extends TableFooterProps {
1283
1308
  columnVirtualizer?: MRT_ColumnVirtualizer;
1284
1309
  table: MRT_TableInstance<TData>;
1285
- virtualColumns?: VirtualItem[];
1286
1310
  }
1287
- declare const MRT_TableFooter: <TData extends MRT_RowData>({ columnVirtualizer, table, virtualColumns, ...rest }: Props$z<TData>) => react_jsx_runtime.JSX.Element;
1311
+ declare const MRT_TableFooter: <TData extends MRT_RowData>({ columnVirtualizer, table, ...rest }: Props$z<TData>) => react_jsx_runtime.JSX.Element;
1288
1312
 
1289
1313
  interface Props$y<TData extends MRT_RowData> extends TableCellProps {
1290
1314
  footer: MRT_Header<TData>;
@@ -1296,16 +1320,14 @@ interface Props$x<TData extends MRT_RowData> extends TableRowProps {
1296
1320
  columnVirtualizer?: MRT_ColumnVirtualizer;
1297
1321
  footerGroup: MRT_HeaderGroup<TData>;
1298
1322
  table: MRT_TableInstance<TData>;
1299
- virtualColumns?: VirtualItem[];
1300
1323
  }
1301
- declare const MRT_TableFooterRow: <TData extends MRT_RowData>({ columnVirtualizer, footerGroup, table, virtualColumns, ...rest }: Props$x<TData>) => react_jsx_runtime.JSX.Element | null;
1324
+ declare const MRT_TableFooterRow: <TData extends MRT_RowData>({ columnVirtualizer, footerGroup, table, ...rest }: Props$x<TData>) => react_jsx_runtime.JSX.Element | null;
1302
1325
 
1303
1326
  interface Props$w<TData extends MRT_RowData> extends TableHeadProps {
1304
1327
  columnVirtualizer?: MRT_ColumnVirtualizer;
1305
1328
  table: MRT_TableInstance<TData>;
1306
- virtualColumns?: VirtualItem[];
1307
1329
  }
1308
- declare const MRT_TableHead: <TData extends MRT_RowData>({ columnVirtualizer, table, virtualColumns, ...rest }: Props$w<TData>) => react_jsx_runtime.JSX.Element;
1330
+ declare const MRT_TableHead: <TData extends MRT_RowData>({ columnVirtualizer, table, ...rest }: Props$w<TData>) => react_jsx_runtime.JSX.Element;
1309
1331
 
1310
1332
  interface Props$v<TData extends MRT_RowData> extends TableCellProps {
1311
1333
  header: MRT_Header<TData>;
@@ -1354,16 +1376,15 @@ interface Props$o<TData extends MRT_RowData> extends TableRowProps {
1354
1376
  columnVirtualizer?: MRT_ColumnVirtualizer;
1355
1377
  headerGroup: MRT_HeaderGroup<TData>;
1356
1378
  table: MRT_TableInstance<TData>;
1357
- virtualColumns?: VirtualItem[];
1358
1379
  }
1359
- declare const MRT_TableHeadRow: <TData extends MRT_RowData>({ columnVirtualizer, headerGroup, table, virtualColumns, ...rest }: Props$o<TData>) => react_jsx_runtime.JSX.Element;
1380
+ declare const MRT_TableHeadRow: <TData extends MRT_RowData>({ columnVirtualizer, headerGroup, table, ...rest }: Props$o<TData>) => react_jsx_runtime.JSX.Element;
1360
1381
 
1361
1382
  declare const useMRT_ColumnVirtualizer: <TData extends MRT_RowData, TScrollElement extends Element | Window = HTMLDivElement, TItemElement extends Element = HTMLTableCellElement>(table: MRT_TableInstance<TData>) => MRT_ColumnVirtualizer | undefined;
1362
1383
 
1363
1384
  interface Params<TData extends MRT_RowData> {
1364
- columnOrder: ColumnOrderState;
1385
+ columnOrder: MRT_ColumnOrderState;
1365
1386
  creatingRow: MRT_Row<TData> | null;
1366
- grouping: GroupingState;
1387
+ grouping: MRT_GroupingState;
1367
1388
  tableOptions: MRT_DefinedTableOptions<TData>;
1368
1389
  }
1369
1390
  declare const useMRT_DisplayColumns: <TData extends MRT_RowData>(params: Params<TData>) => MRT_ColumnDef<TData>[];
@@ -1437,9 +1458,10 @@ declare const MRT_GlobalFilterTextField: <TData extends MRT_RowData>({ table, ..
1437
1458
  interface Props$h<TData extends MRT_RowData> extends CheckboxProps {
1438
1459
  row?: MRT_Row<TData>;
1439
1460
  selectAll?: boolean;
1461
+ staticRowIndex?: number;
1440
1462
  table: MRT_TableInstance<TData>;
1441
1463
  }
1442
- declare const MRT_SelectCheckbox: <TData extends MRT_RowData>({ row, selectAll, table, ...rest }: Props$h<TData>) => react_jsx_runtime.JSX.Element;
1464
+ declare const MRT_SelectCheckbox: <TData extends MRT_RowData>({ row, selectAll, staticRowIndex, table, ...rest }: Props$h<TData>) => react_jsx_runtime.JSX.Element;
1443
1465
 
1444
1466
  declare const commonMenuItemStyles: {
1445
1467
  alignItems: string;
@@ -1564,6 +1586,7 @@ interface Props$5<TData extends MRT_RowData> extends LinearProgressProps {
1564
1586
  declare const MRT_LinearProgressBar: <TData extends MRT_RowData>({ isTopToolbar, table, ...rest }: Props$5<TData>) => react_jsx_runtime.JSX.Element;
1565
1587
 
1566
1588
  interface Props$4<TData extends MRT_RowData> extends Partial<PaginationProps & {
1589
+ SelectProps?: Partial<SelectProps>;
1567
1590
  disabled?: boolean;
1568
1591
  rowsPerPageOptions?: {
1569
1592
  label: string;
@@ -1599,4 +1622,4 @@ declare const MRT_TopToolbar: <TData extends MRT_RowData>({ table, }: Props<TDat
1599
1622
 
1600
1623
  declare const useMaterialReactTable: <TData extends MRT_RowData>(tableOptions: MRT_TableOptions<TData>) => MRT_TableInstance<TData>;
1601
1624
 
1602
- export { type LiteralUnion, type MRT_AggregationFn, MRT_AggregationFns, type MRT_AggregationOption, MRT_BottomToolbar, type MRT_Cell, type MRT_Column, MRT_ColumnActionMenu, type MRT_ColumnDef, type MRT_ColumnFilterFnsState, type MRT_ColumnHelper, MRT_ColumnPinningButtons, type MRT_ColumnVirtualizer, MRT_CopyButton, MRT_DefaultColumn, MRT_DefaultDisplayColumn, type MRT_DefinedColumnDef, type MRT_DefinedTableOptions, type MRT_DensityState, type MRT_DisplayColumnDef, type MRT_DisplayColumnIds, MRT_EditActionButtons, MRT_EditCellTextField, MRT_EditRowModal, MRT_ExpandAllButton, MRT_ExpandButton, MRT_FilterCheckbox, type MRT_FilterFn, MRT_FilterFns, type MRT_FilterOption, MRT_FilterOptionMenu, MRT_FilterRangeFields, MRT_FilterRangeSlider, MRT_FilterTextField, MRT_GlobalFilterTextField, MRT_GrabHandleButton, type MRT_GroupColumnDef, type MRT_Header, type MRT_HeaderGroup, type MRT_Icons, type MRT_InternalFilterOption, MRT_LinearProgressBar, type MRT_Localization, type MRT_Row, MRT_RowActionMenu, type MRT_RowData, type MRT_RowModel, MRT_RowPinButton, type MRT_RowVirtualizer, MRT_SelectCheckbox, MRT_ShowHideColumnsButton, MRT_ShowHideColumnsMenu, MRT_ShowHideColumnsMenuItems, type MRT_SortingFn, MRT_SortingFns, type MRT_SortingOption, 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, type MRT_TableInstance, MRT_TableLoadingOverlay, type MRT_TableOptions, MRT_TablePagination, MRT_TablePaper, type MRT_TableState, type MRT_Theme, 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, type Prettify, type Xor, commonListItemStyles, commonMenuItemStyles, createMRTColumnHelper, createRow, extraIndexRangeExtractor, flexRender, getAllLeafColumnDefs, getCanRankRows, getColumnId, getCommonMRTCellStyles, getCommonToolbarStyles, getDefaultColumnFilterFn, getDefaultColumnOrderIds, getIsFirstColumn, getIsFirstRightPinnedColumn, getIsLastColumn, getIsLastLeftPinnedColumn, getLeadingDisplayColumnIds, getMRTTheme, getTotalRight, getTrailingDisplayColumnIds, getValueAndLabel, mrtFilterOptions, parseCSSVarId, parseFromValuesOrFunc, prepareColumns, rankGlobalFuzzy, reorderColumn, showExpandColumn, useMRT_ColumnVirtualizer, useMRT_DisplayColumns, useMRT_Effects, useMRT_RowVirtualizer, useMRT_Rows, useMRT_TableInstance, useMRT_TableOptions, useMaterialReactTable };
1625
+ export { type LiteralUnion, type MRT_AggregationFn, MRT_AggregationFns, type MRT_AggregationOption, MRT_BottomToolbar, type MRT_Cell, type MRT_Column, MRT_ColumnActionMenu, type MRT_ColumnDef, type MRT_ColumnFilterFnsState, type MRT_ColumnFiltersState, type MRT_ColumnHelper, type MRT_ColumnOrderState, MRT_ColumnPinningButtons, type MRT_ColumnPinningState, type MRT_ColumnSizingInfoState, type MRT_ColumnSizingState, type MRT_ColumnVirtualizer, MRT_CopyButton, MRT_DefaultColumn, MRT_DefaultDisplayColumn, type MRT_DefinedColumnDef, type MRT_DefinedTableOptions, type MRT_DensityState, type MRT_DisplayColumnDef, type MRT_DisplayColumnIds, MRT_EditActionButtons, MRT_EditCellTextField, MRT_EditRowModal, MRT_ExpandAllButton, MRT_ExpandButton, type MRT_ExpandedState, MRT_FilterCheckbox, type MRT_FilterFn, MRT_FilterFns, type MRT_FilterOption, MRT_FilterOptionMenu, MRT_FilterRangeFields, MRT_FilterRangeSlider, MRT_FilterTextField, MRT_GlobalFilterTextField, MRT_GrabHandleButton, type MRT_GroupColumnDef, type MRT_GroupingState, type MRT_Header, type MRT_HeaderGroup, type MRT_Icons, type MRT_InternalFilterOption, MRT_LinearProgressBar, type MRT_Localization, type MRT_PaginationState, type MRT_Row, MRT_RowActionMenu, type MRT_RowData, type MRT_RowModel, MRT_RowPinButton, type MRT_RowSelectionState, type MRT_RowVirtualizer, MRT_SelectCheckbox, MRT_ShowHideColumnsButton, MRT_ShowHideColumnsMenu, MRT_ShowHideColumnsMenuItems, type MRT_SortingFn, MRT_SortingFns, type MRT_SortingOption, type MRT_SortingState, 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, type MRT_TableInstance, MRT_TableLoadingOverlay, type MRT_TableOptions, MRT_TablePagination, MRT_TablePaper, type MRT_TableState, type MRT_Theme, MRT_ToggleDensePaddingButton, MRT_ToggleFiltersButton, MRT_ToggleFullScreenButton, MRT_ToggleGlobalFilterButton, MRT_ToggleRowActionMenuButton, MRT_ToolbarAlertBanner, MRT_ToolbarDropZone, MRT_ToolbarInternalButtons, MRT_TopToolbar, type MRT_Updater, type MRT_VirtualItem, type MRT_Virtualizer, type MRT_VirtualizerOptions, type MRT_VisibilityState, MaterialReactTable, Memo_MRT_TableBody, Memo_MRT_TableBodyCell, Memo_MRT_TableBodyRow, type Prettify, type Xor, commonListItemStyles, commonMenuItemStyles, createMRTColumnHelper, createRow, extraIndexRangeExtractor, flexRender, getAllLeafColumnDefs, getCanRankRows, getColumnId, getCommonMRTCellStyles, getCommonToolbarStyles, getDefaultColumnFilterFn, getDefaultColumnOrderIds, getIsFirstColumn, getIsFirstRightPinnedColumn, getIsLastColumn, getIsLastLeftPinnedColumn, getLeadingDisplayColumnIds, getMRTTheme, getTotalRight, getTrailingDisplayColumnIds, getValueAndLabel, mrtFilterOptions, parseCSSVarId, parseFromValuesOrFunc, prepareColumns, rankGlobalFuzzy, reorderColumn, showExpandColumn, useMRT_ColumnVirtualizer, useMRT_DisplayColumns, useMRT_Effects, useMRT_RowVirtualizer, useMRT_Rows, useMRT_TableInstance, useMRT_TableOptions, useMaterialReactTable };