@sikka/hawa 0.0.116 → 0.0.118

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,42 +1,42 @@
1
1
  import React from "react";
2
2
  type SignInFormTypes = {
3
- showError: any;
4
- errorTitle: string;
5
- errorText: string;
6
- signInType: "email" | "username" | "phone";
7
- texts: {
8
- emailLabel: string;
9
- emailPlaceholder: string;
10
- emailRequiredText: string;
11
- emailInvalidText: string;
12
- usernameLabel: string;
13
- usernamePlaceholder: string;
14
- usernameRequired: string;
15
- usernameRequiredText: string;
16
- phoneRequiredText: string;
17
- passwordLabel: string;
18
- passwordPlaceholder: string;
19
- passwordRequiredText: string;
20
- forgotPasswordText: string;
21
- newUserText: string;
22
- signUpText: string;
23
- signInText: string;
24
- googleButtonLabel: string;
25
- githubButtonLabel: string;
26
- twitterButtonLabel: string;
3
+ showError?: any;
4
+ errorTitle?: string;
5
+ errorText?: string;
6
+ signInType?: "email" | "username" | "phone";
7
+ texts?: {
8
+ emailLabel?: string;
9
+ emailPlaceholder?: string;
10
+ emailRequiredText?: string;
11
+ emailInvalidText?: string;
12
+ usernameLabel?: string;
13
+ usernamePlaceholder?: string;
14
+ usernameRequired?: string;
15
+ usernameRequiredText?: string;
16
+ phoneRequiredText?: string;
17
+ passwordLabel?: string;
18
+ passwordPlaceholder?: string;
19
+ passwordRequiredText?: string;
20
+ forgotPasswordText?: string;
21
+ newUserText?: string;
22
+ signUpText?: string;
23
+ signInText?: string;
24
+ googleButtonLabel?: string;
25
+ githubButtonLabel?: string;
26
+ twitterButtonLabel?: string;
27
27
  };
28
- withoutResetPassword: boolean;
29
- withoutSignUp: boolean;
30
- isLoading: any;
31
- viaGoogle: boolean;
32
- viaGithub: boolean;
33
- viaTwitter: boolean;
34
- handleSignIn: (e: any) => void;
35
- handleRouteToSignUp: () => void;
36
- handleForgotPassword: () => void;
37
- handleGoogleSignIn: () => void;
38
- handleGithubSignIn: () => void;
39
- handleTwitterSignIn: () => void;
28
+ withoutResetPassword?: boolean;
29
+ withoutSignUp?: boolean;
30
+ isLoading?: any;
31
+ viaGoogle?: boolean;
32
+ viaGithub?: boolean;
33
+ viaTwitter?: boolean;
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 {};
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ type SpinnerTypes = {};
3
+ export declare const HawaSpinner: React.FunctionComponent<SpinnerTypes>;
4
+ export {};
@@ -4,6 +4,8 @@ type StatTypes = {
4
4
  number?: string;
5
5
  helperText?: string;
6
6
  variant?: "plain" | "contained" | "outlined";
7
+ isLoading?: boolean;
8
+ handleClick?: () => void;
7
9
  };
8
10
  export declare const HawaStats: React.FunctionComponent<StatTypes>;
9
11
  export {};
@@ -25,6 +25,7 @@ export * from "./HawaCopyrights";
25
25
  export * from "./HawaTimeline";
26
26
  export * from "./Breadcrumb";
27
27
  export * from "./HawaStats";
28
+ export * from "./HawaSpinner";
28
29
  export * from "./HawaTextField";
29
30
  export * from "./HawaCardInput";
30
31
  export * from "./HawaPinInput";