props.ts 474 B

1234567891011121314151617181920
  1. import type { PassThroughProps } from "../../types";
  2. import type { ClPopupProps } from "../cl-popup/props";
  3. export type ClKeyboardCarPassThrough = {
  4. className?: string;
  5. item?: PassThroughProps;
  6. value?: PassThroughProps;
  7. popup?: ClPopupProps;
  8. };
  9. export type ClKeyboardCarProps = {
  10. className?: string;
  11. pt?: ClKeyboardCarPassThrough;
  12. modelValue?: string;
  13. title?: string;
  14. placeholder?: string;
  15. maxlength?: number;
  16. showValue?: boolean;
  17. inputImmediate?: boolean;
  18. };