小程序初始提交
This commit is contained in:
24
cool-unix/uni_modules/cool-ui/components/cl-slider/props.ts
Normal file
24
cool-unix/uni_modules/cool-ui/components/cl-slider/props.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
values?: number[];
|
||||
min?: number;
|
||||
max?: number;
|
||||
step?: number;
|
||||
disabled?: boolean;
|
||||
blockSize?: number;
|
||||
trackHeight?: number;
|
||||
showValue?: boolean;
|
||||
range?: boolean;
|
||||
};
|
||||
Reference in New Issue
Block a user