@pixpilot/shadcn-auth 0.0.2 → 0.0.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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
import React from "react";
|
|
3
3
|
|
|
4
4
|
//#region src/AuthForms.d.ts
|
|
@@ -19,7 +19,7 @@ declare function AuthForms({
|
|
|
19
19
|
handleResetPassword,
|
|
20
20
|
authLoadingState,
|
|
21
21
|
authErrorData
|
|
22
|
-
}: AuthFormsProps):
|
|
22
|
+
}: AuthFormsProps): react_jsx_runtime0.JSX.Element;
|
|
23
23
|
//#endregion
|
|
24
24
|
//#region src/GoogleSignIn.d.ts
|
|
25
25
|
interface GoogleSignInProps {
|
|
@@ -40,7 +40,7 @@ declare function ResetPasswordForm({
|
|
|
40
40
|
isLoading,
|
|
41
41
|
error,
|
|
42
42
|
onSwitchToSignIn
|
|
43
|
-
}: ResetPasswordFormProps):
|
|
43
|
+
}: ResetPasswordFormProps): react_jsx_runtime0.JSX.Element;
|
|
44
44
|
//#endregion
|
|
45
45
|
//#region src/SignInForm.d.ts
|
|
46
46
|
interface SignInFormProps {
|
|
@@ -58,7 +58,7 @@ declare function SignInForm({
|
|
|
58
58
|
error,
|
|
59
59
|
onSwitchToSignUp,
|
|
60
60
|
onSwitchToReset
|
|
61
|
-
}: SignInFormProps):
|
|
61
|
+
}: SignInFormProps): react_jsx_runtime0.JSX.Element;
|
|
62
62
|
//#endregion
|
|
63
63
|
//#region src/SignUpForm.d.ts
|
|
64
64
|
interface SignUpFormProps {
|
|
@@ -74,6 +74,6 @@ declare function SignUpForm({
|
|
|
74
74
|
isLoading,
|
|
75
75
|
error,
|
|
76
76
|
onSwitchToSignIn
|
|
77
|
-
}: SignUpFormProps):
|
|
77
|
+
}: SignUpFormProps): react_jsx_runtime0.JSX.Element;
|
|
78
78
|
//#endregion
|
|
79
79
|
export { AuthForms, GoogleSignIn, GoogleSignInProps, ResetPasswordForm, SignInForm, SignUpForm };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pixpilot/shadcn-auth",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.3",
|
|
5
5
|
"description": "Authentication forms and components built with shadcn/ui.",
|
|
6
6
|
"author": "m.doaie <m.doaie@hotmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"lucide-react": "0.553.0",
|
|
33
|
-
"@pixpilot/shadcn": "0.1.
|
|
34
|
-
"@pixpilot/shadcn-ui": "0.0.
|
|
33
|
+
"@pixpilot/shadcn": "0.1.7",
|
|
34
|
+
"@pixpilot/shadcn-ui": "0.0.3"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@storybook/react": "^8.5.3",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
"tsdown": "^0.15.8",
|
|
45
45
|
"typescript": "^5.9.3",
|
|
46
46
|
"typescript-eslint": "^8.46.3",
|
|
47
|
+
"@internal/prettier-config": "0.0.1",
|
|
48
|
+
"@internal/eslint-config": "0.3.0",
|
|
47
49
|
"@internal/tsconfig": "0.1.0",
|
|
48
50
|
"@internal/tsdown-config": "0.1.0",
|
|
49
|
-
"@internal/
|
|
50
|
-
"@internal/vitest-config": "0.1.0",
|
|
51
|
-
"@internal/eslint-config": "0.3.0"
|
|
51
|
+
"@internal/vitest-config": "0.1.0"
|
|
52
52
|
},
|
|
53
53
|
"prettier": "@internal/prettier-config",
|
|
54
54
|
"scripts": {
|