小程序初始提交
This commit is contained in:
24
cool-unix/uni_modules/cool-ui/components/cl-rate/props.ts
Normal file
24
cool-unix/uni_modules/cool-ui/components/cl-rate/props.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
import type { PassThroughProps } from "../../types";
|
||||
import type { ClIconProps } from "../cl-icon/props";
|
||||
|
||||
export type ClRatePassThrough = {
|
||||
className?: string;
|
||||
item?: PassThroughProps;
|
||||
icon?: ClIconProps;
|
||||
score?: PassThroughProps;
|
||||
};
|
||||
|
||||
export type ClRateProps = {
|
||||
className?: string;
|
||||
pt?: ClRatePassThrough;
|
||||
modelValue?: number;
|
||||
max?: number;
|
||||
disabled?: boolean;
|
||||
allowHalf?: boolean;
|
||||
showScore?: boolean;
|
||||
size?: number;
|
||||
icon?: string;
|
||||
voidIcon?: string;
|
||||
color?: string;
|
||||
voidColor?: string;
|
||||
};
|
||||
Reference in New Issue
Block a user