Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@auth0/auth0-acul-react

Package Overview
Dependencies
Maintainers
49
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@auth0/auth0-acul-react - npm Package Compare versions

Comparing version
1.0.0-alpha.2
to
1.0.0-alpha.3
+1
-1
dist/export/getting-started.d.ts

@@ -211,3 +211,3 @@ /**

* - `useErrors(options)` - Comprehensive error management with categorization
* - Filter by error kind: `'validation'`, `'auth0'`, `'configuration'`
* - Filter by error type: `'validation'`, `'auth0'`, `'configuration'`
* - Filter by field name for form-specific errors

@@ -214,0 +214,0 @@ * - Dismiss individual or all errors

@@ -1,8 +0,8 @@

import { type ErrorItem, type ErrorKind } from '../../state/error-store';
import { type ErrorItem, type ErrorType } from '../../state/error-store';
export interface ErrorsResult extends ReadonlyArray<ErrorItem> {
byKind(kind: ErrorKind, opts?: {
byType(type: ErrorType, opts?: {
field?: string;
}): ReadonlyArray<ErrorItem>;
byField(field: string, opts?: {
kind?: ErrorKind;
type?: ErrorType;
}): ReadonlyArray<ErrorItem>;

@@ -21,3 +21,3 @@ }

* React hook for reading and managing errors in ACUL (Advanced Customization of Universal Login).
* With all validation and server-side errors. It groups errors into three kinds:
* With all validation and server-side errors. It groups errors into three types:
* - `auth0` — errors returned by Auth0 or your own backend.

@@ -35,4 +35,4 @@ * - `validation` — errors from client-side validation (e.g., invalid form input).

* - `errors` — the full error list of type {@link ErrorsResult}, with helpers:
* - `errors.byKind(kind, filter?)` — filter by error kind and optionally by field.
* - `errors.byField(field, filter?)` — filter by field and optionally by kind.
* - `errors.byType(type, filter?)` — filter by error type and optionally by field.
* - `errors.byField(field, filter?)` — filter by field and optionally by type.
* - `hasError` — `true` if any error is currently present.

@@ -56,3 +56,3 @@ * - `dismiss(id)` — remove a specific error by its ID.

* <div className="mb-4">
* {errors.byKind("auth0").map(err => (
* {errors.byType("auth0").map(err => (
* <div key={err.id} className="text-red-600">

@@ -72,8 +72,8 @@ * {err.message}

*
* In addition to rendering messages, you can filter by field or kind:
* In addition to rendering messages, you can filter by field or type:
* ```ts
* console.log(errors.byKind('validation')); // all validation errors
* console.log(errors.byKind('validation', { field: 'username' })); // validation errors for field 'username'
* console.log(errors.byType('validation')); // all validation errors
* console.log(errors.byType('validation', { field: 'username' })); // validation errors for field 'username'
* console.log(errors.byField('username')); // all errors for field 'username'
* console.log(errors.byField('username', { kind: 'auth0' })); // auth0 errors for field 'username'
* console.log(errors.byField('username', { type: 'auth0' })); // auth0 errors for field 'username'
* ```

@@ -107,2 +107,2 @@ */

};
export { ErrorItem, ErrorKind };
export { ErrorItem, ErrorType };

@@ -1,2 +0,2 @@

import{getErrors as r,ValidationError as e,ConfigurationError as t,Auth0Error as a}from"@auth0/auth0-acul-js";import{useSyncExternalStore as n,useRef as o,useEffect as i,useMemo as c,useCallback as l}from"react";import{errorStore as s,ERROR_KINDS as u}from"../../state/error-store.js";function f(r,e){return e?r.filter(r=>r.field===e):r}const d=new WeakMap,h=new WeakMap,p=new WeakMap,v=(r,e)=>{const t="auth0"===r?d:"validation"===r?h:p,a=t.get(e);if(a)return a;const n=Object.freeze(e.map(e=>Object.freeze({...e,kind:r})));return t.set(e,n),n};function b(e={}){const{includeDevErrors:t=!1}=e,a=n(r=>s.subscribe(r),()=>s.snapshot()),d=o(!1);i(()=>{if(d.current)return;d.current=!0;const e=r?.()??[];s.replace("auth0",e)},[]);const h=c(()=>v("auth0",a.auth0),[a.auth0]),p=c(()=>v("validation",a.validation),[a.validation]),b=c(()=>v("configuration",a.configuration),[a.configuration]),E=c(()=>Object.freeze([...t?b:[],...p,...h]),[t,b,p,h]),g=c(()=>{const r=Object.assign([...E],{byKind(r,e){let t;return t="validation"===r?p:"configuration"===r?b:h,e?.field?Object.freeze(f(t,e.field)):t},byField:(e,t)=>t?.kind?r.byKind(t.kind,{field:e}):Object.freeze(f(E,e))});return Object.freeze(r)},[E,p,b,h]),y=E.length>0,m=l(r=>{s.remove(u,r)},[]),k=l(()=>{s.clear(u)},[]);return c(()=>({errors:g,hasError:y,dismiss:m,dismissAll:k}),[g,y,m,k])}const E={withError:function(r){const n=r=>{const n=function(r){return r instanceof e?"validation":r instanceof t?"configuration":r instanceof a?"auth0":null}(r),o=function(r){return{code:r?.code??(r instanceof Error?r.name:void 0)??"unknown_error",message:r?.message??"Unknown error",field:r?.field}}(r);switch(n){case"validation":E.replaceValidationErrors([o]);break;case"configuration":E.replaceDeveloperErrors([o]);break;case"auth0":E.replaceServerErrors([o]);break;default:throw console.error("[auth0-acul-react] Unhandled error:",r),r}};if("function"==typeof r)try{const e=r();return"object"==typeof(o=e)&&null!==o&&"then"in o&&"function"==typeof o.then?e.catch(r=>{throw n(r),r}):e}catch(r){throw n(r),r}var o;return r.catch(r=>{throw n(r),r})},replaceValidationErrors(r,e){e?.byField?s.replacePartial("validation",r,e.byField):s.replace("validation",r)},clearValidationErrors(){s.clear(["validation"])},pushValidationErrors(r){s.push("validation",r)},replaceDeveloperErrors(r,e){e?.byField?s.replacePartial("configuration",r,e.byField):s.replace("configuration",r)},clearDeveloperErrors(){s.clear(["configuration"])},pushDeveloperErrors(r){s.push("configuration",r)},replaceServerErrors(r,e){e?.byField?s.replacePartial("auth0",r,e.byField):s.replace("auth0",r)},clearServerErrors(){s.clear(["auth0"])},pushServerErrors(r){s.push("auth0",r)},syncServerErrors(){const e=r?.()??[];s.replace("auth0",e)}};export{E as errorManager,b as useErrors};
import{getErrors as r,ValidationError as e,ConfigurationError as t,Auth0Error as a}from"@auth0/auth0-acul-js";import{useSyncExternalStore as o,useRef as n,useEffect as i,useMemo as c,useCallback as l}from"react";import{errorStore as s,ERROR_TYPES as u}from"../../state/error-store.js";function f(r,e){return e?r.filter(r=>r.field===e):r}const p=new WeakMap,d=new WeakMap,h=new WeakMap,v=(r,e)=>{const t="auth0"===r?p:"validation"===r?d:h,a=t.get(e);if(a)return a;const o=Object.freeze(e.map(e=>Object.freeze({...e,type:r})));return t.set(e,o),o};function b(e={}){const{includeDevErrors:t=!1}=e,a=o(r=>s.subscribe(r),()=>s.snapshot()),p=n(!1);i(()=>{if(p.current)return;p.current=!0;const e=r?.()??[];s.replace("auth0",e)},[]);const d=c(()=>v("auth0",a.auth0),[a.auth0]),h=c(()=>v("validation",a.validation),[a.validation]),b=c(()=>v("configuration",a.configuration),[a.configuration]),y=c(()=>Object.freeze([...t?b:[],...h,...d]),[t,b,h,d]),E=c(()=>{const r=Object.assign([...y],{byType(r,e){let t;return t="validation"===r?h:"configuration"===r?b:d,e?.field?Object.freeze(f(t,e.field)):t},byField:(e,t)=>t?.type?r.byType(t.type,{field:e}):Object.freeze(f(y,e))});return Object.freeze(r)},[y,h,b,d]),g=y.length>0,m=l(r=>{s.remove(u,r)},[]),w=l(()=>{s.clear(u)},[]);return c(()=>({errors:E,hasError:g,dismiss:m,dismissAll:w}),[E,g,m,w])}const y={withError:function(r){const o=r=>{const o=function(r){return r instanceof e?"validation":r instanceof t?"configuration":r instanceof a?"auth0":null}(r),n=function(r){return{code:r?.code??(r instanceof Error?r.name:void 0)??"unknown_error",message:r?.message??"Unknown error",field:r?.field}}(r);switch(o){case"validation":y.replaceValidationErrors([n]);break;case"configuration":y.replaceDeveloperErrors([n]);break;case"auth0":y.replaceServerErrors([n]);break;default:throw console.error("[auth0-acul-react] Unhandled error:",r),r}};if("function"==typeof r)try{const e=r();return"object"==typeof(n=e)&&null!==n&&"then"in n&&"function"==typeof n.then?e.catch(r=>{throw o(r),r}):e}catch(r){throw o(r),r}var n;return r.catch(r=>{throw o(r),r})},replaceValidationErrors(r,e){e?.byField?s.replacePartial("validation",r,e.byField):s.replace("validation",r)},clearValidationErrors(){s.clear(["validation"])},pushValidationErrors(r){s.push("validation",r)},replaceDeveloperErrors(r,e){e?.byField?s.replacePartial("configuration",r,e.byField):s.replace("configuration",r)},clearDeveloperErrors(){s.clear(["configuration"])},pushDeveloperErrors(r){s.push("configuration",r)},replaceServerErrors(r,e){e?.byField?s.replacePartial("auth0",r,e.byField):s.replace("auth0",r)},clearServerErrors(){s.clear(["auth0"])},pushServerErrors(r){s.push("auth0",r)},syncServerErrors(){const e=r?.()??[];s.replace("auth0",e)}};export{y as errorManager,b as useErrors};
//# sourceMappingURL=errors.js.map
export { useAuth0Themes } from './common/auth0-themes';
export { useCurrentScreen } from './common/current-screen';
export { errorManager, useErrors, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, type ErrorItem, } from './common/errors';
export { errorManager, useErrors, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorType, type ErrorItem, } from './common/errors';
export { ContextHooks } from './context';

