Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-slider/props.ts
2025-07-21 16:47:04 +08:00

22 lines
439 B
TypeScript

import type { PassThroughProps } from "../../types";
export type ClSliderPassThrough = {
className?: string;
track?: PassThroughProps;
progress?: PassThroughProps;
thumb?: PassThroughProps;
value?: PassThroughProps;
};
export type ClSliderProps = {
className?: string;
pt?: ClSliderPassThrough;
modelValue?: number;
min?: number;
max?: number;
step?: number;
disabled?: boolean;
blockSize?: number;
showValue?: boolean;
};