@mui/x-data-grid-pro 5.2.0 → 5.4.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/CHANGELOG.md +335 -33
- package/index-cjs.js +2 -2
- package/index-esm.js +2 -2
- package/package.json +6 -6
- package/themeAugmentation/props.d.ts +1 -1
- package/x-data-grid-pro.d.ts +3464 -3873
- package/x-data-grid/src/DataGrid.d.ts +0 -4
- package/x-data-grid/src/DataGridColumnHeaders.d.ts +0 -6
- package/x-data-grid/src/DataGridProps.d.ts +0 -8
- package/x-data-grid/src/DataGridVirtualScroller.d.ts +0 -8
- package/x-data-grid/src/index.d.ts +0 -4
- package/x-data-grid/src/tests/DataGrid.spec.d.ts +0 -1
- package/x-data-grid/src/tests/columns.spec.d.ts +0 -1
- package/x-data-grid/src/tests/themeAugmentation.spec.d.ts +0 -1
- package/x-data-grid/src/themeAugmentation/index.d.ts +0 -2
- package/x-data-grid/src/themeAugmentation/overrides.d.ts +0 -8
- package/x-data-grid/src/themeAugmentation/props.d.ts +0 -19
- package/x-data-grid/src/useDataGridComponent.d.ts +0 -2
- package/x-data-grid/src/useDataGridProps.d.ts +0 -3
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
export declare const DataGrid: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<import("../../_modules_/grid").GridInputComponentProps, "apiRef" | "checkboxSelectionVisibleOnly" | "disableColumnResize" | "disableColumnReorder" | "disableMultipleColumnsFiltering" | "disableMultipleColumnsSorting" | "disableMultipleSelection" | "disableChildrenFiltering" | "disableChildrenSorting" | "disableColumnPinning" | "throttleRowsMs" | "hideFooterRowCount" | "options" | "onRowsScrollEnd" | "scrollEndThreshold" | "pinnedColumns" | "onPinnedColumnsChange" | "treeData" | "getTreeDataPath" | "groupingColDef" | "defaultGroupingExpansionDepth" | "signature"> & {
|
|
3
|
-
pagination?: true | undefined;
|
|
4
|
-
} & React.RefAttributes<HTMLDivElement>>>;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
interface DataGridColumnHeadersProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
3
|
-
innerRef?: React.Ref<HTMLDivElement>;
|
|
4
|
-
}
|
|
5
|
-
export declare const DataGridColumnHeaders: React.ForwardRefExoticComponent<DataGridColumnHeadersProps & React.RefAttributes<HTMLDivElement>>;
|
|
6
|
-
export {};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { GridInputComponentProps } from '../../_modules_/grid/GridComponentProps';
|
|
2
|
-
export declare const MAX_PAGE_SIZE = 100;
|
|
3
|
-
/**
|
|
4
|
-
* The grid component react props interface.
|
|
5
|
-
*/
|
|
6
|
-
export declare type DataGridProps = Omit<GridInputComponentProps, 'apiRef' | 'checkboxSelectionVisibleOnly' | 'disableColumnResize' | 'disableColumnReorder' | 'disableMultipleColumnsFiltering' | 'disableMultipleColumnsSorting' | 'disableMultipleSelection' | 'disableChildrenFiltering' | 'disableChildrenSorting' | 'disableColumnPinning' | 'throttleRowsMs' | 'hideFooterRowCount' | 'options' | 'onRowsScrollEnd' | 'scrollEndThreshold' | 'pinnedColumns' | 'onPinnedColumnsChange' | 'treeData' | 'getTreeDataPath' | 'groupingColDef' | 'defaultGroupingExpansionDepth' | 'signature'> & {
|
|
7
|
-
pagination?: true;
|
|
8
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { GridRowId } from '../../_modules_/grid/models/gridRows';
|
|
3
|
-
interface DataGridVirtualScrollerProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
4
|
-
selectionLookup: Record<string, GridRowId>;
|
|
5
|
-
disableVirtualization?: boolean;
|
|
6
|
-
}
|
|
7
|
-
declare const DataGridVirtualScroller: React.ForwardRefExoticComponent<DataGridVirtualScrollerProps & React.RefAttributes<HTMLDivElement>>;
|
|
8
|
-
export { DataGridVirtualScroller };
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { GridClassKey } from '../../../_modules_/grid/gridClasses';
|
|
2
|
-
export interface DataGridComponentNameToClassKey {
|
|
3
|
-
MuiDataGrid: GridClassKey;
|
|
4
|
-
}
|
|
5
|
-
declare module '@mui/material/styles/overrides' {
|
|
6
|
-
interface ComponentNameToClassKey extends DataGridComponentNameToClassKey {
|
|
7
|
-
}
|
|
8
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ComponentsOverrides, ComponentsProps } from '@mui/material/styles';
|
|
2
|
-
import { DataGridProps } from '../DataGridProps';
|
|
3
|
-
export interface DataGridComponentsPropsList {
|
|
4
|
-
MuiDataGrid: DataGridProps;
|
|
5
|
-
}
|
|
6
|
-
export interface DataGridComponents {
|
|
7
|
-
MuiDataGrid?: {
|
|
8
|
-
defaultProps?: ComponentsProps['MuiDataGrid'];
|
|
9
|
-
styleOverrides?: ComponentsOverrides['MuiDataGrid'];
|
|
10
|
-
};
|
|
11
|
-
}
|
|
12
|
-
declare module '@mui/material/styles' {
|
|
13
|
-
interface ComponentsPropsList extends DataGridComponentsPropsList {
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
declare module '@mui/material/styles/components' {
|
|
17
|
-
interface Components extends DataGridComponents {
|
|
18
|
-
}
|
|
19
|
-
}
|