From 62b302e64739ba4c4eceebcdcc67c95c2750e760 Mon Sep 17 00:00:00 2001 From: Aleksei Date: Fri, 16 Feb 2024 21:20:14 +0300 Subject: [PATCH] Added missed exports for sections In react-components/ory/index.ts added missed exports from ./sections folder --- src/react-components/ory/index.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/react-components/ory/index.ts b/src/react-components/ory/index.ts index 0f142f38a..33f2246a3 100644 --- a/src/react-components/ory/index.ts +++ b/src/react-components/ory/index.ts @@ -9,21 +9,24 @@ export * from "./helpers/node-script" export * from "./helpers/types" export * from "./helpers/user-auth-form" export * from "./helpers/utils" +export * from "./sections/auth-code-section" export * from "./sections/link-section" +export * from "./sections/logged-info" export * from "./sections/login-section" export * from "./sections/lookup-secret-settings-section" +export * from "./sections/lookup-secrets-section" export * from "./sections/oidc-section" export * from "./sections/oidc-settings-section" +export * from "./sections/passkey-settings-section" export * from "./sections/password-settings-section" export * from "./sections/passwordless-section" export * from "./sections/profile-section" export * from "./sections/registration-section" export * from "./sections/totp-settings-section" export * from "./sections/webauthn-settings-section" -export * from "./sections/passkey-settings-section" export * from "./user-auth-card" -export * from "./user-error-card" -export * from "./user-settings-card" export * from "./user-consent-card" +export * from "./user-error-card" export * from "./user-logout-card" +export * from "./user-settings-card" export * from "./user-settings-screen"