Auth0 Universal Components
    Preparing search index...

    Interface ContactInputFormProps

    interface ContactInputFormProps {
        contact: string;
        customMessages?: Partial<MFAMessages>;
        factorType: FactorTypeEnum;
        isConfirming: boolean;
        isEnrolling: boolean;
        onClose: () => void;
        onConfirmOtp: (otpCode: string) => Promise<void>;
        onSubmitContact: (options: Record<string, string>) => Promise<boolean>;
        readOnly?: boolean;
        schema?: Partial<{ email?: RegExp; phone?: RegExp }>;
        styling?: ComponentStyling<UserMFAMgmtClasses>;
    }

    Hierarchy

    • SharedComponentProps<
          MFAMessages,
          UserMFAMgmtClasses,
          { email?: RegExp; phone?: RegExp },
      >
      • ContactInputFormProps
    Index

    Properties

    contact: string
    customMessages?: Partial<MFAMessages>
    factorType: FactorTypeEnum
    isConfirming: boolean
    isEnrolling: boolean
    onClose: () => void
    onConfirmOtp: (otpCode: string) => Promise<void>
    onSubmitContact: (options: Record<string, string>) => Promise<boolean>
    readOnly?: boolean
    schema?: Partial<{ email?: RegExp; phone?: RegExp }>
    styling?: ComponentStyling<UserMFAMgmtClasses>