@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
18 lines (17 loc) • 595 B
TypeScript
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: {
(props: KendoGridStackCellProps & KendoGridStackCellState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: ("focus" | "selected")[];
className: string;
};
export default GridStackCell;