UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

16 lines (15 loc) 658 B
import type { AgColumn } from '../../entities/agColumn'; import type { CellCtrl } from '../cell/cellCtrl'; import { RowCtrl } from '../row/rowCtrl'; export declare class SpannedRowCtrl extends RowCtrl { protected getInitialRowClasses(): string[]; getNewCellCtrl(col: AgColumn<any>): CellCtrl | undefined; isCorrectCtrlForSpan(cell: CellCtrl): boolean; /** * Below overrides are explicitly disabling styling and other unwanted behaviours for spannedRowCtrl */ protected onRowHeightChanged(): void; protected refreshFirstAndLastRowStyles(): void; protected addHoverFunctionality(): void; resetHoveredStatus(): void; }