@ory/elements-react 1.0.0-next.0 → 1.0.0-next.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,17 +1,19 @@
1
1
  import { UiNodeGroupEnum, UiText, UiNode, UiNodeInputAttributes, UiNodeAnchorAttributes, UiNodeTextAttributes, UiNodeImageAttributes, ConfigurationParameters, FlowType, LoginFlow, RegistrationFlow, RecoveryFlow, VerificationFlow, SettingsFlow, FlowError, UpdateLoginFlowBody, UpdateRegistrationFlowBody, UpdateVerificationFlowBody, UpdateRecoveryFlowBody, UpdateSettingsFlowBody, OnRedirectHandler } from '@ory/client-fetch';
2
- import * as React from 'react';
3
- import React__default, { PropsWithChildren, ComponentType, DetailedHTMLProps, HTMLAttributes, ComponentPropsWithoutRef, Dispatch, FormEvent, MouseEventHandler } from 'react';
2
+ import * as react from 'react';
3
+ import { PropsWithChildren, ComponentType, DetailedHTMLProps, HTMLAttributes, ComponentPropsWithoutRef, FormEventHandler, MouseEventHandler, Dispatch } from 'react';
4
4
  import * as react_jsx_runtime from 'react/jsx-runtime';
5
5
  import { IntlShape } from 'react-intl';
6
6
 
7
- type OryCardHeaderProps = {};
7
+ declare function OryTwoStepCard(): react_jsx_runtime.JSX.Element;
8
+
9
+ type OryCardHeaderProps = Record<string, never>;
8
10
  declare function OryCardHeader(): react_jsx_runtime.JSX.Element;
9
11
 
10
- type OryCardContentProps = PropsWithChildren<{}>;
12
+ type OryCardContentProps = PropsWithChildren;
11
13
  declare function OryCardContent({ children }: OryCardContentProps): react_jsx_runtime.JSX.Element;
12
- type OryCardFooterProps = {};
13
- declare function OryCardFooter({}: OryCardFooterProps): react_jsx_runtime.JSX.Element;
14
- type OryCardProps = PropsWithChildren<{}>;
14
+ type OryCardFooterProps = Record<string, never>;
15
+ declare function OryCardFooter(): react_jsx_runtime.JSX.Element;
16
+ type OryCardProps = PropsWithChildren;
15
17
  declare function OryCard({ children }: OryCardProps): react_jsx_runtime.JSX.Element;
16
18
  /**
17
19
  * Card components are used to show login, registration, recovery, and verification flows.
@@ -36,10 +38,10 @@ type OryCardComponents = {
36
38
  /**
37
39
  * The card logo is the logo of the card container.
38
40
  */
39
- CardLogo: ComponentType<{}>;
41
+ CardLogo: ComponentType;
40
42
  };
41
43
 
42
- type HorizontalDividerProps = {};
44
+ type HorizontalDividerProps = Record<string, never>;
43
45
  declare function OryFormGroupDivider(): react_jsx_runtime.JSX.Element | null;
44
46
 
