@sikka/hawa 0.0.229 → 0.0.230

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 CHANGED
@@ -798,6 +798,9 @@ video {
798
798
  .mt-8 {
799
799
  margin-top: 2rem;
800
800
  }
801
+ .box-border {
802
+ box-sizing: border-box;
803
+ }
801
804
  .block {
802
805
  display: block;
803
806
  }
@@ -901,6 +904,10 @@ video {
901
904
  .h-full {
902
905
  height: 100%;
903
906
  }
907
+ .h-min {
908
+ height: -moz-min-content;
909
+ height: min-content;
910
+ }
904
911
  .h-screen {
905
912
  height: 100vh;
906
913
  }
@@ -996,6 +1003,10 @@ video {
996
1003
  .w-full {
997
1004
  width: 100%;
998
1005
  }
1006
+ .w-min {
1007
+ width: -moz-min-content;
1008
+ width: min-content;
1009
+ }
999
1010
  .min-w-\[24px\] {
1000
1011
  min-width: 24px;
1001
1012
  }
@@ -1687,6 +1698,10 @@ video {
1687
1698
  padding-top: 1.25rem;
1688
1699
  padding-bottom: 1.25rem;
1689
1700
  }
1701
+ .py-6 {
1702
+ padding-top: 1.5rem;
1703
+ padding-bottom: 1.5rem;
1704
+ }
1690
1705
  .pb-2 {
1691
1706
  padding-bottom: 0.5rem;
1692
1707
  }
@@ -2178,6 +2193,11 @@ body {
2178
2193
  color: rgb(156 163 175 / var(--tw-text-opacity));
2179
2194
  }
2180
2195
 
2196
+ .hover\:text-gray-500:hover {
2197
+ --tw-text-opacity: 1;
2198
+ color: rgb(107 114 128 / var(--tw-text-opacity));
2199
+ }
2200
+
2181
2201
  .hover\:text-gray-900:hover {
2182
2202
  --tw-text-opacity: 1;
2183
2203
  color: rgb(17 24 39 / var(--tw-text-opacity));
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+ type Item = {
3
+ label?: string;
4
+ icon?: JSX.Element;
5
+ };
6
+ type ComponentTypes = {
7
+ items: Item[];
8
+ index?: number;
9
+ arrowSize?: number;
10
+ labelSize?: "small" | "medium" | "big";
11
+ };
12
+ export declare const ArrowCarousel: React.FunctionComponent<ComponentTypes>;
13
+ export {};
@@ -31,6 +31,7 @@ export * from "./UsageCard";
31
31
  export * from "./InvoiceAccordion";
32
32
  export * from "./HawaDatepicker";
33
33
  export * from "./UserFeedback";
34
+ export * from "./ArrowCarousel";
34
35
  export * from "./HawaTextField";
35
36
  export * from "./HawaCardInput";
36
37
  export * from "./HawaPinInput";