@sikka/hawa 0.0.186 → 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;
@@ -965,6 +965,9 @@ video {
965
965
  .w-40 {
966
966
  width: 10rem;
967
967
  }
968
+ .min-w-full {
969
+ min-width: 100%;
970
+ }
968
971
  .min-w-min {
969
972
  min-width: -moz-min-content;
970
973
  min-width: min-content;
@@ -1615,12 +1618,15 @@ video {
1615
1618
  .pr-3 {
1616
1619
  padding-right: 0.75rem;
1617
1620
  }
1618
- .pl-10 {
1619
- padding-left: 2.5rem;
1621
+ .pr-10 {
1622
+ padding-right: 2.5rem;
1620
1623
  }
1621
1624
  .pl-3 {
1622
1625
  padding-left: 0.75rem;
1623
1626
  }
1627
+ .pb-2 {
1628
+ padding-bottom: 0.5rem;
1629
+ }
1624
1630
  .pt-0 {
1625
1631
  padding-top: 0px;
1626
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 {};