props.ts 635 B

123456789101112131415161718192021222324
  1. import type { ClSelectOption } from "../../types";
  2. import type { ClSelectTriggerPassThrough } from "../cl-select-trigger/props";
  3. import type { ClPopupPassThrough } from "../cl-popup/props";
  4. export type ClSelectTimePassThrough = {
  5. trigger?: ClSelectTriggerPassThrough;
  6. popup?: ClPopupPassThrough;
  7. };
  8. export type ClSelectTimeProps = {
  9. className?: string;
  10. pt?: ClSelectTimePassThrough;
  11. modelValue?: string;
  12. headers?: string[];
  13. title?: string;
  14. placeholder?: string;
  15. showTrigger?: boolean;
  16. disabled?: boolean;
  17. confirmText?: string;
  18. showConfirm?: boolean;
  19. cancelText?: string;
  20. showCancel?: boolean;
  21. labelFormat?: string;
  22. };