@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.
Files changed (32) hide show
  1. package/dist/styles.css +18 -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 +35 -25
  22. package/src/layout/HawaSiteLayout.tsx +16 -21
  23. package/src/styles.css +18 -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.b801e3dc.iframe.bundle.js +0 -1
package/src/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
  }