UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the MUI X Data Grid components.

20 lines 754 B
import * as React from 'react'; import { GridRowAriaAttributesInternalHook } from "./gridRowConfiguration.js"; import type { GridCSSVariablesInterface } from "../../constants/cssVariables.js"; import type { GridRowId } from "../gridRows.js"; export interface GridAriaAttributesInternalHook { useGridAriaAttributes: () => React.HTMLAttributes<HTMLElement>; } export interface GridInternalHook extends GridAriaAttributesInternalHook, GridRowAriaAttributesInternalHook { useCSSVariables: () => { id: string; variables: GridCSSVariablesInterface; }; useCellAggregationResult: (id: GridRowId, field: string) => { position: 'footer' | 'inline'; value: any; } | null; } export interface GridConfiguration { hooks: GridInternalHook; }