@sikka/hawa 0.0.137 → 0.0.139

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.
Files changed (39) hide show
  1. package/dist/styles.css +3 -0
  2. package/es/blocks/AuthForms/SignInForm.d.ts +0 -1
  3. package/es/blocks/AuthForms/SignUpForm.d.ts +1 -0
  4. package/es/elements/HawaCheckbox.d.ts +1 -0
  5. package/es/elements/HawaLogoButton.d.ts +1 -1
  6. package/es/elements/HawaTextField.d.ts +1 -0
  7. package/es/index.es.js +1 -1
  8. package/lib/blocks/AuthForms/SignInForm.d.ts +0 -1
  9. package/lib/blocks/AuthForms/SignUpForm.d.ts +1 -0
  10. package/lib/elements/HawaCheckbox.d.ts +1 -0
  11. package/lib/elements/HawaLogoButton.d.ts +1 -1
  12. package/lib/elements/HawaTextField.d.ts +1 -0
  13. package/lib/index.js +1 -1
  14. package/package.json +1 -1
  15. package/src/blocks/AuthForms/SignInForm.tsx +16 -16
  16. package/src/blocks/AuthForms/SignUpForm.tsx +20 -17
  17. package/src/blocks/Payment/CheckoutForm.tsx +2 -11
  18. package/src/elements/HawaCheckbox.tsx +9 -3
  19. package/src/elements/HawaLogoButton.tsx +12 -15
  20. package/src/elements/HawaSelect.tsx +2 -1
  21. package/src/elements/HawaStats.tsx +3 -3
  22. package/src/elements/HawaTable.tsx +9 -4
  23. package/src/elements/HawaTextField.tsx +8 -1
  24. package/src/hooks/useBreakpoint.ts +1 -1
  25. package/src/layout/HawaAppLayout.tsx +37 -8
  26. package/src/styles.css +3 -0
  27. package/storybook-static/745.4b81597c.iframe.bundle.js +1 -0
  28. package/storybook-static/{767.232e4e4c88bb0a2ed02d.manager.bundle.js → 767.7ed51dff3faa8acf55cd.manager.bundle.js} +2 -2
  29. package/storybook-static/{767.232e4e4c88bb0a2ed02d.manager.bundle.js.LICENSE.txt → 767.7ed51dff3faa8acf55cd.manager.bundle.js.LICENSE.txt} +22 -19
  30. package/storybook-static/870.91cc9366.iframe.bundle.js +2 -0
  31. package/storybook-static/{103.af0e0958.iframe.bundle.js.LICENSE.txt → 870.91cc9366.iframe.bundle.js.LICENSE.txt} +15 -11
  32. package/storybook-static/iframe.html +1 -1
  33. package/storybook-static/index.html +1 -1
  34. package/storybook-static/main.ad68749b.iframe.bundle.js +1 -0
  35. package/storybook-static/project.json +1 -1
  36. package/storybook-static/runtime~main.0d980255.iframe.bundle.js +1 -0
  37. package/storybook-static/103.af0e0958.iframe.bundle.js +0 -2
  38. package/storybook-static/main.3b2c2bdd.iframe.bundle.js +0 -1
  39. package/storybook-static/runtime~main.4a2964ac.iframe.bundle.js +0 -1
package/dist/styles.css CHANGED
@@ -850,6 +850,9 @@ video {
850
850
  .w-12 {
851
851
  width: 3rem;
852
852
  }
853
+ .w-40 {
854
+ width: 10rem;
855
+ }
853
856
  .w-10\/12 {
854
857
  width: 83.333333%;
855
858
  }
@@ -12,7 +12,6 @@ type SignInFormTypes = {
12
12
  usernameLabel?: string;
13
13
  usernamePlaceholder?: string;
14
14
  usernameRequired?: string;
15
- usernameRequiredText?: string;
16
15
  phoneRequiredText?: string;
17
16
  passwordLabel?: string;
18
17
  passwordPlaceholder?: string;
@@ -43,6 +43,7 @@ type SignUpFormTypes = {
43
43
  handleGoogleSignUp: () => void;
44
44
  handleGithubSignUp: () => void;
45
45
  handleTwitterSignUp: () => void;
46
+ handleRouteToTOS: () => void;
46
47
  showError: any;
47
48
  errorTitle: any;
48
49
  errorText: any;
@@ -3,6 +3,7 @@ type TCheckBoxTypes = {
3
3
  centered?: boolean;
4
4
  label?: any;
5
5
  helperText?: any;
6
+ id: string;
6
7
  onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void;
7
8
  };
8
9
  export declare const HawaCheckbox: React.FunctionComponent<TCheckBoxTypes>;
@@ -1,7 +1,7 @@
1
1
  import React from "react";
2
2
  type LogoButtonTypes = {
3
3
  lang?: any;
4
- logo?: any;
4
+ logo?: "google" | "github" | "twitter" | "wallet" | "googlepay" | "applepay" | "stcpay" | "visa/master" | "paypal" | "mada";
5
5
  onClick?: any;
6
6
  buttonText?: any;
7
7
  };
@@ -13,6 +13,7 @@ type TextFieldTypes = {
13
13
  name?: any;
14
14
  inputProps?: any;
15
15
  onChange?: any;
16
+ ref?: any;
16
17
  };
17
18
  export declare const HawaTextField: React.FunctionComponent<TextFieldTypes>;
18
19
  export {};