UNPKG

ag-grid-community

Version:

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

18 lines (17 loc) 709 B
import { BeanStub } from '../context/beanStub'; import type { BeanCollection } from '../context/context'; import type { ICellStyleFeature } from '../interfaces/iCellStyleFeature'; import type { CellCtrl, ICellComp } from '../rendering/cell/cellCtrl'; export declare class CellCustomStyleFeature extends BeanStub implements ICellStyleFeature { private readonly cellCtrl; private readonly column; private staticClasses; private cellComp; private cellClassRules?; constructor(cellCtrl: CellCtrl, beans: BeanCollection); setComp(comp: ICellComp): void; applyCellClassRules(): void; applyUserStyles(): void; applyClassesFromColDef(): void; private getCellClassParams; }