UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

15 lines (14 loc) 545 B
import { KendoComponent } from '../_types/component'; declare const states: ("focus" | "selected")[]; export type KendoGridStackCellProps = { cellHeader?: string; cellContent?: React.JSX.Element | string; edit?: boolean; commandCell?: boolean; dirty?: boolean; }; export type KendoGridStackCellState = { [K in (typeof states)[number]]?: boolean; }; export declare const GridStackCell: KendoComponent<KendoGridStackCellProps & KendoGridStackCellState & React.HTMLAttributes<HTMLDivElement>>; export default GridStackCell;