UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

29 lines (28 loc) 978 B
declare const states: ("focus" | "invalid" | "disabled" | "valid" | "hover")[]; export type KendoStepProps = { style?: React.CSSProperties; optional?: boolean; first?: boolean; done?: boolean; current?: boolean; last?: boolean; label?: string; text?: string; icon?: string; stepContent?: React.JSX.Element; /** @aria When true, Step renders with wizard tab pattern (role=none on li, role=tab on link) */ wizardContext?: boolean; /** @aria aria-controls for the step link, pointing to the associated tabpanel id */ ariaControls?: string; }; export type StepState = { [K in (typeof states)[number]]?: boolean; }; export declare const Step: { (props: KendoStepProps & StepState & React.HTMLAttributes<HTMLLIElement>): import("react/jsx-runtime").JSX.Element; options: {}; states: ("focus" | "invalid" | "disabled" | "valid" | "hover")[]; className: string; defaultOptions: {}; }; export default Step;