@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
32 lines (31 loc) • 1.05 kB
TypeScript
export declare const TABSTRIP_CLASSNAME = "k-tabstrip";
declare const options: {
size: ("small" | "medium" | "large")[];
};
export type KendoTabStripOptions = {
size?: (typeof options.size)[number] | null;
};
export type KendoTabStripProps = KendoTabStripOptions & {
position?: "top" | "bottom" | "left" | "right";
tabAlignment?: "start" | "center" | "end" | "justify" | "stretched";
tabStripItems?: React.JSX.Element | React.JSX.Element[];
scrollable?: boolean;
scrollButtons?: "around" | "start" | "end" | "hidden";
scrollingPosition?: "start" | "end" | "both";
dir?: "rtl" | "ltr";
};
export declare const TabStrip: {
(props: KendoTabStripProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: any[];
options: {
size: ("small" | "medium" | "large")[];
};
className: string;
defaultOptions: {
size: "medium";
position: string;
tabAlignment: string;
scrollButtons: string;
};
};
export default TabStrip;