@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 +15 -5
- package/es/blocks/AuthForms/ResetPasswordForm.d.ts +3 -0
- package/es/blocks/AuthForms/SignUpForm.d.ts +1 -0
- package/es/elements/HawaTabs.d.ts +1 -0
- package/es/elements/HawaTextField.d.ts +1 -0
- package/es/index.es.js +1 -1
- package/lib/blocks/AuthForms/ResetPasswordForm.d.ts +3 -0
- package/lib/blocks/AuthForms/SignUpForm.d.ts +1 -0
- package/lib/elements/HawaTabs.d.ts +1 -0
- package/lib/elements/HawaTextField.d.ts +1 -0
- package/lib/index.js +1 -1
- package/package.json +20 -4
- package/src/blocks/AuthForms/ResetPasswordForm.tsx +12 -0
- package/src/blocks/AuthForms/SignUpForm.tsx +40 -43
- package/src/elements/HawaCheckbox.tsx +3 -2
- package/src/elements/HawaMenu.tsx +3 -2
- package/src/elements/HawaPhoneInput.tsx +1 -1
- package/src/elements/HawaSelect.tsx +1 -1
- package/src/elements/HawaTabs.tsx +11 -5
- package/src/elements/HawaTextField.tsx +14 -19
- package/src/layout/HawaAppLayout.tsx +33 -9
- package/src/layout/HawaContainer.tsx +1 -1
- package/src/styles.css +15 -5
- package/src/tailwind.css +1 -1
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:
|
|
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
|
-
.
|
|
612
|
-
|
|
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
|
-
.
|
|
1615
|
-
padding-
|
|
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>;
|