Auth0 Universal Components
    Preparing search index...

    Interface OrganizationDetailsFormActions

    interface OrganizationDetailsFormActions {
        align?: "left" | "right";
        className?: string;
        hasUnsavedChanges?: boolean;
        isLoading?: boolean;
        nextAction?: {
            disabled: boolean;
            onClick?: (data: OrganizationPrivate) => boolean | Promise<boolean>;
        };
        previousAction?: Partial<ActionButton<void>>;
        showNext?: boolean;
        showPrevious?: boolean;
        showUnsavedChanges?: boolean;
        unsavedChangesText?: string;
    }

    Hierarchy

    • Omit<FormActionsProps, "nextAction">
      • OrganizationDetailsFormActions
    Index

    Properties

    align?: "left" | "right"
    className?: string
    hasUnsavedChanges?: boolean
    isLoading?: boolean
    nextAction?: {
        disabled: boolean;
        onClick?: (data: OrganizationPrivate) => boolean | Promise<boolean>;
    }
    previousAction?: Partial<ActionButton<void>>
    showNext?: boolean
    showPrevious?: boolean
    showUnsavedChanges?: boolean
    unsavedChangesText?: string