props.ts 616 B

123456789101112131415161718192021222324252627
  1. import type { ClSelectSeatItem, ClSelectSeatValue } from "../../types";
  2. export type ClSelectSeatProps = {
  3. className?: string;
  4. modelValue?: ClSelectSeatValue[];
  5. rows?: number;
  6. cols?: number;
  7. seatGap?: number;
  8. borderRadius?: number;
  9. borderWidth?: number;
  10. minScale?: number;
  11. maxScale?: number;
  12. color?: string;
  13. darkColor?: string;
  14. bgColor?: string;
  15. darkBgColor?: string;
  16. borderColor?: string;
  17. darkBorderColor?: string;
  18. selectedBgColor?: string;
  19. selectedColor?: string;
  20. selectedIcon?: string;
  21. selectedImage?: string;
  22. image?: string;
  23. width?: number;
  24. height?: number;
  25. seats?: ClSelectSeatItem[];
  26. };