@rpcbase/auth 0.24.0 → 0.26.0
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/package.json
CHANGED
|
@@ -31,7 +31,7 @@ export const AppleSignInButton = ({
|
|
|
31
31
|
>
|
|
32
32
|
<path d="M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.539 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701" />
|
|
33
33
|
</svg>
|
|
34
|
-
<span>
|
|
34
|
+
<span>Continue with Apple</span>
|
|
35
35
|
</button>
|
|
36
36
|
)
|
|
37
37
|
}
|
|
@@ -34,7 +34,7 @@ export const SignInForm = ({
|
|
|
34
34
|
|
|
35
35
|
return (
|
|
36
36
|
<FormProvider {...methods}>
|
|
37
|
-
<form method="post" className={className} onSubmit={methods.handleSubmit(onSubmit)}>
|
|
37
|
+
<form method="post" noValidate className={className} onSubmit={methods.handleSubmit(onSubmit)}>
|
|
38
38
|
{children}
|
|
39
39
|
</form>
|
|
40
40
|
</FormProvider>
|
|
@@ -35,7 +35,7 @@ export const SignUpForm = ({
|
|
|
35
35
|
|
|
36
36
|
return (
|
|
37
37
|
<FormProvider {...methods}>
|
|
38
|
-
<form method="post" className={className} onSubmit={methods.handleSubmit(onSubmit)}>
|
|
38
|
+
<form method="post" noValidate className={className} onSubmit={methods.handleSubmit(onSubmit)}>
|
|
39
39
|
{children}
|
|
40
40
|
</form>
|
|
41
41
|
</FormProvider>
|