@sikka/hawa 0.0.182 → 0.0.183
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/styles.css +10 -14
- package/es/blocks/AuthForms/SignInForm.d.ts +9 -0
- package/es/index.es.js +1 -1
- package/lib/blocks/AuthForms/SignInForm.d.ts +9 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/blocks/AuthForms/SignInForm.tsx +9 -0
- package/src/layout/HawaAppLayout.tsx +61 -73
- package/src/styles.css +10 -14
|
@@ -27,11 +27,20 @@ type SignInFormTypes = {
|
|
|
27
27
|
};
|
|
28
28
|
withoutResetPassword?: boolean;
|
|
29
29
|
withoutSignUp?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
*show spinner if true
|
|
32
|
+
*/
|
|
30
33
|
isLoading?: any;
|
|
31
34
|
viaGoogle?: boolean;
|
|
32
35
|
viaGithub?: boolean;
|
|
33
36
|
viaTwitter?: boolean;
|
|
37
|
+
/**
|
|
38
|
+
* Handle the sign in .
|
|
39
|
+
*/
|
|
34
40
|
handleSignIn?: (e: any) => void;
|
|
41
|
+
/**
|
|
42
|
+
* Handle routing to sign up page
|
|
43
|
+
*/
|
|
35
44
|
handleRouteToSignUp?: () => void;
|
|
36
45
|
handleForgotPassword?: () => void;
|
|
37
46
|
handleGoogleSignIn?: () => void;
|