@sikka/hawa 0.0.135 → 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.
Files changed (32) hide show
  1. package/dist/styles.css +6 -13
  2. package/es/elements/HawaSnackbar.d.ts +2 -0
  3. package/es/elements/index.d.ts +1 -2
  4. package/es/hooks/useBreakpoint.d.ts +2 -0
  5. package/es/index.es.js +1 -1
  6. package/lib/elements/HawaSnackbar.d.ts +2 -0
  7. package/lib/elements/index.d.ts +1 -2
  8. package/lib/hooks/useBreakpoint.d.ts +2 -0
  9. package/lib/index.js +1 -1
  10. package/package.json +1 -1
  11. package/src/blocks/Pricing/ComparingPlans.tsx +4 -4
  12. package/src/elements/DragDropImages.tsx +3 -3
  13. package/src/elements/HawaAccordian.tsx +5 -3
  14. package/src/elements/HawaDrawer.tsx +48 -8
  15. package/src/elements/HawaModal.tsx +2 -2
  16. package/src/elements/HawaPricingCard.tsx +2 -22
  17. package/src/elements/HawaSnackbar.tsx +76 -41
  18. package/src/elements/index.ts +1 -2
  19. package/src/hooks/useBreakpoint.ts +20 -0
  20. package/src/hooks/useDiscloser.ts +5 -9
  21. package/src/layout/HawaAppLayout.tsx +3 -3
  22. package/src/layout/HawaSiteLayout.tsx +16 -21
  23. package/src/styles.css +6 -13
  24. package/storybook-static/{669.d0879212.iframe.bundle.js → 103.d48f1210.iframe.bundle.js} +2 -2
  25. package/storybook-static/{669.d0879212.iframe.bundle.js.LICENSE.txt → 103.d48f1210.iframe.bundle.js.LICENSE.txt} +0 -0
  26. package/storybook-static/iframe.html +1 -1
  27. package/storybook-static/main.237a650d.iframe.bundle.js +1 -0
  28. package/storybook-static/project.json +1 -1
  29. package/es/elements/HawaDrawerItem.d.ts +0 -8
  30. package/lib/elements/HawaDrawerItem.d.ts +0 -8
  31. package/src/elements/HawaDrawerItem.tsx +0 -33
  32. package/storybook-static/main.2d33731c.iframe.bundle.js +0 -1
package/dist/styles.css CHANGED
@@ -817,6 +817,9 @@ video {
817
817
  .w-60 {
818
818
  width: 15rem;
819
819
  }
820
+ .w-0 {
821
+ width: 0px;
822
+ }
820
823
  .w-7 {
821
824
  width: 1.75rem;
822
825
  }
@@ -941,6 +944,9 @@ video {
941
944
  .cursor-pointer {
942
945
  cursor: pointer;
943
946
  }
947
+ .resize {
948
+ resize: both;
949
+ }
944
950
  .appearance-none {
945
951
  -webkit-appearance: none;
946
952
  -moz-appearance: none;
@@ -1023,11 +1029,6 @@ video {
1023
1029
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
1024
1030
  margin-bottom: calc(0px * var(--tw-space-y-reverse));
1025
1031
  }
1026
- .space-x-3 > :not([hidden]) ~ :not([hidden]) {
1027
- --tw-space-x-reverse: 0;
1028
- margin-right: calc(0.75rem * var(--tw-space-x-reverse));
1029
- margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
1030
- }
1031
1032
  .space-y-2 > :not([hidden]) ~ :not([hidden]) {
1032
1033
  --tw-space-y-reverse: 0;
1033
1034
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
@@ -1669,14 +1670,6 @@ video {
1669
1670
  --tw-text-opacity: 1;
1670
1671
  color: rgb(239 68 68 / var(--tw-text-opacity));
1671
1672
  }
1672
- .line-through {
1673
- -webkit-text-decoration-line: line-through;
1674
- text-decoration-line: line-through;
1675
- }
1676
- .decoration-gray-500 {
1677
- -webkit-text-decoration-color: #6b7280;
1678
- text-decoration-color: #6b7280;
1679
- }
1680
1673
  .opacity-100 {
1681
1674
  opacity: 1;
1682
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
  {
@@ -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";
@@ -0,0 +1,2 @@
1
+ declare const useBreakpoint: () => number;
2
+ export default useBreakpoint;