props.ts 371 B

123456789101112
  1. import type { ClFormData, ClFormRule, ClFormValidateResult, ClFormPassThrough } from "./props";
  2. export type ClFormProps = {
  3. className?: string;
  4. pt?: ClFormPassThrough;
  5. modelValue?: ClFormData;
  6. rules?: Record<string, ClFormRule | ClFormRule[]>;
  7. labelPosition?: "left" | "top" | "right";
  8. labelWidth?: string;
  9. showRequiredAsterisk?: boolean;
  10. disabled?: boolean;
  11. };