/** * The class name contract for the data grid component */ export interface DataGridClassNameContract { /** * The root of the data grid component */ dataGrid?: string; /** * Applied if the datagrid virtualize prop is true */ dataGrid__virtualized?: string; /** * The scrolling container */ dataGrid_scrollingPanel?: string; /** * the container that contains the data grid rows */ dataGrid_scrollingPanelItems?: string; /** * Applied if the scrolling panel has enough items to be scrollable */ dataGrid_scrollingPanel__scrollable?: string; /** * The header of the data grid component */ dataGrid_header?: string; /** * The column header of the data grid component */ dataGrid_columnHeader?: string; /** * The rows of the data grid component */ dataGrid_row?: string; /** * Applied when focus is in a particular row */ dataGrid_row__focusedWithin?: string; /** * A cell within the data grid component */ dataGrid_cell?: string; } export interface DataGridRowClassNameContract { dataGridRow?: string; dataGridRow__focusedWithin?: string; dataGridRow_cell?: string; } export interface DataGridCellClassNameContract { dataGridCell?: string; }