@mui/x-data-grid-pro 5.0.1 → 5.2.2

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/LICENSE.md DELETED
@@ -1,7 +0,0 @@
1
- # [MUI X](https://mui.com/x/)
2
-
3
- This is commercial software.
4
- To use it, you need to agree to the [**End User License Agreement for MUI X**](https://mui.com/x/license/).
5
- If you do not own a commercial license, this file shall be governed by the trial license terms.
6
-
7
- All available MUI commercial licenses may be obtained at https://mui.com/store/items/material-ui-pro/.
@@ -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" | "throttleRowsMs" | "hideFooterRowCount" | "options" | "onRowsScrollEnd" | "scrollEndThreshold" | "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' | 'throttleRowsMs' | 'hideFooterRowCount' | 'options' | 'onRowsScrollEnd' | 'scrollEndThreshold' | '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,4 +0,0 @@
1
- export * from '../../_modules_';
2
- export * from './DataGrid';
3
- export * from './DataGridProps';
4
- export * from './useDataGridComponent';
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export {};
@@ -1,2 +0,0 @@
1
- export * from './overrides';
2
- export * from './props';
@@ -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
- }
@@ -1,2 +0,0 @@
1
- import type { GridComponentProps, GridApiRef } from '../../_modules_';
2
- export declare const useDataGridComponent: (apiRef: GridApiRef, props: GridComponentProps) => void;
@@ -1,3 +0,0 @@
1
- import { DataGridProps } from './DataGridProps';
2
- import { GridComponentProps } from '../../_modules_/grid/GridComponentProps';
3
- export declare const useDataGridProps: (inProps: DataGridProps) => GridComponentProps;