@sikka/hawa 0.0.244 → 0.0.245
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 +8 -3
- package/es/blocks/AuthForms/CodeConfirmation.d.ts +1 -1
- package/es/blocks/Misc/EmptyState.d.ts +5 -0
- package/es/blocks/Misc/NoPermission.d.ts +4 -0
- package/es/index.es.js +2 -2
- package/es/layout/HawaAppLayout.d.ts +1 -0
- package/es/layout/index.d.ts +0 -1
- package/lib/blocks/AuthForms/CodeConfirmation.d.ts +1 -1
- package/lib/blocks/Misc/EmptyState.d.ts +5 -0
- package/lib/blocks/Misc/NoPermission.d.ts +4 -0
- package/lib/index.js +2 -2
- package/lib/layout/HawaAppLayout.d.ts +1 -0
- package/lib/layout/index.d.ts +0 -1
- package/package.json +1 -1
- package/src/blocks/AuthForms/CodeConfirmation.tsx +1 -1
- package/src/blocks/Misc/EmptyState.tsx +16 -6
- package/src/blocks/Misc/LeadGenerator.tsx +1 -3
- package/src/blocks/Misc/Newsletter.tsx +1 -1
- package/src/blocks/Misc/NoPermission.tsx +13 -7
- package/src/blocks/Misc/NotFound.tsx +2 -2
- package/src/blocks/Misc/Testimonial.tsx +24 -30
- package/src/blocks/Payment/ChargeWalletForm.tsx +7 -6
- package/src/blocks/Payment/CheckoutForm.tsx +18 -18
- package/src/blocks/Payment/Confirmation.tsx +4 -4
- package/src/blocks/Referral/ReferralSettlement.tsx +8 -3
- package/src/elements/HawaTextField.tsx +1 -1
- package/src/layout/HawaAppLayout.tsx +86 -58
- package/src/layout/index.ts +0 -1
- package/src/styles.css +8 -3
- package/es/layout/SimpleGrid.d.ts +0 -10
- package/lib/layout/SimpleGrid.d.ts +0 -10
- package/src/layout/SimpleGrid.tsx +0 -41
package/dist/styles.css
CHANGED
|
@@ -730,6 +730,9 @@ video {
|
|
|
730
730
|
.mb-1 {
|
|
731
731
|
margin-bottom: 0.25rem;
|
|
732
732
|
}
|
|
733
|
+
.mb-10 {
|
|
734
|
+
margin-bottom: 2.5rem;
|
|
735
|
+
}
|
|
733
736
|
.mb-2 {
|
|
734
737
|
margin-bottom: 0.5rem;
|
|
735
738
|
}
|
|
@@ -742,9 +745,6 @@ video {
|
|
|
742
745
|
.mb-5 {
|
|
743
746
|
margin-bottom: 1.25rem;
|
|
744
747
|
}
|
|
745
|
-
.mb-8 {
|
|
746
|
-
margin-bottom: 2rem;
|
|
747
|
-
}
|
|
748
748
|
.ml-0 {
|
|
749
749
|
margin-left: 0px;
|
|
750
750
|
}
|
|
@@ -2246,6 +2246,11 @@ body {
|
|
|
2246
2246
|
background-color: rgb(229 231 235 / var(--tw-bg-opacity));
|
|
2247
2247
|
}
|
|
2248
2248
|
|
|
2249
|
+
.hover\:bg-gray-400:hover {
|
|
2250
|
+
--tw-bg-opacity: 1;
|
|
2251
|
+
background-color: rgb(156 163 175 / var(--tw-bg-opacity));
|
|
2252
|
+
}
|
|
2253
|
+
|
|
2249
2254
|
.hover\:bg-gray-50:hover {
|
|
2250
2255
|
--tw-bg-opacity: 1;
|
|
2251
2256
|
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { FC } from "react";
|
|
2
2
|
type TEmptyState = {
|
|
3
3
|
variant?: "outlined" | "contained" | "neobrutalism";
|
|
4
|
+
onActionClick: () => void;
|
|
5
|
+
texts: {
|
|
6
|
+
youreCaughtUp?: string;
|
|
7
|
+
actionText?: string;
|
|
8
|
+
};
|
|
4
9
|
};
|
|
5
10
|
export declare const EmptyState: FC<TEmptyState>;
|
|
6
11
|
export {};
|