@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.
@@ -1,8 +1,8 @@
1
1
  import React from "react";
2
2
  type AppLandingTypes = {
3
- handleSignIn: any;
4
- handleSignUp: any;
5
- handleLanguage: any;
3
+ handleSignIn: () => void;
4
+ handleSignUp: () => void;
5
+ handleLanguage: () => void;
6
6
  texts: {
7
7
  signIn: string;
8
8
  signUp: string;
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  type NewPasswordTypes = {
3
- handleNewPassword: any;
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 {};
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  type ResetPasswordType = {
3
- handleResetPassword: any;
3
+ handleResetPassword: () => void;
4
4
  sent: any;
5
5
  texts: {
6
6
  emailLabel: string;
@@ -31,12 +31,12 @@ type SignInFormTypes = {
31
31
  viaGoogle: boolean;
32
32
  viaGithub: boolean;
33
33
  viaTwitter: boolean;
34
- handleSignIn: any;
35
- handleRouteToSignUp: any;
36
- handleForgotPassword: any;
37
- handleGoogleSignIn: any;
38
- handleGithubSignIn: any;
39
- handleTwitterSignIn: any;
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 {};
@@ -7,6 +7,7 @@ type SignInPhoneTypes = {
7
7
  handlePhoneChange: any;
8
8
  phoneRequiredText: any;
9
9
  SignInButtonText: any;
10
+ handleSignIn: any;
10
11
  };
11
12
  export declare const SignInPhone: React.FunctionComponent<SignInPhoneTypes>;
12
13
  export {};
@@ -38,11 +38,11 @@ type SignUpFormTypes = {
38
38
  showNewsletterOption: boolean;
39
39
  showRefCode: boolean;
40
40
  showTermsOption: boolean;
41
- handleSignUp: any;
42
- handleRouteToSignIn: any;
43
- handleGoogleSignUp: any;
44
- handleGithubSignUp: any;
45
- handleTwitterSignUp: any;
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;
@@ -2,6 +2,7 @@ import React from "react";
2
2
  type TChipTypes = {
3
3
  label: string;
4
4
  size: "small" | "normal" | "large";
5
+ icon?: any;
5
6
  };
6
7
  export declare const HawaChip: React.FunctionComponent<TChipTypes>;
7
8
  export {};