@sikka/hawa 0.0.185 → 0.0.187

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 CHANGED
@@ -385,7 +385,7 @@ video {
385
385
  --button-secondary-500: #ffc011;
386
386
  --button-secondary-700: #b48d24;
387
387
 
388
- --border-radius: 13px;
388
+ --border-radius: 0px;
389
389
  }
390
390
  input[type="number"]::-webkit-inner-spin-button,
391
391
  input[type="number"]::-webkit-outer-spin-button {
@@ -608,8 +608,8 @@ video {
608
608
  .top-2 {
609
609
  top: 0.5rem;
610
610
  }
611
- .left-3 {
612
- left: 0.75rem;
611
+ .right-3 {
612
+ right: 0.75rem;
613
613
  }
614
614
  .-top-10 {
615
615
  top: -2.5rem;
@@ -851,6 +851,10 @@ video {
851
851
  .h-11 {
852
852
  height: 2.75rem;
853
853
  }
854
+ .h-max {
855
+ height: -moz-max-content;
856
+ height: max-content;
857
+ }
854
858
  .h-0 {
855
859
  height: 0px;
856
860
  }
@@ -961,6 +965,9 @@ video {
961
965
  .w-40 {
962
966
  width: 10rem;
963
967
  }
968
+ .min-w-full {
969
+ min-width: 100%;
970
+ }
964
971
  .min-w-min {
965
972
  min-width: -moz-min-content;
966
973
  min-width: min-content;
@@ -1611,12 +1618,15 @@ video {
1611
1618
  .pr-3 {
1612
1619
  padding-right: 0.75rem;
1613
1620
  }
1614
- .pl-10 {
1615
- padding-left: 2.5rem;
1621
+ .pr-10 {
1622
+ padding-right: 2.5rem;
1616
1623
  }
1617
1624
  .pl-3 {
1618
1625
  padding-left: 0.75rem;
1619
1626
  }
1627
+ .pb-2 {
1628
+ padding-bottom: 0.5rem;
1629
+ }
1620
1630
  .pt-0 {
1621
1631
  padding-top: 0px;
1622
1632
  }
@@ -1,6 +1,7 @@
1
1
  import React from "react";
2
2
  type ResetPasswordType = {
3
3
  handleResetPassword: () => void;
4
+ handleRouteToSignUp: () => void;
4
5
  sent: any;
5
6
  texts: {
6
7
  emailLabel: string;
@@ -9,6 +10,8 @@ type ResetPasswordType = {
9
10
  emailInvalidText: string;
10
11
  emailSentText: string;
11
12
  resetPassword: string;
13
+ signUpText: string;
14
+ dontHaveAccount: string;
12
15
  };
13
16
  };
14
17
  export declare const ResetPasswordForm: React.FunctionComponent<ResetPasswordType>;
@@ -30,6 +30,7 @@ type SignUpFormTypes = {
30
30
  googleButtonLabel: string;
31
31
  githubButtonLabel: string;
32
32
  twitterButtonLabel: string;
33
+ refCode: string;
33
34
  };
34
35
  showUserSource: any;
35
36
  viaGoogle: boolean;
@@ -7,6 +7,7 @@ type TabsTypes = {
7
7
  orientation?: "horizontal" | "vertical";
8
8
  direction?: "rtl" | "ltr";
9
9
  marginBetween?: any;
10
+ width?: "full" | "normal";
10
11
  };
11
12
  export declare const HawaTabs: React.FunctionComponent<TabsTypes>;
12
13
  export {};
@@ -14,6 +14,7 @@ type TextFieldTypes = {
14
14
  inputProps?: any;
15
15
  onChange?: any;
16
16
  ref?: any;
17
+ icon?: any;
17
18
  };
18
19
  export declare const HawaTextField: React.FunctionComponent<TextFieldTypes>;
19
20
  export {};