@windrun-huaiin/third-ui 5.10.1 → 5.10.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/dist/clerk/index.d.mts +2 -1
- package/dist/clerk/index.d.ts +2 -1
- package/dist/clerk/index.js +221 -183
- package/dist/clerk/index.js.map +1 -1
- package/dist/clerk/index.mjs +222 -184
- package/dist/clerk/index.mjs.map +1 -1
- package/dist/fuma/mdx/index.js +215 -181
- package/dist/fuma/mdx/index.js.map +1 -1
- package/dist/fuma/mdx/index.mjs +215 -181
- package/dist/fuma/mdx/index.mjs.map +1 -1
- package/dist/fuma/server.js +215 -181
- package/dist/fuma/server.js.map +1 -1
- package/dist/fuma/server.mjs +215 -181
- package/dist/fuma/server.mjs.map +1 -1
- package/dist/main/index.js +216 -182
- package/dist/main/index.js.map +1 -1
- package/dist/main/index.mjs +216 -182
- package/dist/main/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/clerk/clerk-user.tsx +11 -2
package/dist/clerk/index.d.mts
CHANGED
|
@@ -15,8 +15,9 @@ declare function ClerkProviderClient({ children, locale, signInUrl, signUpUrl, f
|
|
|
15
15
|
interface ClerkUserProps {
|
|
16
16
|
locale: string;
|
|
17
17
|
clerkAuthInModal?: boolean;
|
|
18
|
+
showSignUp?: boolean;
|
|
18
19
|
}
|
|
19
|
-
declare function ClerkUser({ locale, clerkAuthInModal }: ClerkUserProps): JSX.Element;
|
|
20
|
+
declare function ClerkUser({ locale, clerkAuthInModal, showSignUp }: ClerkUserProps): JSX.Element;
|
|
20
21
|
|
|
21
22
|
/**
|
|
22
23
|
* @license
|
package/dist/clerk/index.d.ts
CHANGED
|
@@ -15,8 +15,9 @@ declare function ClerkProviderClient({ children, locale, signInUrl, signUpUrl, f
|
|
|
15
15
|
interface ClerkUserProps {
|
|
16
16
|
locale: string;
|
|
17
17
|
clerkAuthInModal?: boolean;
|
|
18
|
+
showSignUp?: boolean;
|
|
18
19
|
}
|
|
19
|
-
declare function ClerkUser({ locale, clerkAuthInModal }: ClerkUserProps): JSX.Element;
|
|
20
|
+
declare function ClerkUser({ locale, clerkAuthInModal, showSignUp }: ClerkUserProps): JSX.Element;
|
|
20
21
|
|
|
21
22
|
/**
|
|
22
23
|
* @license
|