@sikka/hawa 0.0.134 → 0.0.136
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 +18 -13
- package/es/elements/HawaSnackbar.d.ts +2 -0
- package/es/elements/index.d.ts +1 -2
- package/es/hooks/useBreakpoint.d.ts +2 -0
- package/es/index.es.js +1 -1
- package/lib/elements/HawaSnackbar.d.ts +2 -0
- package/lib/elements/index.d.ts +1 -2
- package/lib/hooks/useBreakpoint.d.ts +2 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/blocks/Pricing/ComparingPlans.tsx +4 -4
- package/src/elements/DragDropImages.tsx +3 -3
- package/src/elements/HawaAccordian.tsx +5 -3
- package/src/elements/HawaDrawer.tsx +48 -8
- package/src/elements/HawaModal.tsx +2 -2
- package/src/elements/HawaPricingCard.tsx +2 -22
- package/src/elements/HawaSnackbar.tsx +76 -41
- package/src/elements/index.ts +1 -2
- package/src/hooks/useBreakpoint.ts +20 -0
- package/src/hooks/useDiscloser.ts +5 -9
- package/src/layout/HawaAppLayout.tsx +35 -25
- package/src/layout/HawaSiteLayout.tsx +16 -21
- package/src/styles.css +18 -13
- package/storybook-static/{669.d0879212.iframe.bundle.js → 103.d48f1210.iframe.bundle.js} +2 -2
- package/storybook-static/{669.d0879212.iframe.bundle.js.LICENSE.txt → 103.d48f1210.iframe.bundle.js.LICENSE.txt} +0 -0
- package/storybook-static/iframe.html +1 -1
- package/storybook-static/main.237a650d.iframe.bundle.js +1 -0
- package/storybook-static/project.json +1 -1
- package/es/elements/HawaDrawerItem.d.ts +0 -8
- package/lib/elements/HawaDrawerItem.d.ts +0 -8
- package/src/elements/HawaDrawerItem.tsx +0 -33
- package/storybook-static/main.b801e3dc.iframe.bundle.js +0 -1
package/dist/styles.css
CHANGED
|
@@ -767,6 +767,9 @@ video {
|
|
|
767
767
|
.h-0\.5 {
|
|
768
768
|
height: 0.125rem;
|
|
769
769
|
}
|
|
770
|
+
.h-\[1px\] {
|
|
771
|
+
height: 1px;
|
|
772
|
+
}
|
|
770
773
|
.h-9 {
|
|
771
774
|
height: 2.25rem;
|
|
772
775
|
}
|
|
@@ -814,6 +817,9 @@ video {
|
|
|
814
817
|
.w-60 {
|
|
815
818
|
width: 15rem;
|
|
816
819
|
}
|
|
820
|
+
.w-0 {
|
|
821
|
+
width: 0px;
|
|
822
|
+
}
|
|
817
823
|
.w-7 {
|
|
818
824
|
width: 1.75rem;
|
|
819
825
|
}
|
|
@@ -844,6 +850,9 @@ video {
|
|
|
844
850
|
.w-12 {
|
|
845
851
|
width: 3rem;
|
|
846
852
|
}
|
|
853
|
+
.w-10\/12 {
|
|
854
|
+
width: 83.333333%;
|
|
855
|
+
}
|
|
847
856
|
.w-\[calc\(100\%-1rem\)\] {
|
|
848
857
|
width: calc(100% - 1rem);
|
|
849
858
|
}
|
|
@@ -935,6 +944,9 @@ video {
|
|
|
935
944
|
.cursor-pointer {
|
|
936
945
|
cursor: pointer;
|
|
937
946
|
}
|
|
947
|
+
.resize {
|
|
948
|
+
resize: both;
|
|
949
|
+
}
|
|
938
950
|
.appearance-none {
|
|
939
951
|
-webkit-appearance: none;
|
|
940
952
|
-moz-appearance: none;
|
|
@@ -1017,11 +1029,6 @@ video {
|
|
|
1017
1029
|
margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
|
|
1018
1030
|
margin-bottom: calc(0px * var(--tw-space-y-reverse));
|
|
1019
1031
|
}
|
|
1020
|
-
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
|
|
1021
|
-
--tw-space-x-reverse: 0;
|
|
1022
|
-
margin-right: calc(0.75rem * var(--tw-space-x-reverse));
|
|
1023
|
-
margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1024
|
-
}
|
|
1025
1032
|
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
|
|
1026
1033
|
--tw-space-y-reverse: 0;
|
|
1027
1034
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1040,9 +1047,15 @@ video {
|
|
|
1040
1047
|
--tw-divide-opacity: 1;
|
|
1041
1048
|
border-color: rgb(17 24 39 / var(--tw-divide-opacity));
|
|
1042
1049
|
}
|
|
1050
|
+
.self-center {
|
|
1051
|
+
align-self: center;
|
|
1052
|
+
}
|
|
1043
1053
|
.justify-self-end {
|
|
1044
1054
|
justify-self: end;
|
|
1045
1055
|
}
|
|
1056
|
+
.overflow-auto {
|
|
1057
|
+
overflow: auto;
|
|
1058
|
+
}
|
|
1046
1059
|
.overflow-hidden {
|
|
1047
1060
|
overflow: hidden;
|
|
1048
1061
|
}
|
|
@@ -1657,14 +1670,6 @@ video {
|
|
|
1657
1670
|
--tw-text-opacity: 1;
|
|
1658
1671
|
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
1659
1672
|
}
|
|
1660
|
-
.line-through {
|
|
1661
|
-
-webkit-text-decoration-line: line-through;
|
|
1662
|
-
text-decoration-line: line-through;
|
|
1663
|
-
}
|
|
1664
|
-
.decoration-gray-500 {
|
|
1665
|
-
-webkit-text-decoration-color: #6b7280;
|
|
1666
|
-
text-decoration-color: #6b7280;
|
|
1667
|
-
}
|
|
1668
1673
|
.opacity-100 {
|
|
1669
1674
|
opacity: 1;
|
|
1670
1675
|
}
|
|
@@ -3,6 +3,8 @@ type THawaSnackBar = {
|
|
|
3
3
|
severity: "info" | "warning" | "error" | "success" | "none";
|
|
4
4
|
title: string;
|
|
5
5
|
description: string;
|
|
6
|
+
handleClose?: () => void;
|
|
7
|
+
duration?: number;
|
|
6
8
|
position?: "top-left" | "top-center" | "top-right" | "bottom-right" | "bottom-center" | "bottom-left";
|
|
7
9
|
actions?: [
|
|
8
10
|
{
|
package/es/elements/index.d.ts
CHANGED
|
@@ -15,18 +15,17 @@ export * from "./HawaAccordian";
|
|
|
15
15
|
export * from "./DragDropImages";
|
|
16
16
|
export * from "./DraggableCard";
|
|
17
17
|
export * from "./HawaPhoneInput";
|
|
18
|
-
export * from "./HawaDrawerItem";
|
|
19
18
|
export * from "./HawaTooltip";
|
|
20
19
|
export * from "./HawaTabs";
|
|
21
20
|
export * from "./HawaModal";
|
|
22
21
|
export * from "./HawaMenu";
|
|
23
|
-
export * from "./HawaDrawer";
|
|
24
22
|
export * from "./HawaCopyrights";
|
|
25
23
|
export * from "./HawaTimeline";
|
|
26
24
|
export * from "./Breadcrumb";
|
|
27
25
|
export * from "./HawaStats";
|
|
28
26
|
export * from "./HawaSpinner";
|
|
29
27
|
export * from "./HawaRadio";
|
|
28
|
+
export * from "./HawaDrawer";
|
|
30
29
|
export * from "./HawaTextField";
|
|
31
30
|
export * from "./HawaCardInput";
|
|
32
31
|
export * from "./HawaPinInput";
|