45
47
  type HeadlessGroupProps = PropsWithChildren<{
@@ -64,8 +66,10 @@ type HeadlessSocialButtonContainerProps = PropsWithChildren<{
64
66
  type HeadlessSocialButtonProps = PropsWithChildren<{
65
67
  node: UiNode;
66
68
  attributes: UiNodeInputAttributes;
69
+ onClick?: () => void;
67
70
  }>;
68
71
  declare function OryFormSocialButtons({ children, hideDivider, }: HeadlessSocialButtonsProps): react_jsx_runtime.JSX.Element | null;
72
+ declare function OryFormSocialButtonsForm(): react_jsx_runtime.JSX.Element | null;
69
73
 
70
74
  type OryFormComponents = {
71
75
  Button: ComponentType<HeadlessButtonProps>;
@@ -84,7 +88,7 @@ type OryFormComponents = {
84
88
  FormGroup: ComponentType<HeadlessGroupContainerProps>;
85
89
  MessageContainer: ComponentType<HeadlessMessagesProps>;
86
90
  Message: ComponentType<HeadlessMessageProps>;
87
- CurrentIdentifierButton: ComponentType<HeadlessButtonProps>;
91
+ CurrentIdentifierButton: ComponentType<HeadlessCurrentIdentifierProps>;
88
92
  };
89
93
  type OryFormProps = PropsWithChildren;
90
94
  declare function OryForm({ children }: OryFormProps): string | react_jsx_runtime.JSX.Element;
@@ -93,6 +97,12 @@ type HeadlessButtonProps = {
93
97
  attributes: UiNodeInputAttributes;
94
98
  node: UiNode;
95
99
  } & Omit<ComponentPropsWithoutRef<"button">, "children">;
100
+ type HeadlessCurrentIdentifierProps = {
101
+ attributes: UiNodeInputAttributes;
102
+ node: UiNode;
103
+ onClick?: () => void;
104
+ href?: string;
105
+ } & Omit<ComponentPropsWithoutRef<"button">, "children" | "onClick">;
96
106
  type HeadlessLinkButtonProps = {
97
107
  attributes: UiNodeAnchorAttributes;
98
108
  node: UiNode;
@@ -106,8 +116,7 @@ type HeadlessTextProps = {
106
116
  node: UiNode;
107
117
  };
108
118
  type HeadlessAuthMethodListItemProps = {
109
- setGroups: Dispatch<React__default.SetStateAction<string[]>>;
110
- setStep: Dispatch<React__default.SetStateAction<number>>;
119
+ onClick: () => void;
111
120
  group: string;
112
121
  };
113
122
  type HeadlessImageProps = {
@@ -116,12 +125,12 @@ type HeadlessImageProps = {
116
125
  };
117
126
  type FormValues = Record<string, string | boolean | number | undefined>;
118
127
  type HeadlessFormProps = ComponentPropsWithoutRef<"form"> & {
119
- onSubmit: (e: FormEvent<HTMLFormElement>) => void | Promise<void>;
128
+ onSubmit: FormEventHandler<HTMLFormElement>;
120
129
  };
121
130
  type HeadlessInputProps = {
122
131
  attributes: UiNodeInputAttributes;
123
132
  node: UiNode;
124
- onClick: MouseEventHandler;
133
+ onClick?: MouseEventHandler;
125
134
  };
126
135
  type OryFlowComponents = OryFormComponents & OryCardComponents;
127
136
 
@@ -153,9 +162,13 @@ type OryClientConfiguration = {
153
162
  options?: Partial<ConfigurationParameters>;
154
163
  };
155
164
  project: {
156
- registrationEnabled: boolean;
157
- verificationEnabled: boolean;
158
- recoveryEnabled: boolean;
165
+ registration_enabled: boolean;
166
+ verification_enabled: boolean;
167
+ recovery_enabled: boolean;
168
+ recovery_ui_url: string;
169
+ registration_ui_url: string;
170
+ verification_ui_url: string;
171
+ login_ui_url: string;
159
172
  };
160
173
  };
161
174
 
@@ -359,7 +372,54 @@ var de = {
359
372
  "verification.registration-button": "Registrieren",
360
373
  "verification.registration-label": "Sie haben noch kein Konto?",
361
374
  "verification.title": "Verifizieren Sie ihr Konto",
362
- "verification.back-button": "Zurück"
375
+ "verification.back-button": "Zurück",
376
+ "two-step.code.description": "Ein Bestätigungscode wird an Ihre E-Mail gesendet.",
377
+ "two-step.code.title": "E-Mail-Code",
378
+ "two-step.passkey.description": "Verwenden Sie die Fingerabdruck- oder Gesichtserkennung Ihres Geräts",
379
+ "two-step.passkey.title": "Passwort (empfohlen)",
380
+ "two-step.password.description": "Geben Sie Ihr Passwort ein, das mit Ihrem Konto verknüpft ist",
381
+ "two-step.password.title": "Passwort",
382
+ "two-step.webauthn.description": "Verwenden Sie Ihren Sicherheitsschlüssel zur Authentifizierung",
383
+ "two-step.webauthn.title": "Sicherheitsschlüssel",
384
+ "identities.messages.1070014": "Login- und Link-Zugangsdaten",
385
+ "identities.messages.1070015": "Bitte schließen Sie die Captcha-Challenge ab, um fortzufahren.",
386
+ "identities.messages.4000038": "Die Captcha-Überprüfung ist fehlgeschlagen. Bitte versuchen Sie es erneut.",
387
+ "login.cancel-button": "Abbrechen",
388
+ "login.cancel-label": "Nicht das richtige Konto?",
389
+ "identities.messages.1010023": "Code an {address} senden",
390
+ "identities.messages.1010016": "Sie haben versucht, sich mit „{duplicateIdentifier}“ anzumelden, aber diese E-Mail-Adresse wird bereits von einem anderen Konto verwendet. \nMelden Sie sich mit einer der folgenden Optionen bei Ihrem Konto an, um Ihr Konto „{duplicateIdentifier}“ bei „{provider}“ als weitere Anmeldemöglichkeit hinzuzufügen.",
391
+ "identities.messages.1010017": "",
392
+ "identities.messages.1010018": "",
393
+ "identities.messages.1010019": "",
394
+ "identities.messages.1010020": "",
395
+ "identities.messages.1010021": "",
396
+ "identities.messages.1010022": "",
397
+ "identities.messages.1040007": "",
398
+ "identities.messages.1040008": "",
399
+ "identities.messages.1040009": "",
400
+ "identities.messages.1050019": "",
401
+ "identities.messages.1050020": "",
402
+ "identities.messages.4000037": "",
403
+ "identities.messages.4010009": "",
404
+ "identities.messages.4010010": "",
405
+ "input.placeholder": "{placeholder} eingeben",
406
+ "card.header.parts.code": "einem Code per E-Mail",
407
+ "card.header.parts.identifier-first": "Ihr {identifierLabel}",
408
+ "card.header.parts.oidc": "ein sozialer Anbieter",
409
+ "card.header.parts.passkey": "ein Passkey",
410
+ "card.header.parts.password.login": "Ihrer {identifierLabel} und Ihrem Passwort",
411
+ "card.header.parts.password.registration": "Ihrer {identifierLabel} und einem Passwort",
412
+ "card.header.parts.webauthn": "ein Sicherheitsschlüssel",
413
+ "recovery.subtitle": "Geben Sie die mit Ihrem Konto verknüpfte E-Mail-Adresse ein, um einen einmaligen Zugangscode zu erhalten",
414
+ "settings.subtitle": "Aktualisieren Sie Ihre Kontoeinstellungen",
415
+ "verification.subtitle": "Geben Sie die mit Ihrem Konto verknüpfte E-Mail-Adresse ein, um es zu bestätigen",
416
+ "card.header.description.login": "Melden Sie sich mit {identifierLabel} an",
417
+ "card.header.description.registration": "Registrieren Sie sich mit {identifierLabel}",
418
+ "login.subtitle": "Melden Sie sich mit {parts} an",
419
+ "login.subtitle-refresh": "Bestätigen Sie ihre Identität mit {parts}",
420
+ "misc.or": "oder",
421
+ "registration.subtitle": "Registrieren Sie sich mit {parts}",
422
+ "forms.label.forgot-password": "Passwort vergessen?"
363
423
  };
364
424
 
365
425
  var en = {
@@ -384,20 +444,30 @@ var en = {
384
444
  "identities.messages.1010005": "Verify",
385
445
  "identities.messages.1010006": "Authentication code",
386
446
  "identities.messages.1010007": "Backup recovery code",
387
- "identities.messages.1010008": "Use security key",
447
+ "identities.messages.1010008": "Sign in with hardware key",
388
448
  "identities.messages.1010009": "Use Authenticator",
389
449
  "identities.messages.1010010": "Use backup recovery code",
390
- "identities.messages.1010011": "Continue with security key",
450
+ "identities.messages.1010011": "Sign in with hardware key",
391
451
  "identities.messages.1010012": "Prepare your WebAuthn device (e.g. security key, biometrics scanner, ...) and press continue.",
392
452
  "identities.messages.1010013": "Continue",
393
- "identities.messages.1010014": "An email containing a code has been sent to the email address you provided. If you have not received an email, check the spelling of the address and retry the login.",
394
- "identities.messages.1010015": "Sign in with code",
453
+ "identities.messages.1010014": "A code has been sent to the address you provided. If you have not received an message, check the spelling of the address and retry the login.",
454
+ "identities.messages.1010015": "Send sign in code",
455
+ "identities.messages.1010016": "You tried to sign in with \"{duplicateIdentifier}\", but that email is already used by another account. Sign in to your account with one of the options below to add your account \"{duplicateIdentifier}\" at \"{provider}\" as another way to sign in.",
456
+ "identities.messages.1010017": "Sign in and link",
457
+ "identities.messages.1010018": "Confirm with {provider}",
458
+ "identities.messages.1010019": "Request code to continue",
459
+ "identities.messages.1010021": "Sign in with passkey",
460
+ "identities.messages.1010022": "Sign in with password",
461
+ "identities.messages.1010023": "Send code to {address}",
395
462
  "identities.messages.1040001": "Sign up",
396
463
  "identities.messages.1040002": "Sign up with {provider}",
397
464
  "identities.messages.1040003": "Continue",
398
465
  "identities.messages.1040004": "Sign up with security key",
399
- "identities.messages.1040005": "An email containing a code has been sent to the email address you provided. If you have not received an email, check the spelling of the address and retry the registration.",
400
- "identities.messages.1040006": "Sign up with code",
466
+ "identities.messages.1040005": "A code has been sent to the address(es) you provided. If you have not received a message, check the spelling of the address and retry the registration.",
467
+ "identities.messages.1040006": "Send sign up code",
468
+ "identities.messages.1040007": "Sign up with passkey",
469
+ "identities.messages.1040008": "Back",
470
+ "identities.messages.1040009": "Please choose a credential to authenticate yourself with.",
401
471
  "identities.messages.1050001": "Your changes have been saved!",
402
472
  "identities.messages.1050002": "Link {provider}",
403
473
  "identities.messages.1050003": "Unlink {provider}",
@@ -411,11 +481,13 @@ var en = {
411
481
  "identities.messages.1050011": "Confirm backup recovery codes",
412
482
  "identities.messages.1050012": "Add security key",
413
483
  "identities.messages.1050013": "Name of the security key",
414
- "identities.messages.1050014": "<del>Used</del>",
484
+ "identities.messages.1050014": "Secret was used at {used_at, date, long}",
415
485
  "identities.messages.1050015": "{secrets_list}",
416
486
  "identities.messages.1050016": "Disable this method",
417
487
  "identities.messages.1050017": "This is your authenticator app secret. Use it if you can not scan the QR code.",
418
488
  "identities.messages.1050018": "Remove security key \"{display_name}\"",
489
+ "identities.messages.1050019": "Add passkey",
490
+ "identities.messages.1050020": "Remove passkey \"{display_name}\"",
419
491
  "identities.messages.1060001": "You successfully recovered your account. Please change your password or set up an alternative login method (e.g. social sign in) within the next {privileged_session_expires_at_unix_until_minutes} minutes.",
420
492
  "identities.messages.1060002": "An email containing a recovery link has been sent to the email address you provided. If you have not received an email, check the spelling of the address and make sure to use the address you registered with.",
421
493
  "identities.messages.1060003": "An email containing a recovery code has been sent to the email address you provided. If you have not received an email, check the spelling of the address and make sure to use the address you registered with.",
@@ -432,6 +504,8 @@ var en = {
432
504
  "identities.messages.1070011": "Verification code",
433
505
  "identities.messages.1070012": "Registration code",
434
506
  "identities.messages.1070013": "Login code",
507
+ "identities.messages.1070014": "Login and link credential",
508
+ "identities.messages.1070015": "Please complete the captcha challenge to continue.",
435
509
  "identities.messages.1080001": "An email containing a verification link has been sent to the email address you provided. If you have not received an email, check the spelling of the address and make sure to use the address you registered with.",
436
510
  "identities.messages.1080002": "You successfully verified your email address.",
437
511
  "identities.messages.1080003": "An email containing a verification code has been sent to the email address you provided. If you have not received an email, check the spelling of the address and make sure to use the address you registered with.",
@@ -461,7 +535,7 @@ var en = {
461
535
  "identities.messages.4000024": "minimum {min_items} items allowed, but found {actual_items} items",
462
536
  "identities.messages.4000025": "items at index {index_a} and {index_b} are equal",
463
537
  "identities.messages.4000026": "expected {allowed_types_list}, but got {actual_type}",
464
- "identities.messages.4000027": "An account with the same identifier (email, phone, username, ...) exists already. Please sign in to your existing account and link your social profile in the settings page.",
538
+ "identities.messages.4000027": "An account with the same identifier (email, phone, username, ...) exists already. Please sign in to your existing account to link your social profile.",
465
539
  "identities.messages.4000028": "You tried signing in with {credential_identifier_hint} which is already in use by another account. You can sign in using {available_credential_types_list}. You can sign in using one of the following social sign in providers: {Available_oidc_providers_list}.",
466
540
  "identities.messages.4000029": "must be equal to constant {expected}",
467
541
  "identities.messages.4000030": "const failed",
@@ -471,6 +545,8 @@ var en = {
471
545
  "identities.messages.4000034": "The password has been found in data breaches and must no longer be used.",
472
546
  "identities.messages.4000035": "This account does not exist or has not setup sign in with code.",
473
547
  "identities.messages.4000036": "The provided traits do not match the traits previously associated with this flow.",
548
+ "identities.messages.4000037": "This account does not exist or has no login method configured.",
549
+ "identities.messages.4000038": "Captcha verification failed, please try again.",
474
550
  "identities.messages.4010001": "The login flow expired {expired_at_unix_since_minutes} minutes ago, please try again.",
475
551
  "identities.messages.4010002": "Could not find a strategy to log you in with. Did you fill out the form correctly?",
476
552
  "identities.messages.4010003": "Could not find a strategy to sign you up with. Did you fill out the form correctly?",
@@ -479,6 +555,8 @@ var en = {
479
555
  "identities.messages.4010006": "Could not find a strategy to verify your account with. Did you fill out the form correctly?",
480
556
  "identities.messages.4010007": "The request was already completed successfully and can not be retried.",
481
557
  "identities.messages.4010008": "The login code is invalid or has already been used. Please try again.",
558
+ "identities.messages.4010009": "Linked credentials do not match.",
559
+ "identities.messages.4010010": "The address you entered does not match any known addresses in the current account.",
482
560
  "identities.messages.4040001": "The registration flow expired {expired_at_unix_since_minutes} minutes ago, please try again.",
483
561
  "identities.messages.4040002": "The request was already completed successfully and can not be retried.",
484
562
  "identities.messages.4040003": "The registration code is invalid or has already been used. Please try again.",
@@ -494,26 +572,32 @@ var en = {
494
572
  "identities.messages.4070005": "The verification flow expired {expired_at_unix_since_minutes} minutes ago, please try again.",
495
573
  "identities.messages.4070006": "The verification code is invalid or has already been used. Please try again.",
496
574
  "identities.messages.5000001": "{reason}",
575
+ "login.cancel-button": "Cancel",
576
+ "login.cancel-label": "Not the right account?",
497
577
  "login.forgot-password": "Forgot password?",
498
- "login.logged-in-as-label": "You're logged in as:",
578
+ "login.logged-in-as-label": "You are using:",
499
579
  "login.logout-button": "Logout",
500
580
  "login.logout-label": "Something's not working?",
501
581
  "login.registration-button": "Sign up",
502
582
  "login.registration-label": "Don't have an account?",
503
583
  "login.subtitle-oauth2": "To authenticate {clientName}",
504
584
  "login.title": "Sign in",
585
+ "login.subtitle": "Sign in with {parts}",
505
586
  "login.title-aal2": "Two-Factor Authentication",
506
- "login.title-refresh": "Confirm it's you",
587
+ "login.title-refresh": "Reauthenticate",
588
+ "login.subtitle-refresh": "Confirm your identity with {parts}",
507
589
  "logout.accept-button": "Yes",
508
590
  "logout.reject-button": "No",
509
591
  "logout.title": "Do you wish to log out?",
510
592
  "recovery.login-button": "Sign in",
511
593
  "recovery.login-label": "Remember your credentials?",
512
594
  "recovery.title": "Recover your account",
595
+ "recovery.subtitle": "Enter the email address associated with your account to receive a one-time access code",
513
596
  "registration.login-button": "Sign in",
514
597
  "registration.login-label": "Already have an account?",
515
598
  "registration.subtitle-oauth2": "To authenticate {clientName}",
516
599
  "registration.title": "Register an account",
600
+ "registration.subtitle": "Sign up with {parts}",
517
601
  "settings.navigation-back-button": "Back",
518
602
  "settings.navigation-backup-codes": "2FA Backup Codes",
519
603
  "settings.navigation-logout": "Logout",
@@ -524,7 +608,8 @@ var en = {
524
608
  "settings.navigation-webauthn": "Hardware Tokens",
525
609
  "settings.navigation-passkey": "Passkeys",
526
610
  "settings.subtitle-instructions": "Here you can manage settings related to your account. Keep in mind that certain actions require you to re-authenticate.",
527
- "settings.title": "Account Settings",
611
+ "settings.title": "Update your account",
612
+ "settings.subtitle": "Update your account settings",
528
613
  "settings.title-lookup-secret": "Manage 2FA Backup Recovery Codes",
529
614
  "settings.title-navigation": "Account Settings",
530
615
  "settings.title-oidc": "Social Sign In",
@@ -536,7 +621,29 @@ var en = {
536
621
  "verification.registration-button": "Sign up",
537
622
  "verification.registration-label": "Don't have an account?",
538
623
  "verification.title": "Verify your account",
539
- "verification.back-button": "Back"
624
+ "verification.subtitle": "Enter the email address associated with your account to verify it",
625
+ "verification.back-button": "Back",
626
+ "two-step.password.title": "Password",
627
+ "two-step.password.description": "Enter your password associated with your account",
628
+ "two-step.code.title": "Email code",
629
+ "two-step.code.description": "A verification code will be sent to your email",
630
+ "two-step.webauthn.title": "Security Key",
631
+ "two-step.webauthn.description": "Use your security key to authenticate",
632
+ "two-step.passkey.title": "Passkey (recommended)",
633
+ "two-step.passkey.description": "Use your device's for fingerprint or face recognition",
634
+ "identities.messages.1010020": "",
635
+ "input.placeholder": "Enter your {placeholder}",
636
+ "card.header.parts.oidc": "a social provider",
637
+ "card.header.parts.password.registration": "your {identifierLabel} and a password",
638
+ "card.header.parts.password.login": "your {identifierLabel} and password",
639
+ "card.header.parts.code": "a code sent to your email",
640
+ "card.header.parts.passkey": "a Passkey",
641
+ "card.header.parts.webauthn": "a security key",
642
+ "card.header.parts.identifier-first": "your {identifierLabel}",
643
+ "card.header.description.login": "Sign in with {identifierLabel}",
644
+ "card.header.description.registration": "Sign up with {identifierLabel}",
645
+ "misc.or": "or",
646
+ "forms.label.forgot-password": "Forgot Password?"
540
647
  };
541
648
 
542
649
  var es = {
@@ -713,7 +820,54 @@ var es = {
713
820
  "verification.registration-button": "Registrarse",
714
821
  "verification.registration-label": "¿No tiene una cuenta?",
715
822
  "verification.title": "Verificar su cuenta",
716
- "verification.back-button": "Regresar"
823
+ "verification.back-button": "Regresar",
824
+ "two-step.code.description": "Se enviará un código de verificación a tu correo electrónico.",
825
+ "two-step.code.title": "Código de correo electrónico",
826
+ "two-step.passkey.description": "Utiliza el reconocimiento de huellas dactilares o facial de tu dispositivo.",
827
+ "two-step.passkey.title": "Clave de acceso (recomendada)",
828
+ "two-step.password.description": "Ingrese la contraseña asociada con su cuenta",
829
+ "two-step.password.title": "Contraseña",
830
+ "two-step.webauthn.description": "Utiliza tu llave de seguridad para autenticarte",
831
+ "two-step.webauthn.title": "Clave de Seguridad",
832
+ "identities.messages.1010016": "",
833
+ "identities.messages.1010017": "",
834
+ "identities.messages.1010018": "",
835
+ "identities.messages.1010019": "",
836
+ "identities.messages.1010020": "",
837
+ "identities.messages.1010021": "",
838
+ "identities.messages.1010022": "",
839
+ "identities.messages.1010023": "",
840
+ "identities.messages.1040007": "",
841
+ "identities.messages.1040008": "",
842
+ "identities.messages.1040009": "",
843
+ "identities.messages.1050019": "",
844
+ "identities.messages.1050020": "",
845
+ "identities.messages.1070014": "",
846
+ "identities.messages.1070015": "",
847
+ "identities.messages.4000037": "",
848
+ "identities.messages.4000038": "",
849
+ "identities.messages.4010009": "",
850
+ "identities.messages.4010010": "",
851
+ "login.cancel-button": "",
852
+ "login.cancel-label": "",
853
+ "input.placeholder": "",
854
+ "card.header.description.login": "",
855
+ "card.header.description.registration": "",
856
+ "card.header.parts.code": "",
857
+ "card.header.parts.identifier-first": "",
858
+ "card.header.parts.oidc": "",
859
+ "card.header.parts.passkey": "",
860
+ "card.header.parts.password.login": "",
861
+ "card.header.parts.password.registration": "",
862
+ "card.header.parts.webauthn": "",
863
+ "forms.label.forgot-password": "",
864
+ "login.subtitle": "",
865
+ "login.subtitle-refresh": "",
866
+ "misc.or": "",
867
+ "recovery.subtitle": "",
868
+ "registration.subtitle": "",
869
+ "settings.subtitle": "",
870
+ "verification.subtitle": ""
717
871
  };
718
872
 
719
873
  var fr = {
@@ -890,7 +1044,54 @@ var fr = {
890
1044
  "verification.registration-button": "S'inscrire",
891
1045
  "verification.registration-label": "Vous n'avez pas de compte ?",
892
1046
  "verification.title": "Vérifiez votre compte",
893
- "verification.back-button": "Revenir en arrière"
1047
+ "verification.back-button": "Revenir en arrière",
1048
+ "two-step.code.description": "Un code de vérification sera envoyé à votre email",
1049
+ "two-step.code.title": "Code de courrier électronique",
1050
+ "two-step.passkey.description": "Utilisez l'appareil pour la reconnaissance d'empreintes digitales ou de visage",
1051
+ "two-step.passkey.title": "Clé de passe (recommandée)",
1052
+ "two-step.password.description": "Entrez votre mot de passe associé à votre compte",
1053
+ "two-step.password.title": "Mot de passe",
1054
+ "two-step.webauthn.description": "Utilisez votre clé de sécurité pour vous authentifier",
1055
+ "two-step.webauthn.title": "Clé de Sécurité",
1056
+ "identities.messages.1010023": "",
1057
+ "identities.messages.1070015": "",
1058
+ "identities.messages.4000038": "",
1059
+ "login.cancel-button": "",
1060
+ "login.cancel-label": "",
1061
+ "identities.messages.1010016": "",
1062
+ "identities.messages.1010017": "",
1063
+ "identities.messages.1010018": "",
1064
+ "identities.messages.1010019": "",
1065
+ "identities.messages.1010020": "",
1066
+ "identities.messages.1010021": "",
1067
+ "identities.messages.1010022": "",
1068
+ "identities.messages.1040007": "",
1069
+ "identities.messages.1040008": "",
1070
+ "identities.messages.1040009": "",
1071
+ "identities.messages.1050019": "",
1072
+ "identities.messages.1050020": "",
1073
+ "identities.messages.1070014": "",
1074
+ "identities.messages.4000037": "",
1075
+ "identities.messages.4010009": "",
1076
+ "identities.messages.4010010": "",
1077
+ "input.placeholder": "",
1078
+ "card.header.description.login": "",
1079
+ "card.header.description.registration": "",
1080
+ "card.header.parts.code": "",
1081
+ "card.header.parts.identifier-first": "",
1082
+ "card.header.parts.oidc": "",
1083
+ "card.header.parts.passkey": "",
1084
+ "card.header.parts.password.login": "",
1085
+ "card.header.parts.password.registration": "",
1086
+ "card.header.parts.webauthn": "",
1087
+ "forms.label.forgot-password": "",
1088
+ "login.subtitle": "",
1089
+ "login.subtitle-refresh": "",
1090
+ "misc.or": "",
1091
+ "recovery.subtitle": "",
1092
+ "registration.subtitle": "",
1093
+ "settings.subtitle": "",
1094
+ "verification.subtitle": ""
894
1095
  };
895
1096
 
896
1097
  var nl = {
@@ -1067,7 +1268,54 @@ var nl = {
1067
1268
  "verification.registration-button": "Registreren",
1068
1269
  "verification.registration-label": "Heb je nog geen account?",
1069
1270
  "verification.title": "Verifieer je account",
1070
- "verification.back-button": "Ga terug"
1271
+ "verification.back-button": "Ga terug",
1272
+ "two-step.code.description": "Een verificatiecode wordt naar uw e-mail gestuurd",
1273
+ "two-step.code.title": "E-mailcode",
1274
+ "two-step.passkey.description": "Gebruik de vingerafdruk- of gezichtsherkenning van uw apparaat",
1275
+ "two-step.passkey.title": "Toegangscode (aanbevolen)",
1276
+ "two-step.password.description": "Voer uw wachtwoord in dat is gekoppeld aan uw account",
1277
+ "two-step.password.title": "Wachtwoord",
1278
+ "two-step.webauthn.description": "Gebruik uw beveiligingssleutel om te verifiëren",
1279
+ "two-step.webauthn.title": "Beveiligingssleutel",
1280
+ "identities.messages.1010023": "",
1281
+ "identities.messages.1070014": "",
1282
+ "identities.messages.1070015": "",
1283
+ "identities.messages.4000038": "",
1284
+ "login.cancel-button": "",
1285
+ "login.cancel-label": "",
1286
+ "identities.messages.1010016": "",
1287
+ "identities.messages.1010017": "",
1288
+ "identities.messages.1010018": "",
1289
+ "identities.messages.1010019": "",
1290
+ "identities.messages.1010020": "",
1291
+ "identities.messages.1010021": "",
1292
+ "identities.messages.1010022": "",
1293
+ "identities.messages.1040007": "",
1294
+ "identities.messages.1040008": "",
1295
+ "identities.messages.1040009": "",
1296
+ "identities.messages.1050019": "",
1297
+ "identities.messages.1050020": "",
1298
+ "identities.messages.4000037": "",
1299
+ "identities.messages.4010009": "",
1300
+ "identities.messages.4010010": "",
1301
+ "input.placeholder": "",
1302
+ "card.header.description.login": "",
1303
+ "card.header.description.registration": "",
1304
+ "card.header.parts.code": "",
1305
+ "card.header.parts.identifier-first": "",
1306
+ "card.header.parts.oidc": "",
1307
+ "card.header.parts.passkey": "",
1308
+ "card.header.parts.password.login": "",
1309
+ "card.header.parts.password.registration": "",
1310
+ "card.header.parts.webauthn": "",
1311
+ "forms.label.forgot-password": "",
1312
+ "login.subtitle": "",
1313
+ "login.subtitle-refresh": "",
1314
+ "misc.or": "",
1315
+ "recovery.subtitle": "",
1316
+ "registration.subtitle": "",
1317
+ "settings.subtitle": "",
1318
+ "verification.subtitle": ""
1071
1319
  };
1072
1320
 
1073
1321
  var pl = {
@@ -1244,7 +1492,54 @@ var pl = {
1244
1492
  "verification.registration-button": "Zarejestruj się",
1245
1493
  "verification.registration-label": "Nie posiadasz konta?",
1246
1494
  "verification.title": "Zweryfikuj konto",
1247
- "verification.back-button": "Cofnij"
1495
+ "verification.back-button": "Cofnij",
1496
+ "two-step.code.description": "Kod weryfikacyjny zostanie wysłany na Twój adres email.",
1497
+ "two-step.code.title": "Kod email",
1498
+ "two-step.passkey.description": "Użyj swojego urządzenia lub funkcji rozpoznawania twarzy na swoim urządzeniu.",
1499
+ "two-step.passkey.title": "Klucz dostępu (zalecany)",
1500
+ "two-step.password.description": "Wprowadź hasło powiązane z twoim kontem",
1501
+ "two-step.password.title": "Hasło",
1502
+ "two-step.webauthn.description": "Użyj swojego klucza bezpieczeństwa do uwierzytelnienia",
1503
+ "two-step.webauthn.title": "Klucz bezpieczeństwa",
1504
+ "identities.messages.1010016": "",
1505
+ "identities.messages.1010017": "",
1506
+ "identities.messages.1010018": "",
1507
+ "identities.messages.1010019": "",
1508
+ "identities.messages.1010020": "",
1509
+ "identities.messages.1010021": "",
1510
+ "identities.messages.1010022": "",
1511
+ "identities.messages.1010023": "",
1512
+ "identities.messages.1040007": "",
1513
+ "identities.messages.1040008": "",
1514
+ "identities.messages.1040009": "",
1515
+ "identities.messages.1050019": "",
1516
+ "identities.messages.1050020": "",
1517
+ "identities.messages.1070014": "",
1518
+ "identities.messages.1070015": "",
1519
+ "identities.messages.4000037": "",
1520
+ "identities.messages.4000038": "",
1521
+ "identities.messages.4010009": "",
1522
+ "identities.messages.4010010": "",
1523
+ "login.cancel-button": "",
1524
+ "login.cancel-label": "",
1525
+ "input.placeholder": "",
1526
+ "card.header.description.login": "",
1527
+ "card.header.description.registration": "",
1528
+ "card.header.parts.code": "",
1529
+ "card.header.parts.identifier-first": "",
1530
+ "card.header.parts.oidc": "",
1531
+ "card.header.parts.passkey": "",
1532
+ "card.header.parts.password.login": "",
1533
+ "card.header.parts.password.registration": "",
1534
+ "card.header.parts.webauthn": "",
1535
+ "forms.label.forgot-password": "",
1536
+ "login.subtitle": "",
1537
+ "login.subtitle-refresh": "",
1538
+ "misc.or": "",
1539
+ "recovery.subtitle": "",
1540
+ "registration.subtitle": "",
1541
+ "settings.subtitle": "",
1542
+ "verification.subtitle": ""
1248
1543
  };
1249
1544
 
1250
1545
  var pt = {
@@ -1421,10 +1716,57 @@ var pt = {
1421
1716
  "verification.registration-button": "Registar",
1422
1717
  "verification.registration-label": "Não tem uma conta?",
1423
1718
  "verification.title": "Verifique a sua conta",
1424
- "verification.back-button": "Voltar"
1719
+ "verification.back-button": "Voltar",
1720
+ "two-step.code.description": "Um código de verificação será enviado para o seu email",
1721
+ "two-step.code.title": "Código de email",
1722
+ "two-step.passkey.description": "Use o seu dispositivo para reconhecimento de impressão digital ou facial.",
1723
+ "two-step.passkey.title": "Chave de acesso (recomendado)",
1724
+ "two-step.password.description": "Insira a sua senha associada à sua conta",
1725
+ "two-step.password.title": "Senha",
1726
+ "two-step.webauthn.description": "Use sua chave de segurança para autenticar",
1727
+ "two-step.webauthn.title": "Chave de Segurança",
1728
+ "identities.messages.1010016": "",
1729
+ "identities.messages.1010017": "",
1730
+ "identities.messages.1010018": "",
1731
+ "identities.messages.1010019": "",
1732
+ "identities.messages.1010020": "",
1733
+ "identities.messages.1010021": "",
1734
+ "identities.messages.1010022": "",
1735
+ "identities.messages.1010023": "",
1736
+ "identities.messages.1040007": "",
1737
+ "identities.messages.1040008": "",
1738
+ "identities.messages.1040009": "",
1739
+ "identities.messages.1050019": "",
1740
+ "identities.messages.1050020": "",
1741
+ "identities.messages.1070014": "",
1742
+ "identities.messages.4000037": "",
1743
+ "identities.messages.4000038": "",
1744
+ "identities.messages.4010009": "",
1745
+ "identities.messages.4010010": "",
1746
+ "login.cancel-button": "",
1747
+ "login.cancel-label": "",
1748
+ "identities.messages.1070015": "",
1749
+ "input.placeholder": "",
1750
+ "card.header.description.login": "",
1751
+ "card.header.description.registration": "",
1752
+ "card.header.parts.code": "",
1753
+ "card.header.parts.identifier-first": "",
1754
+ "card.header.parts.oidc": "",
1755
+ "card.header.parts.passkey": "",
1756
+ "card.header.parts.password.login": "",
1757
+ "card.header.parts.password.registration": "",
1758
+ "card.header.parts.webauthn": "",
1759
+ "forms.label.forgot-password": "",
1760
+ "login.subtitle": "",
1761
+ "login.subtitle-refresh": "",
1762
+ "misc.or": "",
1763
+ "recovery.subtitle": "",
1764
+ "registration.subtitle": "",
1765
+ "settings.subtitle": "",
1766
+ "verification.subtitle": ""
1425
1767
  };
1426
1768
 
1427
- var se = {
1769
+ var sv = {
1428
1770
  "consent.action-accept": "Tillåt",
1429
1771
  "consent.action-reject": "Neka",
1430
1772
  "consent.description": "Ge bara behörigheter om du litar på den här webbplatsen eller appen. Du behöver inte acceptera alla behörigheter.",
@@ -1454,12 +1796,22 @@ var se = {
1454
1796
  "identities.messages.1010013": "Fortsätt",
1455
1797
  "identities.messages.1010014": "Ett e-postmeddelande som innehåller en kod har skickats till den e-postadress du angett. Om du inte har fått ett mejl, kontrollera stavningen av adressen och försök logga in igen.",
1456
1798
  "identities.messages.1010015": "Logga in med kod",
1457
- "identities.messages.1040001": "Logga in",
1458
- "identities.messages.1040002": "Logga in med {provider}",
1799
+ "identities.messages.1010016": "Du försökte logga in med \"{duplicateIdentifier}\", men den e-postadressen används redan av ett annat konto. Logga in på ditt konto med ett av alternativen nedan för att lägga till ditt konto \"{duplicateIdentifier}\" hos \"{provider}\" som ett annat inloggningsalternativ.",
1800
+ "identities.messages.1010017": "Logga in och länka",
1801
+ "identities.messages.1010018": "Bekräfta med {provider}",
1802
+ "identities.messages.1010019": "Begär kod för att fortsätta",
1803
+ "identities.messages.1010021": "Logga in med passkey",
1804
+ "identities.messages.1010022": "Logga in med lösenord",
1805
+ "identities.messages.1010023": "Skicka kod till {address}",
1806
+ "identities.messages.1040001": "Skapa konto",
1807
+ "identities.messages.1040002": "Registrera dig med {provider}",
1459
1808
  "identities.messages.1040003": "Fortsätt",
1460
1809
  "identities.messages.1040004": "Registrera med säkerhetsnyckel",
1461
1810
  "identities.messages.1040005": "Ett e-postmeddelande som innehåller en kod har skickats till den e-postadress du angett. Om du inte har fått ett e-postmeddelande, kontrollera stavningen av adressen och försök igen med registreringen.",
1462
1811
  "identities.messages.1040006": "Registrera med kod",
1812
+ "identities.messages.1040007": "Registrera med passkey",
1813
+ "identities.messages.1040008": "Tillbaka",
1814
+ "identities.messages.1040009": "Vänligen välj en autentiseringsmetod.",
1463
1815
  "identities.messages.1050001": "Dina ändringar har sparats!",
1464
1816
  "identities.messages.1050002": "Koppla på {provider}",
1465
1817
  "identities.messages.1050003": "Koppla bort {provider}",
@@ -1478,6 +1830,8 @@ var se = {
1478
1830
  "identities.messages.1050016": "Inaktivera den här metoden",
1479
1831
  "identities.messages.1050017": "Det här är din hemlighet för din autentiseringsapp. Använd den om du inte kan skanna QR-koden.",
1480
1832
  "identities.messages.1050018": "Ta bort säkerhetsnyckel \"{display_name}\"",
1833
+ "identities.messages.1050019": "Lägg till passkey",
1834
+ "identities.messages.1050020": "Ta bort passkey \"{display_name}\"",
1481
1835
  "identities.messages.1060001": "Du har lyckats återställa ditt konto. Ändra ditt lösenord eller ställ in en alternativ inloggningsmetod (t.ex. social inloggning) inom de närmaste {privileged_session_expires_at_unix_until_minutes} minuterna.",
1482
1836
  "identities.messages.1060002": "Ett e-postmeddelande som innehåller en återställningslänk har skickats till den e-postadress du angett. Om du inte har fått ett mejl, kontrollera stavningen på adressen och se till att använda adressen du registrerade dig med.",
1483
1837
  "identities.messages.1060003": "Ett e-postmeddelande som innehåller en återställningskod har skickats till den e-postadress du angett. Om du inte har fått ett mejl, kontrollera stavningen på adressen och se till att använda adressen du registrerade dig med.",
@@ -1494,6 +1848,8 @@ var se = {
1494
1848
  "identities.messages.1070011": "Verifieringskod",
1495
1849
  "identities.messages.1070012": "Registreringskod",
1496
1850
  "identities.messages.1070013": "Inloggningskod",
1851
+ "identities.messages.1070014": "Logga in och länka autentiseringsuppgifter",
1852
+ "identities.messages.1070015": "Vänligen slutför captcha-utmaningen för att fortsätta.",
1497
1853
  "identities.messages.1080001": "Ett e-postmeddelande med en verifieringslänk har skickats till den e-postadress du angett. Om du inte har fått ett mejl, kontrollera stavningen på adressen och se till att använda adressen du registrerade dig med.",
1498
1854
  "identities.messages.1080002": "Du har verifierat din e-postadress.",
1499
1855
  "identities.messages.1080003": "Ett e-postmeddelande som innehåller en verifieringskod har skickats till den e-postadress du angett. Om du inte har fått ett mejl, kontrollera stavningen på adressen och se till att använda adressen du registrerade dig med.",
@@ -1541,6 +1897,8 @@ var se = {
1541
1897
  "identities.messages.4010006": "Kunde inte hitta en strategi att verifiera ditt konto med. Fyllde du i formuläret korrekt?",
1542
1898
  "identities.messages.4010007": "Begäran har redan slutförts framgångsrikt och kan inte göras igen.",
1543
1899
  "identities.messages.4010008": "Inloggningskoden är ogiltig eller har redan använts. Var vänlig försök igen.",
1900
+ "identities.messages.4010009": "Länkade autentiseringsuppgifter matchar inte.",
1901
+ "identities.messages.4010010": "Adressen du angav matchar inte några kända adresser i det aktuella kontot.",
1544
1902
  "identities.messages.4040001": "Registreringsflödet gick ut för {expired_at_unix_since_minutes} minuter sedan, försök igen.",
1545
1903
  "identities.messages.4040002": "Begäran har redan slutförts framgångsrikt och kan inte göras igen.",
1546
1904
  "identities.messages.4040003": "Registreringskoden är ogiltig eller har redan använts. Var vänlig försök igen.",
@@ -1556,6 +1914,8 @@ var se = {
1556
1914
  "identities.messages.4070005": "Verifieringsflödet gick ut för {expired_at_unix_since_minutes} minuter sedan, var vänlig försök igen.",
1557
1915
  "identities.messages.4070006": "Verifieringskoden är ogiltig eller har redan använts. Var vänlig försök igen.",
1558
1916
  "identities.messages.5000001": "{reason}",
1917
+ "login.cancel-button": "Avbryt",
1918
+ "login.cancel-label": "Fel konto?",
1559
1919
  "login.forgot-password": "Glömt lösenord?",
1560
1920
  "login.logged-in-as-label": "Du är inloggad som:",
1561
1921
  "login.logout-button": "Logga ut",
@@ -1598,7 +1958,36 @@ var se = {
1598
1958
  "verification.registration-button": "Skapa konto",
1599
1959
  "verification.registration-label": "Har du inget konto?",
1600
1960
  "verification.title": "Verifiera ditt konto",
1601
- "verification.back-button": "Tillbaka"
1961
+ "verification.back-button": "Tillbaka",
1962
+ "two-step.code.description": "En verifieringskod kommer att skickas till din e-post",
1963
+ "two-step.code.title": "E-postkod",
1964
+ "two-step.passkey.description": "Använd din enhets fingeravtryck eller ansiktsigenkänning",
1965
+ "two-step.passkey.title": "Passerkod (rekommenderad)",
1966
+ "two-step.password.description": "Ange ditt lösenord kopplat till ditt konto",
1967
+ "two-step.password.title": "Lösenord",
1968
+ "two-step.webauthn.description": "Använd din säkerhetsnyckel för att autentisera",
1969
+ "two-step.webauthn.title": "Säkerhetsnyckel",
1970
+ "identities.messages.4000037": "Detta konto finns inte eller har ingen inloggningsmetod konfigurerad.",
1971
+ "identities.messages.4000038": "Captcha-verifiering misslyckades, försök igen.",
1972
+ "identities.messages.1010020": "",
1973
+ "input.placeholder": "Ange ditt {placeholder}",
1974
+ "card.header.description.login": "Logga in med {identifierLabel}",
1975
+ "card.header.description.registration": "Registrera dig med {identifierLabel}",
1976
+ "card.header.parts.code": "en kod skickad till din e-post",
1977
+ "card.header.parts.identifier-first": "din {identifierLabel}",
1978
+ "card.header.parts.oidc": "en social leverantör",
1979
+ "card.header.parts.passkey": "en Passkey",
1980
+ "card.header.parts.password.login": "din {identifierLabel} och lösenord",
1981
+ "card.header.parts.password.registration": "din {identifierLabel} och ett lösenord",
1982
+ "card.header.parts.webauthn": "en säkerhetsnyckel",
1983
+ "forms.label.forgot-password": "Glömt Lösenord?",
1984
+ "login.subtitle": "Logga in med {parts}",
1985
+ "login.subtitle-refresh": "Bekräfta din identitet med {parts}",
1986
+ "misc.or": "eller",
1987
+ "recovery.subtitle": "Ange e-postadressen kopplad till ditt konto för att få en engångskod för åtkomst",
1988
+ "registration.subtitle": "Registrera dig med {parts}",
1989
+ "settings.subtitle": "Uppdatera dina kontoinställningar",
1990
+ "verification.subtitle": "Ange e-postadressen kopplad till ditt konto för att verifiera det"
1602
1991
  };
1603
1992
 
1604
1993
  declare const locales_de: typeof de;
@@ -1608,9 +1997,9 @@ declare const locales_fr: typeof fr;
1608
1997
  declare const locales_nl: typeof nl;
1609
1998
  declare const locales_pl: typeof pl;
1610
1999
  declare const locales_pt: typeof pt;
1611
- declare const locales_se: typeof se;
2000
+ declare const locales_sv: typeof sv;
1612
2001
  declare namespace locales {
1613
- export { locales_de as de, locales_en as en, locales_es as es, locales_fr as fr, locales_nl as nl, locales_pl as pl, locales_pt as pt, locales_se as se };
2002
+ export { locales_de as de, locales_en as en, locales_es as es, locales_fr as fr, locales_nl as nl, locales_pl as pl, locales_pt as pt, locales_sv as sv };
1614
2003
  }
1615
2004
 
1616
2005
  type TranslationFile = {
@@ -1632,7 +2021,7 @@ type SupportedTranslations = {
1632
2021
  defaultLocale?: string;
1633
2022
  };
1634
2023
  type IntlProviderProps<Type> = Type extends CustomTranslations ? CustomTranslations : SupportedTranslations;
1635
- declare const IntlProvider: <T extends CustomTranslations | SupportedTranslations = SupportedTranslations>({ children, ...props }: PropsWithChildren<IntlProviderProps<T>>) => string | number | boolean | Iterable<React.ReactNode> | react_jsx_runtime.JSX.Element | null | undefined;
2024
+ declare const IntlProvider: <T extends CustomTranslations | SupportedTranslations = SupportedTranslations>({ children, ...props }: PropsWithChildren<IntlProviderProps<T>>) => string | number | boolean | Iterable<react.ReactNode> | react_jsx_runtime.JSX.Element | null | undefined;
1636
2025
 
1637
2026
  type ProviderProps<T> = {
1638
2027
  components: OryFlowComponents;
@@ -1702,7 +2091,7 @@ type OnSubmitHandlerProps<T extends UpdateLoginFlowBody | UpdateRegistrationFlow
1702
2091
  /**
1703
2092
  * This method is used to update the flow container when a validation error occurs, for example.
1704
2093
  */
1705
- setFlowContainer: (flowContainer: Partial<FlowContainer>) => void;
2094
+ setFlowContainer: (flowContainer: FlowContainer) => void;
1706
2095
  /**
1707
2096
  * The form values to submit.
1708
2097
  */
@@ -1768,4 +2157,4 @@ declare function onSubmitVerification({ config, flow }: FlowContainer, { setFlow
1768
2157
  */
1769
2158
  declare function onSubmitRegistration({ config, flow }: FlowContainer, { setFlowContainer, body, onRedirect, }: OnSubmitHandlerProps<UpdateRegistrationFlowBody>): Promise<void>;
1770
2159
 
1771
- export { type CustomLanguageFormats, type CustomTranslations, type ErrorFlowContainer, type FlowContainer, type FlowContainerSetter, type FlowContextValue, type FormValues, type HeadlessAuthMethodListItemProps, type HeadlessButtonProps, type HeadlessFormProps, type HeadlessGroupContainerProps, type HeadlessGroupProps, type HeadlessImageProps, type HeadlessInputProps, type HeadlessLabelProps, type HeadlessLinkButtonProps, HeadlessMessage, type HeadlessMessageProps, type HeadlessMessagesProps, type HeadlessSocialButtonContainerProps, type HeadlessSocialButtonProps, type HeadlessSocialButtonsProps, type HeadlessTextProps, type HorizontalDividerProps, IntlProvider, type IntlProviderProps, LanguageCodes, type Locale, type LoginFlowContainer, type OnSubmitHandlerProps, OryCard, type OryCardComponents, OryCardContent, type OryCardContentProps, OryCardFooter, type OryCardFooterProps, OryCardHeader, type OryCardHeaderProps, type OryCardProps, OryCardValidationMessages, type OryClientConfiguration, OryComponentProvider, type OryFlowComponents, OryFlowProvider, type OryFlowProviderProps, OryForm, type OryFormComponents, OryFormGroupDivider, OryFormGroups, type OryFormProps, OryFormSocialButtons, OryProvider, type ProviderProps, type RecoveryFlowContainer, type RegistrationFlowContainer, type SettingsFlowContainer, type SupportedTranslations, type TranslationFile, type VerificationFlowContainer, formElementId, formLabelId, formatMessage, isCustomTranslations, messageTestId, onSubmitLogin, onSubmitRecovery, onSubmitRegistration, onSubmitSettings, onSubmitVerification, uiTextToFormattedMessage, useComponents, useNodeSorter, useOryFlow };
2160
+ export { type CustomLanguageFormats, type CustomTranslations, type ErrorFlowContainer, type FlowContainer, type FlowContainerSetter, type FlowContextValue, type FormValues, type HeadlessAuthMethodListItemProps, type HeadlessButtonProps, type HeadlessCurrentIdentifierProps, type HeadlessFormProps, type HeadlessGroupContainerProps, type HeadlessGroupProps, type HeadlessImageProps, type HeadlessInputProps, type HeadlessLabelProps, type HeadlessLinkButtonProps, HeadlessMessage, type HeadlessMessageProps, type HeadlessMessagesProps, type HeadlessSocialButtonContainerProps, type HeadlessSocialButtonProps, type HeadlessSocialButtonsProps, type HeadlessTextProps, type HorizontalDividerProps, IntlProvider, type IntlProviderProps, LanguageCodes, type Locale, type LoginFlowContainer, type OnSubmitHandlerProps, OryCard, type OryCardComponents, OryCardContent, type OryCardContentProps, OryCardFooter, type OryCardFooterProps, OryCardHeader, type OryCardHeaderProps, type OryCardProps, OryCardValidationMessages, type OryClientConfiguration, OryComponentProvider, type OryFlowComponents, OryFlowProvider, type OryFlowProviderProps, OryForm, type OryFormComponents, OryFormGroupDivider, OryFormGroups, type OryFormProps, OryFormSocialButtons, OryFormSocialButtonsForm, locales as OryLocales, OryProvider, OryTwoStepCard, type ProviderProps, type RecoveryFlowContainer, type RegistrationFlowContainer, type SettingsFlowContainer, type SupportedTranslations, type TranslationFile, type VerificationFlowContainer, formElementId, formLabelId, formatMessage, isCustomTranslations, messageTestId, onSubmitLogin, onSubmitRecovery, onSubmitRegistration, onSubmitSettings, onSubmitVerification, uiTextToFormattedMessage, useComponents, useNodeSorter, useOryFlow };