@@ -5,0 +5,0 @@ export { useLoginIdentifiers } from './utility/login-identifiers';

import type { AcceptInvitationMembers, CustomOptions } from '@auth0/auth0-acul-js/accept-invitation';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembersOnAcceptInvitation, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const acceptInvitation: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useAcceptInvitation: () => AcceptInvitationMembers;

@@ -5,3 +5,3 @@ import type { ConsentMembers, CustomOptions } from '@auth0/auth0-acul-js/consent';

export declare const deny: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useConsent: () => ConsentMembers;

@@ -5,3 +5,3 @@ import type { CustomizedConsentMembers, CustomOptions } from '@auth0/auth0-acul-js/customized-consent';

export declare const deny: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useCustomizedConsent: () => CustomizedConsentMembers;
import type { DeviceCodeActivationAllowedMembers } from '@auth0/auth0-acul-js/device-code-activation-allowed';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembers, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useDeviceCodeActivationAllowed: () => DeviceCodeActivationAllowedMembers;
import type { DeviceCodeActivationDeniedMembers } from '@auth0/auth0-acul-js/device-code-activation-denied';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembers, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useDeviceCodeActivationDenied: () => DeviceCodeActivationDeniedMembers;
import type { DeviceCodeActivationMembers, ContinueOptions } from '@auth0/auth0-acul-js/device-code-activation';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembers, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const continueMethod: (payload: ContinueOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useDeviceCodeActivation: () => DeviceCodeActivationMembers;

@@ -5,3 +5,3 @@ import type { DeviceCodeConfirmationMembers, CustomOptions } from '@auth0/auth0-acul-js/device-code-confirmation';

export declare const cancel: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useDeviceCodeConfirmation: () => DeviceCodeConfirmationMembers;

@@ -7,3 +7,3 @@ import type { EmailIdentifierChallengeMembers, EmailChallengeOptions, CustomOptions } from '@auth0/auth0-acul-js/email-identifier-challenge';

export { useResend } from '../hooks/utility/resend-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useEmailIdentifierChallenge: () => EmailIdentifierChallengeMembers;

@@ -6,3 +6,3 @@ import type { EmailOTPChallengeMembers, OtpCodeOptions, CustomOptions } from '@auth0/auth0-acul-js/email-otp-challenge';

export { useResend } from '../hooks/utility/resend-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useEmailOTPChallenge: () => EmailOTPChallengeMembers;
import type { EmailVerificationResultMembers } from '@auth0/auth0-acul-js/email-verification-result';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembersOnEmailVerificationResult, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useEmailVerificationResult: () => EmailVerificationResultMembers;
import type { InterstitialCaptchaMembers } from '@auth0/auth0-acul-js/interstitial-captcha';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembers, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useInterstitialCaptcha: () => InterstitialCaptchaMembers;

@@ -6,3 +6,3 @@ import type { LoginEmailVerificationMembers, ContinueWithCodeOptions, ResendCodeOptions } from '@auth0/auth0-acul-js/login-email-verification';

export { useResend } from '../hooks/utility/resend-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useLoginEmailVerification: () => LoginEmailVerificationMembers;

@@ -9,3 +9,3 @@ import type { LoginIdMembers, LoginOptions, FederatedLoginOptions, CustomOptions } from '@auth0/auth0-acul-js/login-id';

export { usePasskeyAutofill } from '../hooks/utility/passkey-autofill';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useLoginId: () => LoginIdMembers;

@@ -6,3 +6,3 @@ import type { LoginPasswordMembers, LoginPasswordOptions, FederatedLoginOptions, SwitchConnectionOptions } from '@auth0/auth0-acul-js/login-password';

export declare const switchConnection: (payload: SwitchConnectionOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useLoginPassword: () => LoginPasswordMembers;

@@ -6,3 +6,3 @@ import type { LoginPasswordlessEmailCodeMembers, SubmitCodeOptions, CustomOptions } from '@auth0/auth0-acul-js/login-passwordless-email-code';

export { useResend } from '../hooks/utility/resend-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useLoginPasswordlessEmailCode: () => LoginPasswordlessEmailCodeMembers;

@@ -6,3 +6,3 @@ import type { LoginPasswordlessSmsOtpMembers, SubmitOTPOptions, CustomOptions } from '@auth0/auth0-acul-js/login-passwordless-sms-otp';

export { useResend } from '../hooks/utility/resend-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useLoginPasswordlessSmsOtp: () => LoginPasswordlessSmsOtpMembers;

@@ -7,3 +7,3 @@ import type { LoginMembers, LoginOptions, FederatedLoginOptions, CustomOptions } from '@auth0/auth0-acul-js/login';

export { useLoginIdentifiers } from '../hooks/utility/login-identifiers';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useLogin: () => LoginMembers;
import type { LogoutAbortedMembers } from '@auth0/auth0-acul-js/logout-aborted';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembers, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useLogoutAborted: () => LogoutAbortedMembers;
import type { LogoutCompleteMembers } from '@auth0/auth0-acul-js/logout-complete';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembers, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useLogoutComplete: () => LogoutCompleteMembers;
import type { LogoutMembers, ConfirmLogoutOptions } from '@auth0/auth0-acul-js/logout';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembers, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const confirmLogout: (payload: ConfirmLogoutOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useLogout: () => LogoutMembers;
import type { MfaBeginEnrollOptionsMembers, MfaEnrollOptions } from '@auth0/auth0-acul-js/mfa-begin-enroll-options';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembers, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const enroll: (payload: MfaEnrollOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaBeginEnrollOptions: () => MfaBeginEnrollOptionsMembers;

@@ -5,3 +5,3 @@ import type { MfaCountryCodesMembers, SelectCountryCodeOptions, CustomOptions } from '@auth0/auth0-acul-js/mfa-country-codes';

export declare const goBack: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaCountryCodes: () => MfaCountryCodesMembers;
import type { MfaDetectBrowserCapabilitiesMembers, CustomOptions } from '@auth0/auth0-acul-js/mfa-detect-browser-capabilities';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembers, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const detectCapabilities: (payload: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaDetectBrowserCapabilities: () => MfaDetectBrowserCapabilitiesMembers;

@@ -8,3 +8,3 @@ import type { MfaEmailChallengeMembers, ContinueOptions, ResendCodeOptions, TryAnotherMethodOptions, CustomOptions } from '@auth0/auth0-acul-js/mfa-email-challenge';

export { useResend } from '../hooks/utility/resend-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaEmailChallenge: () => MfaEmailChallengeMembers;

@@ -5,3 +5,3 @@ import type { MfaEmailListMembers, SelectMfaEmailOptions, CustomOptions } from '@auth0/auth0-acul-js/mfa-email-list';

export declare const goBack: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaEmailList: () => MfaEmailListMembers;
import type { MfaEnrollResultMembers } from '@auth0/auth0-acul-js/mfa-enroll-result';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembersOnMfaEnrollResult, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaEnrollResult: () => MfaEnrollResultMembers;

@@ -5,3 +5,3 @@ import type { MfaLoginOptionsMembers, LoginEnrollOptions, CustomOptions } from '@auth0/auth0-acul-js/mfa-login-options';

export declare const returnToPrevious: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaLoginOptions: () => MfaLoginOptionsMembers;

@@ -5,3 +5,3 @@ import type { MfaOtpChallengeMembers, ContinueOptions, TryAnotherMethodOptions } from '@auth0/auth0-acul-js/mfa-otp-challenge';

export declare const tryAnotherMethod: (payload?: TryAnotherMethodOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaOtpChallenge: () => MfaOtpChallengeMembers;

@@ -5,3 +5,3 @@ import type { MfaOtpEnrollmentCodeMembers, ContinueOptions, TryAnotherMethodOptions } from '@auth0/auth0-acul-js/mfa-otp-enrollment-code';

export declare const tryAnotherMethod: (payload?: TryAnotherMethodOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaOtpEnrollmentCode: () => MfaOtpEnrollmentCodeMembers;

@@ -6,3 +6,3 @@ import type { MfaOtpEnrollmentQrMembers, CustomOptions, ContinueOptions } from '@auth0/auth0-acul-js/mfa-otp-enrollment-qr';

export declare const tryAnotherMethod: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaOtpEnrollmentQr: () => MfaOtpEnrollmentQrMembers;

@@ -6,3 +6,3 @@ import type { MfaPhoneChallengeMembers, ContinueOptions, PickPhoneOptions, PickAuthenticatorOptions } from '@auth0/auth0-acul-js/mfa-phone-challenge';

export declare const tryAnotherMethod: (payload?: PickAuthenticatorOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaPhoneChallenge: () => MfaPhoneChallengeMembers;

@@ -6,3 +6,3 @@ import type { MfaPhoneEnrollmentMembers, CustomOptions, ContinueOptions } from '@auth0/auth0-acul-js/mfa-phone-enrollment';

export declare const tryAnotherMethod: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaPhoneEnrollment: () => MfaPhoneEnrollmentMembers;

@@ -8,3 +8,3 @@ import type { MfaPushChallengePushMembers, WithRememberOptions, CustomOptions } from '@auth0/auth0-acul-js/mfa-push-challenge-push';

export { useMfaPolling } from '../hooks/utility/polling-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaPushChallengePush: () => MfaPushChallengePushMembers;

@@ -1,6 +0,7 @@

import type { MfaPushEnrollmentQrMembers, CustomOptions } from '@auth0/auth0-acul-js/mfa-push-enrollment-qr';
import type { MfaPushEnrollmentQrMembers, CustomOptions, WithRememberOptions } from '@auth0/auth0-acul-js/mfa-push-enrollment-qr';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembersOnMfaPushEnrollmentQr, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const pickAuthenticator: (payload?: CustomOptions) => void | Promise<void>;
export declare const continueMethod: (payload?: WithRememberOptions) => void | Promise<void>;
export { useMfaPolling } from '../hooks/utility/polling-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaPushEnrollmentQr: () => MfaPushEnrollmentQrMembers;

@@ -1,2 +0,2 @@

import o from"@auth0/auth0-acul-js/mfa-push-enrollment-qr";import{useMemo as r}from"react";export{useAuth0Themes}from"../hooks/common/auth0-themes.js";export{useCurrentScreen}from"../hooks/common/current-screen.js";import{errorManager as e}from"../hooks/common/errors.js";export{useErrors}from"../hooks/common/errors.js";import{ContextHooks as s}from"../hooks/context/index.js";import{registerScreen as t}from"../state/instance-store.js";export{useMfaPolling}from"../hooks/utility/polling-manager.js";const n=t(o),{withError:m}=e,u=new s(n),{useUser:a,useTenant:i,useBranding:c,useClient:h,useOrganization:p,usePrompt:f,useScreen:l,useTransaction:j,useUntrustedData:k}=u,x=o=>m(n.pickAuthenticator(o)),g=()=>r(()=>n,[]);export{x as pickAuthenticator,c as useBranding,h as useClient,g as useMfaPushEnrollmentQr,p as useOrganization,f as usePrompt,l as useScreen,i as useTenant,j as useTransaction,k as useUntrustedData,a as useUser};
import o from"@auth0/auth0-acul-js/mfa-push-enrollment-qr";import{useMemo as r}from"react";export{useAuth0Themes}from"../hooks/common/auth0-themes.js";export{useCurrentScreen}from"../hooks/common/current-screen.js";import{errorManager as e}from"../hooks/common/errors.js";export{useErrors}from"../hooks/common/errors.js";import{ContextHooks as s}from"../hooks/context/index.js";import{registerScreen as t}from"../state/instance-store.js";export{useMfaPolling}from"../hooks/utility/polling-manager.js";const n=t(o),{withError:m}=e,u=new s(n),{useUser:a,useTenant:i,useBranding:c,useClient:h,useOrganization:p,usePrompt:f,useScreen:l,useTransaction:j,useUntrustedData:k}=u,x=o=>m(n.pickAuthenticator(o)),g=o=>m(n.continue(o)),d=()=>r(()=>n,[]);export{g as continueMethod,x as pickAuthenticator,c as useBranding,h as useClient,d as useMfaPushEnrollmentQr,p as useOrganization,f as usePrompt,l as useScreen,i as useTenant,j as useTransaction,k as useUntrustedData,a as useUser};
//# sourceMappingURL=mfa-push-enrollment-qr.js.map

@@ -5,3 +5,3 @@ import type { MfaPushListMembers, SelectMfaPushDeviceOptions, CustomOptions } from '@auth0/auth0-acul-js/mfa-push-list';

export declare const goBack: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaPushList: () => MfaPushListMembers;

@@ -5,3 +5,3 @@ import type { MfaPushWelcomeMembers, CustomOptions } from '@auth0/auth0-acul-js/mfa-push-welcome';

export declare const pickAuthenticator: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaPushWelcome: () => MfaPushWelcomeMembers;
import type { MfaRecoveryCodeChallengeNewCodeMembers, ContinueOptions } from '@auth0/auth0-acul-js/mfa-recovery-code-challenge-new-code';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembersOnMfaRecoveryCodeChallengeNewCode, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const continueMethod: (payload?: ContinueOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaRecoveryCodeChallengeNewCode: () => MfaRecoveryCodeChallengeNewCodeMembers;

@@ -5,3 +5,3 @@ import type { MfaRecoveryCodeChallengeMembers, ContinueOptions, CustomOptions } from '@auth0/auth0-acul-js/mfa-recovery-code-challenge';

export declare const tryAnotherMethod: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaRecoveryCodeChallenge: () => MfaRecoveryCodeChallengeMembers;
import type { MfaRecoveryCodeEnrollmentMembers, MfaRecoveryCodeEnrollmentContinueOptions } from '@auth0/auth0-acul-js/mfa-recovery-code-enrollment';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembersOnMfaRecoveryCodeEnrollment, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const continueMethod: (payload: MfaRecoveryCodeEnrollmentContinueOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaRecoveryCodeEnrollment: () => MfaRecoveryCodeEnrollmentMembers;

@@ -9,3 +9,3 @@ import type { MfaSmsChallengeMembers, MfaSmsChallengeOptions, CustomOptions } from '@auth0/auth0-acul-js/mfa-sms-challenge';

export { useResend } from '../hooks/utility/resend-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaSmsChallenge: () => MfaSmsChallengeMembers;

@@ -9,3 +9,3 @@ import type { MfaSmsEnrollmentMembers, CustomOptions } from '@auth0/auth0-acul-js/mfa-sms-enrollment';

export declare const tryAnotherMethod: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaSmsEnrollment: () => MfaSmsEnrollmentMembers;

@@ -5,3 +5,3 @@ import type { MfaSmsListMembers, MfaSmsListOptions, CustomOptions } from '@auth0/auth0-acul-js/mfa-sms-list';

export declare const backAction: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaSmsList: () => MfaSmsListMembers;

@@ -9,3 +9,3 @@ import type { MfaVoiceChallengeMembers, MfaVoiceChallengeContinueOptions, CustomOptions } from '@auth0/auth0-acul-js/mfa-voice-challenge';

export { useResend } from '../hooks/utility/resend-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaVoiceChallenge: () => MfaVoiceChallengeMembers;

@@ -6,3 +6,3 @@ import type { MfaVoiceEnrollmentMembers, ContinueOptions, CustomOptions } from '@auth0/auth0-acul-js/mfa-voice-enrollment';

export declare const selectPhoneCountryCode: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaVoiceEnrollment: () => MfaVoiceEnrollmentMembers;
import type { MfaWebAuthnChangeKeyNicknameMembers, ContinueOptions } from '@auth0/auth0-acul-js/mfa-webauthn-change-key-nickname';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembersOnMfaWebAuthnChangeKeyNickname, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const continueWithNewNickname: (payload: ContinueOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaWebAuthnChangeKeyNickname: () => MfaWebAuthnChangeKeyNicknameMembers;
import type { MfaWebAuthnEnrollmentSuccessMembers, ContinueOptions } from '@auth0/auth0-acul-js/mfa-webauthn-enrollment-success';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembersOnMfaWebAuthnEnrollmentSuccess, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const continueMethod: (payload?: ContinueOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaWebAuthnEnrollmentSuccess: () => MfaWebAuthnEnrollmentSuccessMembers;

@@ -7,3 +7,3 @@ import type { MfaWebAuthnErrorMembers, CustomOptions } from '@auth0/auth0-acul-js/mfa-webauthn-error';

export declare const noThanks: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaWebAuthnError: () => MfaWebAuthnErrorMembers;
import type { MfaWebAuthnNotAvailableErrorMembers, CustomOptions } from '@auth0/auth0-acul-js/mfa-webauthn-not-available-error';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembers, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const tryAnotherMethod: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaWebAuthnNotAvailableError: () => MfaWebAuthnNotAvailableErrorMembers;

@@ -6,3 +6,3 @@ import type { MfaWebAuthnPlatformChallengeMembers, VerifyPlatformAuthenticatorOptions, ReportBrowserErrorOptions, TryAnotherMethodOptions } from '@auth0/auth0-acul-js/mfa-webauthn-platform-challenge';

export declare const tryAnotherMethod: (options?: TryAnotherMethodOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaWebAuthnPlatformChallenge: () => MfaWebAuthnPlatformChallengeMembers;

@@ -7,3 +7,3 @@ import type { MfaWebAuthnPlatformEnrollmentMembers, SubmitPasskeyCredentialOptions, ReportBrowserErrorOptions, CustomOptions } from '@auth0/auth0-acul-js/mfa-webauthn-platform-enrollment';

export declare const refuseEnrollmentOnThisDevice: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaWebAuthnPlatformEnrollment: () => MfaWebAuthnPlatformEnrollmentMembers;

@@ -6,3 +6,3 @@ import type { MfaWebAuthnRoamingChallengeMembers, VerifySecurityKeyOptions, ReportWebAuthnErrorOptions, TryAnotherMethodOptions } from '@auth0/auth0-acul-js/mfa-webauthn-roaming-challenge';

export declare const tryAnotherMethod: (options?: TryAnotherMethodOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaWebAuthnRoamingChallenge: () => MfaWebAuthnRoamingChallengeMembers;

@@ -6,3 +6,3 @@ import type { MfaWebAuthnRoamingEnrollmentMembers, CustomOptions, ShowErrorOptions, TryAnotherMethodOptions } from '@auth0/auth0-acul-js/mfa-webauthn-roaming-enrollment';

export declare const tryAnotherMethod: (payload?: TryAnotherMethodOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useMfaWebAuthnRoamingEnrollment: () => MfaWebAuthnRoamingEnrollmentMembers;

@@ -8,3 +8,3 @@ import type { OrganizationPickerMembers, CustomOptions } from '@auth0/auth0-acul-js/organization-picker';

export declare const skipOrganizationSelection: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useOrganizationPicker: () => OrganizationPickerMembers;
import type { OrganizationSelectionMembers, ContinueWithOrganizationNameOptions } from '@auth0/auth0-acul-js/organization-selection';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembersOnOrganizationSelection, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const continueWithOrganizationName: (payload: ContinueWithOrganizationNameOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useOrganizationSelection: () => OrganizationSelectionMembers;

@@ -5,3 +5,3 @@ import type { PasskeyEnrollmentLocalMembers, CustomOptions, AbortEnrollmentOptions } from '@auth0/auth0-acul-js/passkey-enrollment-local';

export declare const abortPasskeyEnrollment: (payload: AbortEnrollmentOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const usePasskeyEnrollmentLocal: () => PasskeyEnrollmentLocalMembers;

@@ -5,3 +5,3 @@ import type { PasskeyEnrollmentMembers, CustomOptions } from '@auth0/auth0-acul-js/passkey-enrollment';

export declare const abortPasskeyEnrollment: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const usePasskeyEnrollment: () => PasskeyEnrollmentMembers;

@@ -9,3 +9,3 @@ import type { PhoneIdentifierChallengeMembers, PhoneChallengeOptions, CustomOptions } from '@auth0/auth0-acul-js/phone-identifier-challenge';

export { useResend } from '../hooks/utility/resend-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const usePhoneIdentifierChallenge: () => PhoneIdentifierChallengeMembers;

@@ -5,3 +5,3 @@ import type { PhoneIdentifierEnrollmentMembers, PhoneEnrollmentOptions, CustomOptions } from '@auth0/auth0-acul-js/phone-identifier-enrollment';

export declare const returnToPrevious: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const usePhoneIdentifierEnrollment: () => PhoneIdentifierEnrollmentMembers;
import type { RedeemTicketMembers, CustomOptions } from '@auth0/auth0-acul-js/redeem-ticket';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembers, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const continueMethod: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useRedeemTicket: () => RedeemTicketMembers;
import type { ResetPasswordEmailMembers, CustomOptions } from '@auth0/auth0-acul-js/reset-password-email';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembersOnResetPasswordEmail, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export declare const resendEmail: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPasswordEmail: () => ResetPasswordEmailMembers;
import type { ResetPasswordErrorMembers } from '@auth0/auth0-acul-js/reset-password-error';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembersOnResetPasswordError, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPasswordError: () => ResetPasswordErrorMembers;

@@ -7,3 +7,3 @@ import type { ResetPasswordMfaEmailChallengeMembers, ContinueOptions, ResendCodeOptions, TryAnotherMethodOptions } from '@auth0/auth0-acul-js/reset-password-mfa-email-challenge';

export { useResend } from '../hooks/utility/resend-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPasswordMfaEmailChallenge: () => ResetPasswordMfaEmailChallengeMembers;

@@ -5,3 +5,3 @@ import type { ResetPasswordMfaOtpChallengeMembers, ContinueOptions, TryAnotherMethodOptions } from '@auth0/auth0-acul-js/reset-password-mfa-otp-challenge';

export declare const tryAnotherMethod: (payload?: TryAnotherMethodOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPasswordMfaOtpChallenge: () => ResetPasswordMfaOtpChallengeMembers;

@@ -5,3 +5,3 @@ import type { ResetPasswordMfaPhoneChallengeMembers, ContinueOptions, TryAnotherMethodOptions } from '@auth0/auth0-acul-js/reset-password-mfa-phone-challenge';

export declare const tryAnotherMethod: (payload: TryAnotherMethodOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPasswordMfaPhoneChallenge: () => ResetPasswordMfaPhoneChallengeMembers;

@@ -8,3 +8,3 @@ import type { ResetPasswordMfaPushChallengePushMembers, CustomOptions } from '@auth0/auth0-acul-js/reset-password-mfa-push-challenge-push';

export { useMfaPolling } from '../hooks/utility/polling-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPasswordMfaPushChallengePush: () => ResetPasswordMfaPushChallengePushMembers;

@@ -5,3 +5,3 @@ import type { ResetPasswordMfaRecoveryCodeChallengeMembers, CustomOptions } from '@auth0/auth0-acul-js/reset-password-mfa-recovery-code-challenge';

export declare const tryAnotherMethod: (payload?: CustomOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPasswordMfaRecoveryCodeChallenge: () => ResetPasswordMfaRecoveryCodeChallengeMembers;

@@ -8,3 +8,3 @@ import type { ResetPasswordMfaSmsChallengeMembers, MfaSmsChallengeOptions, CustomOptions } from '@auth0/auth0-acul-js/reset-password-mfa-sms-challenge';

export { useResend } from '../hooks/utility/resend-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPasswordMfaSmsChallenge: () => ResetPasswordMfaSmsChallengeMembers;

@@ -8,3 +8,3 @@ import type { ResetPasswordMfaVoiceChallengeMembers, ContinueOptions, CustomOptions } from '@auth0/auth0-acul-js/reset-password-mfa-voice-challenge';

export { useResend } from '../hooks/utility/resend-manager';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPasswordMfaVoiceChallenge: () => ResetPasswordMfaVoiceChallengeMembers;

@@ -6,3 +6,3 @@ import type { ResetPasswordMfaWebAuthnPlatformChallengeMembers, ContinueWithPasskeyOptions, ReportBrowserErrorOptions, TryAnotherMethodOptions } from '@auth0/auth0-acul-js/reset-password-mfa-webauthn-platform-challenge';

export declare const tryAnotherMethod: (options?: TryAnotherMethodOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPasswordMfaWebAuthnPlatformChallenge: () => ResetPasswordMfaWebAuthnPlatformChallengeMembers;

@@ -6,3 +6,3 @@ import type { ResetPasswordMfaWebAuthnRoamingChallengeMembers, UseSecurityKeyOptions, ShowErrorOptions, TryAnotherMethodOptions } from '@auth0/auth0-acul-js/reset-password-mfa-webauthn-roaming-challenge';

export declare const tryAnotherMethod: (options?: TryAnotherMethodOptions) => void | Promise<void>;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPasswordMfaWebAuthnRoamingChallenge: () => ResetPasswordMfaWebAuthnRoamingChallengeMembers;

@@ -6,3 +6,3 @@ import type { ResetPasswordRequestMembers, ResetPasswordRequestOptions, CustomOptions } from '@auth0/auth0-acul-js/reset-password-request';

export { useLoginIdentifiers } from '../hooks/utility/login-identifiers';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPasswordRequest: () => ResetPasswordRequestMembers;
import type { ResetPasswordSuccessMembers } from '@auth0/auth0-acul-js/reset-password-success';
export declare const useUser: () => import("@auth0/auth0-acul-js").UserMembers, useTenant: () => import("@auth0/auth0-acul-js").TenantMembers, useBranding: () => import("@auth0/auth0-acul-js").BrandingMembers, useClient: () => import("@auth0/auth0-acul-js").ClientMembers, useOrganization: () => import("@auth0/auth0-acul-js").OrganizationMembers, usePrompt: () => import("@auth0/auth0-acul-js").PromptMembers, useScreen: () => import("@auth0/auth0-acul-js").ScreenMembersOnResetPasswordSuccess, useTransaction: () => import("@auth0/auth0-acul-js").TransactionMembers, useUntrustedData: () => import("@auth0/auth0-acul-js").UntrustedDataMembers;
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPasswordSuccess: () => ResetPasswordSuccessMembers;

@@ -5,3 +5,3 @@ import type { ResetPasswordMembers, ResetPasswordOptions } from '@auth0/auth0-acul-js/reset-password';

export { usePasswordValidation } from '../hooks/utility/validate-password';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useResetPassword: () => ResetPasswordMembers;

@@ -8,3 +8,3 @@ import type { SignupIdMembers, SignupOptions, FederatedSignupOptions, CustomOptions } from '@auth0/auth0-acul-js/signup-id';

export { useUsernameValidation } from '../hooks/utility/validate-username';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useSignupId: () => SignupIdMembers;

@@ -7,3 +7,3 @@ import type { SignupPasswordMembers, SignupPasswordOptions, FederatedSignupOptions, SwitchConnectionOptions } from '@auth0/auth0-acul-js/signup-password';

export { usePasswordValidation } from '../hooks/utility/validate-password';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useSignupPassword: () => SignupPasswordMembers;

@@ -9,3 +9,3 @@ import type { SignupMembers, SignupOptions, FederatedSignupOptions, CustomOptions } from '@auth0/auth0-acul-js/signup';

export { useUsernameValidation } from '../hooks/utility/validate-username';
export { useCurrentScreen, useErrors, useAuth0Themes, type UseErrorOptions, type UseErrorsResult, type ErrorsResult, type ErrorKind, } from '../hooks';
export { useCurrentScreen, useErrors, useAuth0Themes } from '../hooks';
export declare const useSignup: () => SignupMembers;

@@ -5,6 +5,6 @@ import type { Error as Auth0Error } from '@auth0/auth0-acul-js';

label?: string;
kind?: ErrorKind;
type?: ErrorType;
}
export type ErrorKind = 'auth0' | 'validation' | 'configuration';
export declare const ERROR_KINDS: ErrorKind[];
export type ErrorType = 'auth0' | 'validation' | 'configuration';
export declare const ERROR_TYPES: ErrorType[];
type Bucket = {

@@ -29,18 +29,18 @@ auth0: ReadonlyArray<ErrorItem>;

private normalize;
/** Replace an entire kind with a new list (generating ids if needed). */
replace(kind: ErrorKind, list: Array<Omit<ErrorItem, 'id'> | ErrorItem>): void;
/** Replace an entire type with a new list (generating ids if needed). */
replace(type: ErrorType, list: Array<Omit<ErrorItem, 'id'> | ErrorItem>): void;
/**
* Replace only errors for a specific field within a kind.
* Replace only errors for a specific field within a type.
* - Keeps all existing errors for other fields.
* - Normalizes incoming errors and replaces matching field ones.
*/
replacePartial(kind: ErrorKind, list: Array<Omit<ErrorItem, 'id'> | ErrorItem>, field: string): void;
/** Append one or more items to a kind. */
push(kind: ErrorKind, list: Omit<ErrorItem, 'id'> | ErrorItem | Array<Omit<ErrorItem, 'id'> | ErrorItem>): void;
replacePartial(type: ErrorType, list: Array<Omit<ErrorItem, 'id'> | ErrorItem>, field: string): void;
/** Append one or more items to a type. */
push(type: ErrorType, list: Omit<ErrorItem, 'id'> | ErrorItem | Array<Omit<ErrorItem, 'id'> | ErrorItem>): void;
/** Clear one or more kinds (default: all kinds). */
clear(kinds?: ErrorKind[]): void;
clear(kinds?: ErrorType[]): void;
/**
* Remove errors that match a given id or predicate from specified kinds.
*/
remove(kinds: ErrorKind[] | undefined, test: string | ((e: ErrorItem) => boolean)): void;
remove(kinds: ErrorType[] | undefined, test: string | ((e: ErrorItem) => boolean)): void;
private notify;

@@ -47,0 +47,0 @@ }

@@ -1,2 +0,2 @@

const e=["auth0","validation","configuration"];function t(e,t){if(e===t)return!0;if(e.length!==t.length)return!1;for(let i=0;i<e.length;i++)if(e[i].id!==t[i].id)return!1;return!0}const i=Object.freeze({auth0:Object.freeze([]),validation:Object.freeze([]),configuration:Object.freeze([])});let s=0;const r=new class{constructor(){this.bucket=i,this.listeners=new Set}subscribe(e){return this.listeners.add(e),()=>this.listeners.delete(e)}snapshot(){return this.bucket}normalize(e){return Object.freeze(e.map(e=>Object.freeze({...e,id:e.id??`${Date.now()}-${s++}`})))}replace(e,i){const s=this.normalize(i);t(this.bucket[e],s)||(this.bucket=Object.freeze({...this.bucket,[e]:s}),this.notify())}replacePartial(e,i,s){const r=this.normalize(i),c=this.bucket[e].filter(e=>e.field!==s),n=Object.freeze([...c,...r]);t(this.bucket[e],n)||(this.bucket=Object.freeze({...this.bucket,[e]:n}),this.notify())}push(e,t){const i=Array.isArray(t)?t:[t];if(0===i.length)return;const s=Object.freeze([...this.bucket[e],...this.normalize(i)]);this.bucket=Object.freeze({...this.bucket,[e]:s}),this.notify()}clear(t=e){let i=!1;const s={...this.bucket};for(const e of t)this.bucket[e].length>0&&(s[e]=Object.freeze([]),i=!0);i&&(this.bucket=Object.freeze(s),this.notify())}remove(t=e,i){const s="string"==typeof i?e=>e.id===i:i;let r=!1;const c={...this.bucket};for(const e of t){const t=this.bucket[e].filter(e=>!s(e));t.length!==this.bucket[e].length&&(c[e]=Object.freeze(t),r=!0)}r&&(this.bucket=Object.freeze(c),this.notify())}notify(){for(const e of this.listeners)e()}};export{e as ERROR_KINDS,r as errorStore};
const e=["auth0","validation","configuration"];function t(e,t){if(e===t)return!0;if(e.length!==t.length)return!1;for(let i=0;i<e.length;i++)if(e[i].id!==t[i].id)return!1;return!0}const i=Object.freeze({auth0:Object.freeze([]),validation:Object.freeze([]),configuration:Object.freeze([])});let s=0;const r=new class{constructor(){this.bucket=i,this.listeners=new Set}subscribe(e){return this.listeners.add(e),()=>this.listeners.delete(e)}snapshot(){return this.bucket}normalize(e){return Object.freeze(e.map(e=>Object.freeze({...e,id:e.id??`${Date.now()}-${s++}`})))}replace(e,i){const s=this.normalize(i);t(this.bucket[e],s)||(this.bucket=Object.freeze({...this.bucket,[e]:s}),this.notify())}replacePartial(e,i,s){const r=this.normalize(i),c=this.bucket[e].filter(e=>e.field!==s),n=Object.freeze([...c,...r]);t(this.bucket[e],n)||(this.bucket=Object.freeze({...this.bucket,[e]:n}),this.notify())}push(e,t){const i=Array.isArray(t)?t:[t];if(0===i.length)return;const s=Object.freeze([...this.bucket[e],...this.normalize(i)]);this.bucket=Object.freeze({...this.bucket,[e]:s}),this.notify()}clear(t=e){let i=!1;const s={...this.bucket};for(const e of t)this.bucket[e].length>0&&(s[e]=Object.freeze([]),i=!0);i&&(this.bucket=Object.freeze(s),this.notify())}remove(t=e,i){const s="string"==typeof i?e=>e.id===i:i;let r=!1;const c={...this.bucket};for(const e of t){const t=this.bucket[e].filter(e=>!s(e));t.length!==this.bucket[e].length&&(c[e]=Object.freeze(t),r=!0)}r&&(this.bucket=Object.freeze(c),this.notify())}notify(){for(const e of this.listeners)e()}};export{e as ERROR_TYPES,r as errorStore};
//# sourceMappingURL=error-store.js.map

@@ -1,2 +0,2 @@

globalThis.__ACUL_SDK_NAME__="@auth0/auth0-acul-react",globalThis.__ACUL_SDK_VERSION__="1.0.0-alpha.2";
globalThis.__ACUL_SDK_NAME__="@auth0/auth0-acul-react",globalThis.__ACUL_SDK_VERSION__="1.0.0-alpha.3";
//# sourceMappingURL=telemetry.js.map
{
"name": "@auth0/auth0-acul-react",
"version": "1.0.0-alpha.2",
"version": "1.0.0-alpha.3",
"main": "dist/index.js",

@@ -53,3 +53,3 @@ "type": "module",

"dependencies": {
"@auth0/auth0-acul-js": "1.0.0-alpha.2"
"@auth0/auth0-acul-js": "1.0.0-alpha.3"
},

@@ -56,0 +56,0 @@ "files": [

+77
-77

@@ -130,3 +130,3 @@ # Auth0 ACUL React SDK

```
Refer to our [API Reference](#-api-reference) for the full list of available types and interfaces.
Refer to our [API Reference](#api-reference) for the full list of available types and interfaces.

@@ -141,7 +141,7 @@ ---

|--------|--------------------|-------------------|--------------------------------------------------------------------------------------------|
| 1 | login | login | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.Login) |
| 2 | loginId | login-id | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.LoginId) |
| 3 | login-password | login-password | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.LoginPassword) |
| 4 | signup-id | signup-id | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.SignupId) |
| 5 | signup-password | signup-password | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.SignupPassword) |
| 1 | login | login | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Login) |
| 2 | login-id | login-id | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Login-Id) |
| 3 | login-password | login-password | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Login-Password) |
| 4 | signup-id | signup-id | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Signup-Id) |
| 5 | signup-password | signup-password | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Signup-Password) |

@@ -153,73 +153,73 @@ <details>

|--------|--------------------------------|-------------------------------------------|-------------------------------------------------------------------------------------------------------|
| 6 | login-passwordless | login-passwordless-email-code | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.LoginPasswordlessEmailCode) |
| 7 | login-passwordless | login-passwordless-sms-otp | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.LoginPasswordlessSmsOtp) |
| 8 | passkeys | passkey-enrollment | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.PasskeyEnrollment) |
| 9 | passkeys | passkey-enrollment-local | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.PasskeyEnrollmentLocal) |
| 10 | phone-identifier-enrollment | phone-identifier-enrollment | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.PhoneIdentifierEnrollment) |
| 11 | phone-identifier-challenge | phone-identifier-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.PhoneIdentifierChallenge) |
| 12 | email-identifier-challenge | email-identifier-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.EmailIdentifierChallenge) |
| 13 | captcha | interstitial-captcha | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.InterstitialCaptcha) |
| 14 | reset-password | reset-password-email | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.ResetPasswordEmail) |
| 15 | reset-password | reset-password-request | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.ResetPasswordRequest) |
| 16 | reset-password | reset-password | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.ResetPassword) |
| 17 | reset-password | reset-password-error | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.ResetPasswordError) |
| 18 | reset-password | reset-password-success | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.ResetPasswordSuccess) |
| 19 | signup | signup | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.Signup) |
| 20 | mfa | mfa-detect-browser-capabilities | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaDetectBrowserCapabilities) |
| 21 | mfa | mfa-enroll-result | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaEnrollResult) |
| 22 | mfa | mfa-begin-enroll-options | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaBeginEnrollOptions) |
| 23 | mfa | mfa-login-options | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaLoginOptions) |
| 24 | mfa-push | mfa-push-enrollment-qr | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaPushEnrollmentQr) |
| 25 | mfa-push | mfa-push-welcome | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaPushWelcome) |
| 26 | mfa-push | mfa-push-challenge-push | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaPushChallengePush) |
| 27 | mfa-push | mfa-push-list | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaPushList) |
| 28 | mfa-sms | mfa-country-codes | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaCountryCodes) |
| 29 | mfa-sms | mfa-sms-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaSmsChallenge) |
| 30 | mfa-sms | mfa-sms-enrollment | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaSmsEnrollment) |
| 31 | mfa-sms | mfa-sms-list | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaSmsList) |
| 32 | mfa-email | mfa-email-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaEmailChallenge) |
| 33 | mfa-email | mfa-email-list | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaEmailList) |
| 34 | invitatino | accept-invitation | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.AcceptInvitation) |
| 35 | organizations | organization-picker | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.OrganizationPicker) |
| 36 | organizations | organization-selection | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.OrganizationSelection) |
| 37 | reset-password | mfa-otp-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaOtpChallenge) |
| 38 | mfa-otp | mfa-otp-enrollment-code | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaOtpEnrollmentCode) |
| 39 | mfa-otp | mfa-otp-enrollment-qr | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaOtpEnrollmentQr) |
| 40 | reset-password | reset-password-mfa-email-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.ResetPasswordMfaEmailChallenge) |
| 41 | reset-password | reset-password-mfa-push-challenge-push | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.ResetPasswordMfaPushChallengePush)|
| 42 | reset-password | mfa-sms-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.ResetPasswordMfaSmsChallenge) |
| 43 | reset-password | reset-password-mfa-otp-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.OrganizationSelection) |
| 44 | mfa-phone | mfa-phone-enrollment | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaPhoneEnrollment) |
| 45 | mfa-voice | mfa-voice-enrollment | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaVoiceEnrollment) |
| 46 | mfa-recovery-code | mfa-recovery-code-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaRecoveryCodeChallenge) |
| 47 | device-flow | device-code-activation-allowed | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.DeviceCodeActivationAllowed) |
| 48 | device-flow | device-code-activation-denied | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.DeviceCodeActivationDenied) |
| 49 | device-flow | device-code-activation | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.DeviceCodeActivation) |
| 50 | reset-password | reset-password-mfa-recovery-code-challenge | [Link](https://auth0.github.io/universallogin/classes/Classes.ResetPasswordMfaRecoveryCodeChallenge) |
| 51 | reset-password | reset-password-mfa-voice | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.ResetPasswordMfaVoiceChallenge) |
| 52 | common | redeem-ticket | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.RedeemTicket) |
| 53 | device-flow | device-code-confirmation | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.DeviceCodeConfirmation) |
| 54 | mfa-phone | mfa-phone-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaPhoneChallenge) |
| 55 | mfa-voice | mfa-voice-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaVoiceChallenge) |
| 56 | mfa-recovery-code | mfa-recovery-code-enrollment | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaRecoveryCodeEnrollment) |
| 57 | reset-password | reset-password-mfa-phone-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.ResetPasswordMfaPhoneChallenge) |
| 58 | mfa-recovery-code | mfa-recovery-code-challenge-new-code | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaRecoveryCodeChallengeNewCode) |
| 59 | logout | logout | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.Logout) |
| 60 | logout | logout-aborted | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.LogoutAborted) |
| 61 | logout | logout-complete | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.LogoutComplete) |
| 62 | email-verification | email-verification-result | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.EmailVerificationResult) |
| 63 | login-email-verification | login-email-verification | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.LoginEmailVerification) |
| 64 |mfa-webauthn | mfa-webauthn-platform-enrollment | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaWebAuthnPlatformEnrollment) |
| 65 |mfa-webauthn | mfa-webauthn-error | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaWebAuthnError) |
| 66 |mfa-webauthn | mfa-webauthn-roaming-enrollment | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaWebAuthnRoamingEnrollment) |
| 67 |mfa-webauthn | mfa-webauthn-roaming-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaWebAuthnRoamingChallenge) |
| 68 |mfa-webauthn | mfa-webauthn-platform-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaWebAuthnPlatformChallenge) |
| 69 |mfa-webauthn | mfa-webauthn-enrollment-success | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaWebAuthnEnrollmentSuccess) |
| 70 |mfa-webauthn | mfa-webauthn-change-key-nickname | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaWebAuthnChangeKeyNickname) |
| 71 |mfa-webauthn | mfa-webauthn-not-available-error | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.MfaWebAuthnNotAvailableError) |
| 72 |reset-password | reset-password-mfa-webauthn-platform-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.ResetPasswordMfaWebAuthnPlatformChallenge) |
| 73 |reset-password | reset-password-mfa-webauthn-roaming-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.ResetPasswordMfaWebAuthnRoamingChallenge) |
| 74 |consent | consent | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.consent) |
| 75 |customized-consent | customized-consent | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.CustomizedConsent) |
| 76 |email-otp-challenge | email-otp-challenge | [Link](https://acul-docs.netlify.app/auth0-acul-react/modules/Screens.EmailOTPChallenge) |
| 6 | login-passwordless | login-passwordless-email-code | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Login-Passwordless-Email-Code) |
| 7 | login-passwordless | login-passwordless-sms-otp | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Login-Passwordless-Sms-Otp) |
| 8 | passkeys | passkey-enrollment | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Passkey-Enrollment) |
| 9 | passkeys | passkey-enrollment-local | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Passkey-Enrollment-Local) |
| 10 | phone-identifier-enrollment | phone-identifier-enrollment | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Phone-Identifier-Enrollment) |
| 11 | phone-identifier-challenge | phone-identifier-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Phone-Identifier-Challenge) |
| 12 | email-identifier-challenge | email-identifier-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Email-Identifier-Challenge) |
| 13 | captcha | interstitial-captcha | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Interstitial-Captcha) |
| 14 | reset-password | reset-password-email | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Reset-Password-Email) |
| 15 | reset-password | reset-password-request | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Reset-Password-Request) |
| 16 | reset-password | reset-password | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Reset-Password) |
| 17 | reset-password | reset-password-error | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Reset-Password-Error) |
| 18 | reset-password | reset-password-success | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Reset-Password-Success) |
| 19 | signup | signup | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Signup) |
| 20 | mfa | mfa-detect-browser-capabilities | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Detect-Browser-Capabilities) |
| 21 | mfa | mfa-enroll-result | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Enroll-Result) |
| 22 | mfa | mfa-begin-enroll-options | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Begin-Enroll-Options) |
| 23 | mfa | mfa-login-options | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Login-Options) |
| 24 | mfa-push | mfa-push-enrollment-qr | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Push-Enrollment-Qr) |
| 25 | mfa-push | mfa-push-welcome | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Push-Welcome) |
| 26 | mfa-push | mfa-push-challenge-push | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Push-Challenge-Push) |
| 27 | mfa-push | mfa-push-list | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Push-List) |
| 28 | mfa-sms | mfa-country-codes | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Country-Codes) |
| 29 | mfa-sms | mfa-sms-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Sms-Challenge) |
| 30 | mfa-sms | mfa-sms-enrollment | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Sms-Enrollment) |
| 31 | mfa-sms | mfa-sms-list | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Sms-List) |
| 32 | mfa-email | mfa-email-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Email-Challenge) |
| 33 | mfa-email | mfa-email-list | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Email-List) |
| 34 | invitatino | accept-invitation | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Accept-Invitation) |
| 35 | organizations | organization-picker | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Organization-Picker) |
| 36 | organizations | organization-selection | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Organization-Selection) |
| 37 | reset-password | mfa-otp-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Otp-Challenge) |
| 38 | mfa-otp | mfa-otp-enrollment-code | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Otp-Enrollment-Code) |
| 39 | mfa-otp | mfa-otp-enrollment-qr | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Otp-Enrollment-Qr) |
| 40 | reset-password | reset-password-mfa-email-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Reset-Password-Mfa-Email-Challenge) |
| 41 | reset-password | reset-password-mfa-push-challenge-push | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Reset-Password-Mfa-Push-Challenge-Push)|
| 42 | reset-password | mfa-sms-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Reset-Password-Mfa-Sms-Challenge) |
| 43 | reset-password | reset-password-mfa-otp-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Organization-Selection) |
| 44 | mfa-phone | mfa-phone-enrollment | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Phone-Enrollment) |
| 45 | mfa-voice | mfa-voice-enrollment | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Voice-Enrollment) |
| 46 | mfa-recovery-code | mfa-recovery-code-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Recovery-Code-Challenge) |
| 47 | device-flow | device-code-activation-allowed | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Device-Code-Activation-Allowed) |
| 48 | device-flow | device-code-activation-denied | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Device-Code-Activation-Denied) |
| 49 | device-flow | device-code-activation | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Device-Code-Activation) |
| 50 | reset-password | reset-password-mfa-recovery-code-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Reset-Password-Mfa-Recovery-Code-Challenge) |
| 51 | reset-password | reset-password-mfa-voice | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Reset-Password-Mfa-Voice-Challenge) |
| 52 | common | redeem-ticket | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Redeem-Ticket) |
| 53 | device-flow | device-code-confirmation | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Device-Code-Confirmation) |
| 54 | mfa-phone | mfa-phone-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Phone-Challenge) |
| 55 | mfa-voice | mfa-voice-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Voice-Challenge) |
| 56 | mfa-recovery-code | mfa-recovery-code-enrollment | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Recovery-Code-Enrollment) |
| 57 | reset-password | reset-password-mfa-phone-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Reset-Password-Mfa-Phone-Challenge) |
| 58 | mfa-recovery-code | mfa-recovery-code-challenge-new-code | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-Recovery-Code-Challenge-New-Code) |
| 59 | logout | logout | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Logout) |
| 60 | logout | logout-aborted | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Logout-Aborted) |
| 61 | logout | logout-complete | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Logout-Complete) |
| 62 | email-verification | email-verification-result | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Email-Verification-Result) |
| 63 | login-email-verification | login-email-verification | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Login-Email-Verification) |
| 64 |mfa-webauthn | mfa-webauthn-platform-enrollment | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-WebAuthn-Platform-Enrollment) |
| 65 |mfa-webauthn | mfa-webauthn-error | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-WebAuthn-Error) |
| 66 |mfa-webauthn | mfa-webauthn-roaming-enrollment | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-WebAuthn-Roaming-Enrollment) |
| 67 |mfa-webauthn | mfa-webauthn-roaming-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-WebAuthn-Roaming-Challenge) |
| 68 |mfa-webauthn | mfa-webauthn-platform-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-WebAuthn-Platform-Challenge) |
| 69 |mfa-webauthn | mfa-webauthn-enrollment-success | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-WebAuthn-Enrollment-Success) |
| 70 |mfa-webauthn | mfa-webauthn-change-key-nickname | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-WebAuthn-Change-Key-Nickname) |
| 71 |mfa-webauthn | mfa-webauthn-not-available-error | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Mfa-WebAuthn-Not-Available-Error) |
| 72 |reset-password | reset-password-mfa-webauthn-platform-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Reset-Password-Mfa-WebAuthn-Platform-Challenge) |
| 73 |reset-password | reset-password-mfa-webauthn-roaming-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Reset-Password-Mfa-WebAuthn-Roaming-Challenge) |
| 74 |consent | consent | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.consent) |
| 75 |customized-consent | customized-consent | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Customized-Consent) |
| 76 |email-otp-challenge | email-otp-challenge | [Link](https://auth0.github.io/universal-login/auth0-acul-react/modules/Screens.Email-OTP-Challenge) |
</details>

@@ -226,0 +226,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet