@ory/elements-react 1.0.0-rc.2 → 1.0.0-rc.3

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/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ ## 1.0.0-rc.3 (2025-05-09)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - captcha reloading and duplication ([#518](https://github.com/ory/elements/pull/518))
6
+ - ⚠️ rework configuration management ([#515](https://github.com/ory/elements/pull/515))
7
+ - add missing testids to method selector and checkbox ([#517](https://github.com/ory/elements/pull/517))
8
+
9
+ ### ⚠️ Breaking Changes
10
+
11
+ - ⚠️ rework configuration management ([#515](https://github.com/ory/elements/pull/515))
12
+
13
+ ### ❤️ Thank You
14
+
15
+ - hackerman @aeneasr
16
+ - Jonas Hungershausen
17
+
1
18
  ## 1.0.0-rc.2 (2025-04-30)
2
19
 
3
20
  ### 🚀 Features
package/dist/index.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { UiNodeInputAttributes, UiNode, UiNodeAnchorAttributes, UiNodeTextAttributes, UiNodeImageAttributes, UiNodeGroupEnum, UiText, ConfigurationParameters, AccountExperienceConfiguration, FlowType, LoginFlow, RegistrationFlow, RecoveryFlow, VerificationFlow, SettingsFlow, UiContainer, OAuth2ConsentRequest, Session, FlowError, UpdateLoginFlowBody, UpdateRegistrationFlowBody, UpdateVerificationFlowBody, UpdateRecoveryFlowBody, UpdateSettingsFlowBody, OnRedirectHandler } from '@ory/client-fetch';
1
+ import { UiNodeInputAttributes, UiNode, UiNodeAnchorAttributes, UiNodeTextAttributes, UiNodeImageAttributes, UiNodeGroupEnum, UiText, FlowType, LoginFlow, RegistrationFlow, RecoveryFlow, VerificationFlow, SettingsFlow, UiContainer, OAuth2ConsentRequest, Session, FlowError, ConfigurationParameters, AccountExperienceConfiguration, UpdateLoginFlowBody, UpdateRegistrationFlowBody, UpdateVerificationFlowBody, UpdateRecoveryFlowBody, UpdateSettingsFlowBody, OnRedirectHandler, FrontendApi } from '@ory/client-fetch';
2
2
  import { ComponentPropsWithoutRef, FormEventHandler, MouseEventHandler, PropsWithChildren, DetailedHTMLProps, HTMLAttributes, ComponentType, Dispatch } from 'react';
3
3
  import * as class_variance_authority_types from 'class-variance-authority/types';
4
4
  import { VariantProps } from 'class-variance-authority';
@@ -384,71 +384,6 @@ declare function useNodeSorter(): (a: UiNode, b: UiNode, ctx: {
384
384
  flowType: string;
385
385
  }) => number;
386
386
 
387
- type LocaleMap = Record<string, Record<string, string>>;
388
- declare const OryLocales: LocaleMap;
389
-
390
- type Locale = keyof typeof OryLocales;
391
- type IntlContextProps = {
392
- locale: Locale;
393
- customTranslations?: Partial<LocaleMap>;
394
- };
395
-
396
- type IntlConfig = IntlContextProps;
397
- /**
398
- * The configuration for Ory Elements.
399
- *
400
- * This configuration is used to customize the behavior and appearance of Ory Elements.
401
- *
402
- * By setting UI urls, you can override the default URLs for the login, registration, recovery, and verification flows.
403
- *
404
- * You can also set the name of the application, the logo URL, and the SDK configuration.
405
- * By default, the name and logo are displayed in the card's header.
406
- */
407
- type OryClientConfiguration = {
408
- /**
409
- * An optional logo URL to display in the UI instead of the name.
410
- * @deprecated Use `project.logo_light_url` instead.
411
- */
412
- logoUrl?: string;
413
- /**
414
- * The SDK configuration.
415
- * This configuration is used to set the URL of the Ory SDK and any additional options used for the SDK client.
416
- */
417
- sdk: {
418
- url: string;
419
- options?: Partial<ConfigurationParameters>;
420
- };
421
- /**
422
- * The internationalization configuration.
423
- * This configuration is used to set the locale and any additional options used for the i18n library.
424
- * The locale is used to determine the language of the UI.
425
- * The default locale is "en".
426
- */
427
- intl?: IntlConfig;
428
- } & ({
429
- /**
430
- * The name of the application the user is logging in to.
431
- * @deprecated Use `project.name` instead.
432
- */
433
- name: string;
434
- /**
435
- * The configuration for the project.
436
- */
437
- project: Omit<AccountExperienceConfiguration, "name"> & {
438
- name?: string;
439
- };
440
- } | {
441
- /**
442
- * The name of the application the user is logging in to.
443
- * @deprecated Use `project.name` instead.
444
- */
445
- name?: string;
446
- /**
447
- * The configuration for the project.
448
- */
449
- project: AccountExperienceConfiguration;
450
- });
451
-
452
387
  /**
453
388
  * A generic flow container, containing a flowType, the flow itself and the config object
454
389
  *
@@ -457,7 +392,6 @@ type OryClientConfiguration = {
457
392
  type OryFlow<TFlowType extends FlowType, TFlow> = {
458
393
  flowType: TFlowType;
459
394
  flow: TFlow;
460
- config: OryClientConfiguration;
461
395
  };
462
396
  /**
463
397
  * A flow container for the login flow
@@ -521,6 +455,48 @@ type ConsentFlowContainer = OryFlow<FlowType.OAuth2Consent, ConsentFlow>;
521
455
  */
522
456
  type OryFlowContainer = LoginFlowContainer | RegistrationFlowContainer | RecoveryFlowContainer | VerificationFlowContainer | SettingsFlowContainer | ConsentFlowContainer;
523
457
 
458
+ type LocaleMap = Record<string, Record<string, string>>;
459
+ declare const OryLocales: LocaleMap;
460
+
461
+ type Locale = keyof typeof OryLocales;
462
+ type IntlContextProps = {
463
+ locale: Locale;
464
+ customTranslations?: Partial<LocaleMap>;
465
+ };
466
+
467
+ type IntlConfig = IntlContextProps;
468
+ /**
469
+ * The configuration for Ory Elements.
470
+ *
471
+ * This configuration is used to customize the behavior and appearance of Ory Elements.
472
+ *
473
+ * By setting UI urls, you can override the default URLs for the login, registration, recovery, and verification flows.
474
+ *
475
+ * You can also set the name of the application, the logo URL, and the SDK configuration.
476
+ * By default, the name and logo are displayed in the card's header.
477
+ */
478
+ type OryClientConfiguration = {
479
+ /**
480
+ * The SDK configuration.
481
+ * This configuration is used to set the URL of the Ory SDK and any additional options used for the SDK client.
482
+ */
483
+ sdk?: {
484
+ url?: string;
485
+ options?: Partial<ConfigurationParameters>;
486
+ };
487
+ /**
488
+ * The internationalization configuration.
489
+ * This configuration is used to set the locale and any additional options used for the i18n library.
490
+ * The locale is used to determine the language of the UI.
491
+ * The default locale is "en".
492
+ */
493
+ intl?: IntlConfig;
494
+ /**
495
+ * The configuration for the project.
496
+ */
497
+ project: AccountExperienceConfiguration;
498
+ };
499
+
524
500
  /**
525
501
  * Converts a UiText to a FormattedMessage.
526
502
  * The UiText contains the id of the message and the context.
@@ -649,7 +625,33 @@ type FlowContextValue = OryFlowContainer & {
649
625
 
650
626
  type OryProviderProps = {
651
627
  components: OryFlowComponents;
628
+ config: OryClientConfiguration;
652
629
  } & OryFlowContainer & PropsWithChildren;
653
- declare function OryProvider({ children, components: Components, ...oryFlowProps }: OryProviderProps): react_jsx_runtime.JSX.Element;
630
+ declare function OryProvider({ children, components: Components, config, ...oryFlowProps }: OryProviderProps): react_jsx_runtime.JSX.Element;
631
+
632
+ type OryElementsConfiguration = {
633
+ sdk: OrySDK;
634
+ project: AccountExperienceConfiguration;
635
+ };
636
+ declare function useOryConfiguration(): OryElementsConfiguration;
637
+ type OrySDK = SDKConfig & {
638
+ /**
639
+ * The frontend client for the Ory SDK.
640
+ * This client is used to interact with the Ory SDK and should be used to make API calls.
641
+ */
642
+ frontend: FrontendApi;
643
+ };
644
+ type SDKConfig = {
645
+ /**
646
+ * The URL of the Ory SDK.
647
+ * This URL is used to connect to the Ory SDK and should be set to the base URL of your Ory instance.
648
+ */
649
+ url: string;
650
+ options?: Partial<ConfigurationParameters>;
651
+ };
652
+ declare function OryConfigurationProvider({ children, sdk: initialConfig, project, }: PropsWithChildren<{
653
+ sdk?: Partial<OryClientConfiguration["sdk"]>;
654
+ project?: Partial<AccountExperienceConfiguration>;
655
+ }>): react_jsx_runtime.JSX.Element;
654
656
 
655
- export { type ConsentFlow, type ConsentFlowContainer, type ErrorFlowContainer, type FlowContainerSetter, type FlowContextValue, type FormState, type FormStateAction, type FormStateMethodActive, type FormStateProvideIdentifier, type FormStateSelectMethod, type FormValues, HeadlessPageHeader, type IntlConfig, type LoginFlowContainer, type OnSubmitHandlerProps, OryCard, type OryCardAuthMethodListItemProps, OryCardContent, type OryCardContentProps, type OryCardDividerProps, OryCardFooter, type OryCardFooterProps, OryCardHeader, type OryCardHeaderProps, type OryCardLogoProps, type OryCardRootProps as OryCardProps, type OryCardSettingsSectionProps, OryCardValidationMessages, type OryClientConfiguration, OryConsentCard, type OryFlowComponentOverrides, type OryFlowComponents, type OryFlowContainer, OryForm, OryFormGroupDivider, type OryFormGroupProps, OryFormGroups, type OryFormGroupsProps, OryFormOidcButtons, type OryFormOidcRootProps, type OryFormProps, type OryFormRootProps, OryFormSection, type OryFormSectionContentProps, type OryFormSectionFooterProps, type OryFormSectionProps, OryFormSocialButtonsForm, OryLocales, type OryMessageContentProps, type OryMessageRootProps, type OryNodeAnchorProps, type OryNodeButtonProps, type OryNodeCaptchaProps, type OryNodeConsentScopeCheckboxProps, type OryNodeImageProps, type OryNodeInputProps, type OryNodeLabelProps, type OryNodeOidcButtonProps, type OryNodeTextProps, type OryPageHeaderProps, OryProvider, type OryProviderProps, OrySettingsCard, type OrySettingsOidcProps, type OrySettingsPasskeyProps, type OrySettingsRecoveryCodesProps, type OrySettingsTotpProps, type OrySettingsWebauthnProps, OryTwoStepCard, type RecoveryFlowContainer, type RegistrationFlowContainer, type SettingsFlowContainer, type VerificationFlowContainer, messageTestId, uiTextToFormattedMessage, useComponents, useNodeSorter, useOryFlow };
657
+ export { type ConsentFlow, type ConsentFlowContainer, type ErrorFlowContainer, type FlowContainerSetter, type FlowContextValue, type FormState, type FormStateAction, type FormStateMethodActive, type FormStateProvideIdentifier, type FormStateSelectMethod, type FormValues, HeadlessPageHeader, type IntlConfig, type LoginFlowContainer, type OnSubmitHandlerProps, OryCard, type OryCardAuthMethodListItemProps, OryCardContent, type OryCardContentProps, type OryCardDividerProps, OryCardFooter, type OryCardFooterProps, OryCardHeader, type OryCardHeaderProps, type OryCardLogoProps, type OryCardRootProps as OryCardProps, type OryCardSettingsSectionProps, OryCardValidationMessages, type OryClientConfiguration, OryConfigurationProvider, OryConsentCard, type OryElementsConfiguration, type OryFlowComponentOverrides, type OryFlowComponents, type OryFlowContainer, OryForm, OryFormGroupDivider, type OryFormGroupProps, OryFormGroups, type OryFormGroupsProps, OryFormOidcButtons, type OryFormOidcRootProps, type OryFormProps, type OryFormRootProps, OryFormSection, type OryFormSectionContentProps, type OryFormSectionFooterProps, type OryFormSectionProps, OryFormSocialButtonsForm, OryLocales, type OryMessageContentProps, type OryMessageRootProps, type OryNodeAnchorProps, type OryNodeButtonProps, type OryNodeCaptchaProps, type OryNodeConsentScopeCheckboxProps, type OryNodeImageProps, type OryNodeInputProps, type OryNodeLabelProps, type OryNodeOidcButtonProps, type OryNodeTextProps, type OryPageHeaderProps, OryProvider, type OryProviderProps, OrySettingsCard, type OrySettingsOidcProps, type OrySettingsPasskeyProps, type OrySettingsRecoveryCodesProps, type OrySettingsTotpProps, type OrySettingsWebauthnProps, OryTwoStepCard, type RecoveryFlowContainer, type RegistrationFlowContainer, type SettingsFlowContainer, type VerificationFlowContainer, messageTestId, uiTextToFormattedMessage, useComponents, useNodeSorter, useOryConfiguration, useOryFlow };
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { UiNodeInputAttributes, UiNode, UiNodeAnchorAttributes, UiNodeTextAttributes, UiNodeImageAttributes, UiNodeGroupEnum, UiText, ConfigurationParameters, AccountExperienceConfiguration, FlowType, LoginFlow, RegistrationFlow, RecoveryFlow, VerificationFlow, SettingsFlow, UiContainer, OAuth2ConsentRequest, Session, FlowError, UpdateLoginFlowBody, UpdateRegistrationFlowBody, UpdateVerificationFlowBody, UpdateRecoveryFlowBody, UpdateSettingsFlowBody, OnRedirectHandler } from '@ory/client-fetch';
1
+ import { UiNodeInputAttributes, UiNode, UiNodeAnchorAttributes, UiNodeTextAttributes, UiNodeImageAttributes, UiNodeGroupEnum, UiText, FlowType, LoginFlow, RegistrationFlow, RecoveryFlow, VerificationFlow, SettingsFlow, UiContainer, OAuth2ConsentRequest, Session, FlowError, ConfigurationParameters, AccountExperienceConfiguration, UpdateLoginFlowBody, UpdateRegistrationFlowBody, UpdateVerificationFlowBody, UpdateRecoveryFlowBody, UpdateSettingsFlowBody, OnRedirectHandler, FrontendApi } from '@ory/client-fetch';
2
2
  import { ComponentPropsWithoutRef, FormEventHandler, MouseEventHandler, PropsWithChildren, DetailedHTMLProps, HTMLAttributes, ComponentType, Dispatch } from 'react';
3
3
  import * as class_variance_authority_types from 'class-variance-authority/types';
4
4
  import { VariantProps } from 'class-variance-authority';
@@ -384,71 +384,6 @@ declare function useNodeSorter(): (a: UiNode, b: UiNode, ctx: {
384
384
  flowType: string;
385
385
  }) => number;
386
386
 
387
- type LocaleMap = Record<string, Record<string, string>>;
388
- declare const OryLocales: LocaleMap;
389
-
390
- type Locale = keyof typeof OryLocales;
391
- type IntlContextProps = {
392
- locale: Locale;
393
- customTranslations?: Partial<LocaleMap>;
394
- };
395
-
396
- type IntlConfig = IntlContextProps;
397
- /**
398
- * The configuration for Ory Elements.
399
- *
400
- * This configuration is used to customize the behavior and appearance of Ory Elements.
401
- *
402
- * By setting UI urls, you can override the default URLs for the login, registration, recovery, and verification flows.
403
- *
404
- * You can also set the name of the application, the logo URL, and the SDK configuration.
405
- * By default, the name and logo are displayed in the card's header.
406
- */
407
- type OryClientConfiguration = {
408
- /**
409
- * An optional logo URL to display in the UI instead of the name.
410
- * @deprecated Use `project.logo_light_url` instead.
411
- */
412
- logoUrl?: string;
413
- /**
414
- * The SDK configuration.
415
- * This configuration is used to set the URL of the Ory SDK and any additional options used for the SDK client.
416
- */
417
- sdk: {
418
- url: string;
419
- options?: Partial<ConfigurationParameters>;
420
- };
421
- /**
422
- * The internationalization configuration.
423
- * This configuration is used to set the locale and any additional options used for the i18n library.
424
- * The locale is used to determine the language of the UI.
425
- * The default locale is "en".
426
- */
427
- intl?: IntlConfig;
428
- } & ({
429
- /**
430
- * The name of the application the user is logging in to.
431
- * @deprecated Use `project.name` instead.
432
- */
433
- name: string;
434
- /**
435
- * The configuration for the project.
436
- */
437
- project: Omit<AccountExperienceConfiguration, "name"> & {
438
- name?: string;
439
- };
440
- } | {
441
- /**
442
- * The name of the application the user is logging in to.
443
- * @deprecated Use `project.name` instead.
444
- */
445
- name?: string;
446
- /**
447
- * The configuration for the project.
448
- */
449
- project: AccountExperienceConfiguration;
450
- });
451
-
452
387
  /**
453
388
  * A generic flow container, containing a flowType, the flow itself and the config object
454
389
  *
@@ -457,7 +392,6 @@ type OryClientConfiguration = {
457
392
  type OryFlow<TFlowType extends FlowType, TFlow> = {
458
393
  flowType: TFlowType;
459
394
  flow: TFlow;
460
- config: OryClientConfiguration;
461
395
  };
462
396
  /**
463
397
  * A flow container for the login flow
@@ -521,6 +455,48 @@ type ConsentFlowContainer = OryFlow<FlowType.OAuth2Consent, ConsentFlow>;
521
455
  */
522
456
  type OryFlowContainer = LoginFlowContainer | RegistrationFlowContainer | RecoveryFlowContainer | VerificationFlowContainer | SettingsFlowContainer | ConsentFlowContainer;
523
457
 
458
+ type LocaleMap = Record<string, Record<string, string>>;
459
+ declare const OryLocales: LocaleMap;
460
+
461
+ type Locale = keyof typeof OryLocales;
462
+ type IntlContextProps = {
463
+ locale: Locale;
464
+ customTranslations?: Partial<LocaleMap>;
465
+ };
466
+
467
+ type IntlConfig = IntlContextProps;
468
+ /**
469
+ * The configuration for Ory Elements.
470
+ *
471
+ * This configuration is used to customize the behavior and appearance of Ory Elements.
472
+ *
473
+ * By setting UI urls, you can override the default URLs for the login, registration, recovery, and verification flows.
474
+ *
475
+ * You can also set the name of the application, the logo URL, and the SDK configuration.
476
+ * By default, the name and logo are displayed in the card's header.
477
+ */
478
+ type OryClientConfiguration = {
479
+ /**
480
+ * The SDK configuration.
481
+ * This configuration is used to set the URL of the Ory SDK and any additional options used for the SDK client.
482
+ */
483
+ sdk?: {
484
+ url?: string;
485
+ options?: Partial<ConfigurationParameters>;
486
+ };
487
+ /**
488
+ * The internationalization configuration.
489
+ * This configuration is used to set the locale and any additional options used for the i18n library.
490
+ * The locale is used to determine the language of the UI.
491
+ * The default locale is "en".
492
+ */
493
+ intl?: IntlConfig;
494
+ /**
495
+ * The configuration for the project.
496
+ */
497
+ project: AccountExperienceConfiguration;
498
+ };
499
+
524
500
  /**
525
501
  * Converts a UiText to a FormattedMessage.
526
502
  * The UiText contains the id of the message and the context.
@@ -649,7 +625,33 @@ type FlowContextValue = OryFlowContainer & {
649
625
 
650
626
  type OryProviderProps = {
651
627
  components: OryFlowComponents;
628
+ config: OryClientConfiguration;
652
629
  } & OryFlowContainer & PropsWithChildren;
653
- declare function OryProvider({ children, components: Components, ...oryFlowProps }: OryProviderProps): react_jsx_runtime.JSX.Element;
630
+ declare function OryProvider({ children, components: Components, config, ...oryFlowProps }: OryProviderProps): react_jsx_runtime.JSX.Element;
631
+
632
+ type OryElementsConfiguration = {
633
+ sdk: OrySDK;
634
+ project: AccountExperienceConfiguration;
635
+ };
636
+ declare function useOryConfiguration(): OryElementsConfiguration;
637
+ type OrySDK = SDKConfig & {
638
+ /**
639
+ * The frontend client for the Ory SDK.
640
+ * This client is used to interact with the Ory SDK and should be used to make API calls.
641
+ */
642
+ frontend: FrontendApi;
643
+ };
644
+ type SDKConfig = {
645
+ /**
646
+ * The URL of the Ory SDK.
647
+ * This URL is used to connect to the Ory SDK and should be set to the base URL of your Ory instance.
648
+ */
649
+ url: string;
650
+ options?: Partial<ConfigurationParameters>;
651
+ };
652
+ declare function OryConfigurationProvider({ children, sdk: initialConfig, project, }: PropsWithChildren<{
653
+ sdk?: Partial<OryClientConfiguration["sdk"]>;
654
+ project?: Partial<AccountExperienceConfiguration>;
655
+ }>): react_jsx_runtime.JSX.Element;
654
656
 
655
- export { type ConsentFlow, type ConsentFlowContainer, type ErrorFlowContainer, type FlowContainerSetter, type FlowContextValue, type FormState, type FormStateAction, type FormStateMethodActive, type FormStateProvideIdentifier, type FormStateSelectMethod, type FormValues, HeadlessPageHeader, type IntlConfig, type LoginFlowContainer, type OnSubmitHandlerProps, OryCard, type OryCardAuthMethodListItemProps, OryCardContent, type OryCardContentProps, type OryCardDividerProps, OryCardFooter, type OryCardFooterProps, OryCardHeader, type OryCardHeaderProps, type OryCardLogoProps, type OryCardRootProps as OryCardProps, type OryCardSettingsSectionProps, OryCardValidationMessages, type OryClientConfiguration, OryConsentCard, type OryFlowComponentOverrides, type OryFlowComponents, type OryFlowContainer, OryForm, OryFormGroupDivider, type OryFormGroupProps, OryFormGroups, type OryFormGroupsProps, OryFormOidcButtons, type OryFormOidcRootProps, type OryFormProps, type OryFormRootProps, OryFormSection, type OryFormSectionContentProps, type OryFormSectionFooterProps, type OryFormSectionProps, OryFormSocialButtonsForm, OryLocales, type OryMessageContentProps, type OryMessageRootProps, type OryNodeAnchorProps, type OryNodeButtonProps, type OryNodeCaptchaProps, type OryNodeConsentScopeCheckboxProps, type OryNodeImageProps, type OryNodeInputProps, type OryNodeLabelProps, type OryNodeOidcButtonProps, type OryNodeTextProps, type OryPageHeaderProps, OryProvider, type OryProviderProps, OrySettingsCard, type OrySettingsOidcProps, type OrySettingsPasskeyProps, type OrySettingsRecoveryCodesProps, type OrySettingsTotpProps, type OrySettingsWebauthnProps, OryTwoStepCard, type RecoveryFlowContainer, type RegistrationFlowContainer, type SettingsFlowContainer, type VerificationFlowContainer, messageTestId, uiTextToFormattedMessage, useComponents, useNodeSorter, useOryFlow };
657
+ export { type ConsentFlow, type ConsentFlowContainer, type ErrorFlowContainer, type FlowContainerSetter, type FlowContextValue, type FormState, type FormStateAction, type FormStateMethodActive, type FormStateProvideIdentifier, type FormStateSelectMethod, type FormValues, HeadlessPageHeader, type IntlConfig, type LoginFlowContainer, type OnSubmitHandlerProps, OryCard, type OryCardAuthMethodListItemProps, OryCardContent, type OryCardContentProps, type OryCardDividerProps, OryCardFooter, type OryCardFooterProps, OryCardHeader, type OryCardHeaderProps, type OryCardLogoProps, type OryCardRootProps as OryCardProps, type OryCardSettingsSectionProps, OryCardValidationMessages, type OryClientConfiguration, OryConfigurationProvider, OryConsentCard, type OryElementsConfiguration, type OryFlowComponentOverrides, type OryFlowComponents, type OryFlowContainer, OryForm, OryFormGroupDivider, type OryFormGroupProps, OryFormGroups, type OryFormGroupsProps, OryFormOidcButtons, type OryFormOidcRootProps, type OryFormProps, type OryFormRootProps, OryFormSection, type OryFormSectionContentProps, type OryFormSectionFooterProps, type OryFormSectionProps, OryFormSocialButtonsForm, OryLocales, type OryMessageContentProps, type OryMessageRootProps, type OryNodeAnchorProps, type OryNodeButtonProps, type OryNodeCaptchaProps, type OryNodeConsentScopeCheckboxProps, type OryNodeImageProps, type OryNodeInputProps, type OryNodeLabelProps, type OryNodeOidcButtonProps, type OryNodeTextProps, type OryPageHeaderProps, OryProvider, type OryProviderProps, OrySettingsCard, type OrySettingsOidcProps, type OrySettingsPasskeyProps, type OrySettingsRecoveryCodesProps, type OrySettingsTotpProps, type OrySettingsWebauthnProps, OryTwoStepCard, type RecoveryFlowContainer, type RegistrationFlowContainer, type SettingsFlowContainer, type VerificationFlowContainer, messageTestId, uiTextToFormattedMessage, useComponents, useNodeSorter, useOryConfiguration, useOryFlow };