@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
17 lines (16 loc) • 588 B
TypeScript
export declare const PIVOTGRIDROW_CLASSNAME = "k-pivotgrid-row";
declare const states: ("selected" | "hover")[];
export type KendoPivotGridRowProps = {
columnTotal?: boolean;
};
export type KendoPivotGridRowState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const PivotGridRow: {
(props: KendoPivotGridRowProps & KendoPivotGridRowState & React.HTMLAttributes<HTMLTableRowElement>): import("react/jsx-runtime").JSX.Element;
states: ("selected" | "hover")[];
options: {};
className: string;
defaultOptions: {};
};
export default PivotGridRow;