UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

22 lines (21 loc) 765 B
export declare const PIVOTGRID_CLASSNAME = "k-pivotgrid"; export type KendoPivotGridProps = { emptyCell?: React.JSX.Element; columnHeaders?: React.JSX.Element; rowHeaders?: React.JSX.Element; configurator?: React.JSX.Element; configuratorDisplay?: "none" | "closed" | "opened"; configuratorPosition?: "left" | "bottom" | "right" | "top"; }; export declare const PivotGrid: { (props: KendoPivotGridProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element; states: any[]; options: {}; className: string; defaultOptions: { emptyCell: import("react/jsx-runtime").JSX.Element; configuratorDisplay: string; configuratorPosition: string; }; }; export default PivotGrid;