@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 +11 -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/HawaSelect.tsx +1 -1
- package/src/elements/HawaTabs.tsx +11 -3
- package/src/elements/HawaTextField.tsx +14 -19
- package/src/styles.css +11 -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;
|
|
@@ -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
|
-
.
|
|
1619
|
-
padding-
|
|
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>;
|