@sikka/hawa 0.0.203 → 0.0.205

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,15 +1,22 @@
1
1
  import React from "react";
2
- type CodeConfirmationTypes = {
3
- showError: any;
4
- errorTitle: any;
5
- errorText: any;
6
- texts: {
2
+ type TConfirmation = {
3
+ showError?: any;
4
+ errorTitle?: any;
5
+ errorText?: any;
6
+ texts?: {
7
+ checkYourPhone: string;
8
+ weSentCode: string;
9
+ didntGetCode: string;
10
+ resendCode: string;
7
11
  codeLabel: string;
8
12
  codePlaceholder: string;
9
13
  codeRequiredText: string;
10
- confirmText: string;
14
+ confirm: string;
15
+ cancel: any;
11
16
  };
12
- handleSignIn: any;
17
+ phoneNumber?: string;
18
+ submitConfirmation?: any;
19
+ handleSignIn?: any;
13
20
  };
14
- export declare const CodeConfirmation: React.FunctionComponent<CodeConfirmationTypes>;
21
+ export declare const CodeConfirmation: React.FunctionComponent<TConfirmation>;
15
22
  export {};
@@ -1,6 +1,7 @@
1
1
  import React from "react";
2
+ export declare const SignInForm: React.FunctionComponent<SignInFormTypes>;
2
3
  type SignInFormTypes = {
3
- language?: string;
4
+ direction?: "rtl" | "ltr";
4
5
  showError?: any;
5
6
  errorTitle?: string;
6
7
  errorText?: string;
@@ -47,5 +48,4 @@ type SignInFormTypes = {
47
48
  handleGithubSignIn?: () => void;
48
49
  handleTwitterSignIn?: () => void;
49
50
  };
50
- export declare const SignInForm: React.FunctionComponent<SignInFormTypes>;
51
51
  export {};
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  type SignUpFormTypes = {
3
- language?: string;
3
+ direction?: "rtl" | "ltr";
4
4
  texts: {
5
5
  fullNameLabel: string;
6
6
  fullNamePlaceholder: string;
@@ -1,8 +1,10 @@
1
1
  import React from "react";
2
2
  type PinInputTypes = {
3
- label: string;
3
+ label?: string;
4
4
  icon?: JSX.Element;
5
- digits?: number;
5
+ digits: number;
6
+ width?: "normal" | "full";
7
+ getPins?: any;
6
8
  };
7
9
  export declare const HawaPinInput: React.FunctionComponent<PinInputTypes>;
8
10
  export {};