Preparing search index...

    Props for AuthenticationDialog component.

    type AuthenticationDialogProps = {
        testId: string;
        isVisible: boolean;
        host: string;
        onClose: () => void;
        onSubmit: (username: string, password: string) => void;
        isLoading: boolean;
        error?: string;
    }
    Index

    Properties

    testId: string

    Unique identifier for testing and accessibility

    isVisible: boolean

    Whether the dialog is currently visible

    host: string

    Host domain requiring authentication (e.g., "quitoque.fr")

    onClose: () => void

    Callback fired when dialog is closed

    onSubmit: (username: string, password: string) => void

    Callback fired when credentials are submitted

    isLoading: boolean

    Whether an authentication operation is in progress

    error?: string

    Error message to display, if any