MonoCloud Authentication SDK
    Preparing search index...

    Props for the <SignIn /> component.

    interface SignInProps {
        acrValues?: string[];
        authenticatorHint?: Authenticators;
        children: ReactNode;
        display?: DisplayOptions;
        loginHint?: string;
        maxAge?: number;
        prompt?: Prompt;
        resource?: string;
        returnUrl?: string;
        scopes?: string;
        uiLocales?: string;
    }

    Hierarchy

    Index

    Properties

    acrValues?: string[]

    Authentication Context Class Reference (ACR) values requesting specific authentication assurance levels or methods.

    authenticatorHint?: Authenticators

    Hint to the authorization server indicating which authenticator or connection should be used.

    children: ReactNode

    Content rendered inside the link (for example, button text).

    display?: DisplayOptions

    Preferred display mode for the authentication UI.

    loginHint?: string

    Hint identifying the user (for example, email or username). Used to prefill or optimize the sign-in experience.

    maxAge?: number

    Maximum acceptable time (in seconds) since the user last authenticated. If exceeded, the user may be required to sign in again.

    prompt?: Prompt

    Controls authentication interaction behavior. For example, forcing login or consent.

    resource?: string

    Space-separated list of resource indicators that scope the issued access token.

    returnUrl?: string

    URL to redirect to after successful sign-in.

    scopes?: string

    Space-separated list of scopes requested during authentication.

    uiLocales?: string

    Preferred UI language.