@sikka/hawa 0.0.113 → 0.0.114
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 +6 -0
- package/es/blocks/AuthForms/AppLanding.d.ts +3 -3
- package/es/blocks/AuthForms/NewPasswordForm.d.ts +1 -2
- package/es/blocks/AuthForms/ResetPasswordForm.d.ts +1 -1
- package/es/blocks/AuthForms/SignInForm.d.ts +6 -6
- package/es/blocks/AuthForms/SignInPhone.d.ts +1 -0
- package/es/blocks/AuthForms/SignUpForm.d.ts +5 -5
- package/es/elements/HawaChip.d.ts +1 -0
- package/es/index.es.js +1 -1
- package/lib/blocks/AuthForms/AppLanding.d.ts +3 -3
- package/lib/blocks/AuthForms/NewPasswordForm.d.ts +1 -2
- package/lib/blocks/AuthForms/ResetPasswordForm.d.ts +1 -1
- package/lib/blocks/AuthForms/SignInForm.d.ts +6 -6
- package/lib/blocks/AuthForms/SignInPhone.d.ts +1 -0
- package/lib/blocks/AuthForms/SignUpForm.d.ts +5 -5
- package/lib/elements/HawaChip.d.ts +1 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/blocks/AuthForms/AppLanding.tsx +3 -3
- package/src/blocks/AuthForms/NewPasswordForm.tsx +1 -2
- package/src/blocks/AuthForms/ResetPasswordForm.tsx +1 -1
- package/src/blocks/AuthForms/SignInForm.tsx +6 -6
- package/src/blocks/AuthForms/SignInPhone.tsx +8 -10
- package/src/blocks/AuthForms/SignUpForm.tsx +7 -7
- package/src/elements/HawaChip.tsx +9 -5
- package/src/elements/HawaSearchBar.tsx +1 -1
- package/src/elements/HawaTextField.tsx +18 -5
- package/src/styles.css +6 -0
package/dist/styles.css
CHANGED
|
@@ -541,6 +541,9 @@ video {
|
|
|
541
541
|
.bottom-4 {
|
|
542
542
|
bottom: 1rem;
|
|
543
543
|
}
|
|
544
|
+
.left-3 {
|
|
545
|
+
left: 0.75rem;
|
|
546
|
+
}
|
|
544
547
|
.top-5 {
|
|
545
548
|
top: 1.25rem;
|
|
546
549
|
}
|
|
@@ -1389,6 +1392,9 @@ video {
|
|
|
1389
1392
|
.pr-3 {
|
|
1390
1393
|
padding-right: 0.75rem;
|
|
1391
1394
|
}
|
|
1395
|
+
.pl-10 {
|
|
1396
|
+
padding-left: 2.5rem;
|
|
1397
|
+
}
|
|
1392
1398
|
.pt-0 {
|
|
1393
1399
|
padding-top: 0px;
|
|
1394
1400
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
type NewPasswordTypes = {
|
|
3
|
-
handleNewPassword:
|
|
3
|
+
handleNewPassword: () => void;
|
|
4
4
|
passwordChanged: any;
|
|
5
5
|
texts: {
|
|
6
6
|
passwordPlaceholder: string;
|
|
@@ -13,7 +13,6 @@ type NewPasswordTypes = {
|
|
|
13
13
|
passwordMatchError: string;
|
|
14
14
|
passwordChanged: string;
|
|
15
15
|
};
|
|
16
|
-
handleSignIn: any;
|
|
17
16
|
};
|
|
18
17
|
export declare const NewPasswordForm: React.FunctionComponent<NewPasswordTypes>;
|
|
19
18
|
export {};
|
|
@@ -31,12 +31,12 @@ type SignInFormTypes = {
|
|
|
31
31
|
viaGoogle: boolean;
|
|
32
32
|
viaGithub: boolean;
|
|
33
33
|
viaTwitter: boolean;
|
|
34
|
-
handleSignIn: any;
|
|
35
|
-
handleRouteToSignUp:
|
|
36
|
-
handleForgotPassword:
|
|
37
|
-
handleGoogleSignIn:
|
|
38
|
-
handleGithubSignIn:
|
|
39
|
-
handleTwitterSignIn:
|
|
34
|
+
handleSignIn: (e: any) => void;
|
|
35
|
+
handleRouteToSignUp: () => void;
|
|
36
|
+
handleForgotPassword: () => void;
|
|
37
|
+
handleGoogleSignIn: () => void;
|
|
38
|
+
handleGithubSignIn: () => void;
|
|
39
|
+
handleTwitterSignIn: () => void;
|
|
40
40
|
};
|
|
41
41
|
export declare const SignInForm: React.FunctionComponent<SignInFormTypes>;
|
|
42
42
|
export {};
|
|
@@ -38,11 +38,11 @@ type SignUpFormTypes = {
|
|
|
38
38
|
showNewsletterOption: boolean;
|
|
39
39
|
showRefCode: boolean;
|
|
40
40
|
showTermsOption: boolean;
|
|
41
|
-
handleSignUp: any;
|
|
42
|
-
handleRouteToSignIn:
|
|
43
|
-
handleGoogleSignUp:
|
|
44
|
-
handleGithubSignUp:
|
|
45
|
-
handleTwitterSignUp:
|
|
41
|
+
handleSignUp: (e: any) => void;
|
|
42
|
+
handleRouteToSignIn: () => void;
|
|
43
|
+
handleGoogleSignUp: () => void;
|
|
44
|
+
handleGithubSignUp: () => void;
|
|
45
|
+
handleTwitterSignUp: () => void;
|
|
46
46
|
showError: any;
|
|
47
47
|
errorTitle: any;
|
|
48
48
|
errorText: any;
|