props.ts 564 B

12345678910111213141516171819202122232425
  1. import type { PassThroughProps } from "../../types";
  2. export type ClReadMorePassThrough = {
  3. className?: string;
  4. wrapper?: PassThroughProps;
  5. content?: PassThroughProps;
  6. contentText?: PassThroughProps;
  7. mask?: PassThroughProps;
  8. toggle?: PassThroughProps;
  9. };
  10. export type ClReadMoreProps = {
  11. className?: string;
  12. pt?: ClReadMorePassThrough;
  13. modelValue?: boolean;
  14. content?: string;
  15. height?: number;
  16. expandText?: string;
  17. collapseText?: string;
  18. expandIcon?: string;
  19. collapseIcon?: string;
  20. disabled?: boolean;
  21. showToggle?: boolean;
  22. showMask?: boolean;
  23. };