doct-ui-auth-kit 1.0.18 → 1.0.21
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/core/use-auth-flow.d.ts +8 -1
- package/dist/core/use-auth-flow.test.d.ts +1 -0
- package/dist/doct-ui-auth-kit.css +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2183 -1985
- package/dist/pages/index.d.ts +1 -0
- package/dist/pages/link-or-merge/index.d.ts +2 -0
- package/dist/pages/link-or-merge/link-or-merge-page.d.ts +2 -0
- package/dist/pages.js +12 -11
- package/dist/signup-page-B0AhJLNo.js +1793 -0
- package/dist/types/auth/auth-api-adapter.d.ts +22 -0
- package/dist/types/auth/auth-types.d.ts +1 -1
- package/dist/types/auth/flow.d.ts +30 -1
- package/dist/types/pages/pages.d.ts +6 -1
- package/dist/utils/flow-state-storage.d.ts +32 -0
- package/dist/utils/index.d.ts +1 -0
- package/package.json +110 -110
- package/dist/signup-page-C4ccMx69.js +0 -1748
package/dist/pages/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Page components barrel: *Page = full page with layout, bare name = form-only for composition.
|
|
3
3
|
*/
|
|
4
|
+
export { LinkOrMergePage, type LinkOrMergePageProps, } from './link-or-merge';
|
|
4
5
|
export { LoginEntry, type LoginEntryMode, LoginEntryPage, type LoginEntryPageProps, type LoginEntryProps, } from './login-entry';
|
|
5
6
|
export { MainLogin, type MainLoginAppleProviderConfig, type MainLoginGoogleProviderConfig, MainLoginPage, type MainLoginPageProps, type MainLoginPageProvidersConfig, } from './main-login';
|
|
6
7
|
export { OtpVerification, type OtpVerificationMode, OtpVerificationPage, type OtpVerificationPageProps, type OtpVerificationProps, } from './otp-verification';
|
package/dist/pages.js
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { L as
|
|
2
|
+
import { L as i, a as n, b as g, M as s, c as o, O as t, d as r, R as L, e as p, S as P, f as c } from "./signup-page-B0AhJLNo.js";
|
|
3
3
|
export {
|
|
4
|
-
|
|
5
|
-
n as
|
|
6
|
-
g as
|
|
7
|
-
s as
|
|
8
|
-
o as
|
|
9
|
-
t as
|
|
10
|
-
|
|
11
|
-
L as
|
|
12
|
-
|
|
13
|
-
P as
|
|
4
|
+
i as LinkOrMergePage,
|
|
5
|
+
n as LoginEntry,
|
|
6
|
+
g as LoginEntryPage,
|
|
7
|
+
s as MainLogin,
|
|
8
|
+
o as MainLoginPage,
|
|
9
|
+
t as OtpVerification,
|
|
10
|
+
r as OtpVerificationPage,
|
|
11
|
+
L as RepeatLogin,
|
|
12
|
+
p as RepeatLoginPage,
|
|
13
|
+
P as Signup,
|
|
14
|
+
c as SignupPage
|
|
14
15
|
};
|