material-react-table 0.33.3 → 0.33.4
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/cjs/MaterialReactTable.d.ts +3 -3
- package/dist/cjs/index.min.js +7352 -4
- package/dist/cjs/index.min.js.map +1 -1
- package/dist/esm/MaterialReactTable.d.ts +3 -3
- package/dist/esm/material-react-table.esm.min.js +7328 -4
- package/dist/esm/material-react-table.esm.min.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
- package/src/MaterialReactTable.tsx +3 -3
- package/src/body/MRT_TableBody.tsx +1 -1
- package/src/body/MRT_TableBodyCell.tsx +24 -10
- package/src/table/MRT_TableContainer.tsx +2 -2
- package/src/table/MRT_TableRoot.tsx +7 -1
|
@@ -252,12 +252,12 @@ export declare type MRT_DisplayColumnIds = 'mrt-row-drag' | 'mrt-row-actions' |
|
|
|
252
252
|
* @link https://www.material-react-table.com/docs/api/props
|
|
253
253
|
*/
|
|
254
254
|
export declare type MaterialReactTableProps<TData extends Record<string, any> = {}> = Omit<Partial<TableOptions<TData>>, 'columns' | 'data' | 'expandRowsFn' | 'initialState' | 'onStateChange' | 'state'> & {
|
|
255
|
-
displayColumnDefOptions?: Partial<{
|
|
256
|
-
[key in MRT_DisplayColumnIds]: Partial<MRT_ColumnDef>;
|
|
257
|
-
}>;
|
|
258
255
|
columnFilterModeOptions?: (MRT_FilterOption | string)[] | null;
|
|
259
256
|
columns: MRT_ColumnDef<TData>[];
|
|
260
257
|
data: TData[];
|
|
258
|
+
displayColumnDefOptions?: Partial<{
|
|
259
|
+
[key in MRT_DisplayColumnIds]: Partial<MRT_ColumnDef>;
|
|
260
|
+
}>;
|
|
261
261
|
editingMode?: 'table' | 'row' | 'cell';
|
|
262
262
|
enableBottomToolbar?: boolean;
|
|
263
263
|
enableClickToCopy?: boolean;
|