props.ts 553 B

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