@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
26 lines (25 loc) • 826 B
TypeScript
export declare const PIVOTGRIDCELL_CLASSNAME = "k-pivotgrid-cell";
declare const states: ("focus" | "selected")[];
export type KendoPivotGridCellProps = {
as?: "th" | "td";
colSpan?: number;
rowSpan?: number;
toggle?: "up" | "down";
headerTitle?: string;
content?: string;
headerRootCell?: boolean;
totalCell?: boolean;
headerTotalCell?: boolean;
rowTotalCell?: boolean;
};
export type KendoPivotGridCellState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const PivotGridCell: {
(props: KendoPivotGridCellProps & KendoPivotGridCellState & React.HTMLAttributes<HTMLTableCellElement>): import("react/jsx-runtime").JSX.Element;
states: ("focus" | "selected")[];
options: {};
className: string;
defaultOptions: {};
};
export default PivotGridCell;