@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
30 lines (29 loc) • 965 B
TypeScript
declare const states: ("active" | "focus" | "disabled" | "readonly" | "hover")[];
export type KendoSliderProps = {
type?: 'single' | 'range' | 'gradient';
orientation?: 'horizontal' | 'vertical';
dir?: 'ltr' | 'rtl';
handlePosition?: 'start' | 'end';
trackStyle?: React.CSSProperties;
showButtons?: boolean;
showTicks?: boolean;
};
export type KendoSliderState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const Slider: {
(props: KendoSliderProps & KendoSliderState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: ("active" | "focus" | "disabled" | "readonly" | "hover")[];
options: {};
className: string;
defaultOptions: {
type: string;
orientation: string;
readonly: boolean;
disabled: boolean;
handlePosition: string;
showButtons: boolean;
showTicks: boolean;
};
};
export default Slider;