Files
jindengchen-ai-report/cool-unix/uni_modules/cool-ui/components/cl-read-more/props.ts

26 lines
561 B
TypeScript
Raw Normal View History

2025-11-13 10:36:23 +08:00
import type { PassThroughProps } from "../../types";
export type ClReadMorePassThrough = {
className?: string;
wrapper?: PassThroughProps;
content?: PassThroughProps;
contentText?: PassThroughProps;
mask?: PassThroughProps;
toggle?: PassThroughProps;
};
export type ClReadMoreProps = {
className?: string;
pt?: ClReadMorePassThrough;
modelValue?: boolean;
content?: string;
height?: any;
expandText?: string;
collapseText?: string;
expandIcon?: string;
collapseIcon?: string;
disabled?: boolean;
showToggle?: boolean;
showMask?: boolean;
};