@sikka/hawa 0.0.229 → 0.0.231

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
@@ -660,6 +660,9 @@ video {
660
660
  .z-50 {
661
661
  z-index: 50;
662
662
  }
663
+ .order-none {
664
+ order: 0;
665
+ }
663
666
  .m-0 {
664
667
  margin: 0px;
665
668
  }
@@ -771,6 +774,9 @@ video {
771
774
  .mr-40 {
772
775
  margin-right: 10rem;
773
776
  }
777
+ .mr-\[5px\] {
778
+ margin-right: 5px;
779
+ }
774
780
  .mt-0 {
775
781
  margin-top: 0px;
776
782
  }
@@ -798,6 +804,9 @@ video {
798
804
  .mt-8 {
799
805
  margin-top: 2rem;
800
806
  }
807
+ .box-border {
808
+ box-sizing: border-box;
809
+ }
801
810
  .block {
802
811
  display: block;
803
812
  }
@@ -882,12 +891,18 @@ video {
882
891
  .h-96 {
883
892
  height: 24rem;
884
893
  }
894
+ .h-\[150px\] {
895
+ height: 150px;
896
+ }
885
897
  .h-\[1px\] {
886
898
  height: 1px;
887
899
  }
888
900
  .h-\[2\.36rem\] {
889
901
  height: 2.36rem;
890
902
  }
903
+ .h-\[32px\] {
904
+ height: 32px;
905
+ }
891
906
  .h-\[calc\(100\%-3\.5rem\)\] {
892
907
  height: calc(100% - 3.5rem);
893
908
  }
@@ -901,6 +916,10 @@ video {
901
916
  .h-full {
902
917
  height: 100%;
903
918
  }
919
+ .h-min {
920
+ height: -moz-min-content;
921
+ height: min-content;
922
+ }
904
923
  .h-screen {
905
924
  height: 100vh;
906
925
  }
@@ -983,6 +1002,12 @@ video {
983
1002
  .w-8 {
984
1003
  width: 2rem;
985
1004
  }
1005
+ .w-\[32px\] {
1006
+ width: 32px;
1007
+ }
1008
+ .w-\[400px\] {
1009
+ width: 400px;
1010
+ }
986
1011
  .w-\[calc\(1\%\)\] {
987
1012
  width: calc(1%);
988
1013
  }
@@ -996,6 +1021,10 @@ video {
996
1021
  .w-full {
997
1022
  width: 100%;
998
1023
  }
1024
+ .w-min {
1025
+ width: -moz-min-content;
1026
+ width: min-content;
1027
+ }
999
1028
  .min-w-\[24px\] {
1000
1029
  min-width: 24px;
1001
1030
  }
@@ -1093,6 +1122,9 @@ video {
1093
1122
  .cursor-pointer {
1094
1123
  cursor: pointer;
1095
1124
  }
1125
+ .resize-none {
1126
+ resize: none;
1127
+ }
1096
1128
  .resize {
1097
1129
  resize: both;
1098
1130
  }
@@ -1481,6 +1513,10 @@ video {
1481
1513
  .bg-buttonPrimary-500 {
1482
1514
  background-color: var(--button-primary-500);
1483
1515
  }
1516
+ .bg-cyan-800 {
1517
+ --tw-bg-opacity: 1;
1518
+ background-color: rgb(21 94 117 / var(--tw-bg-opacity));
1519
+ }
1484
1520
  .bg-gray-100 {
1485
1521
  --tw-bg-opacity: 1;
1486
1522
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
@@ -1493,6 +1529,10 @@ video {
1493
1529
  --tw-bg-opacity: 1;
1494
1530
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
1495
1531
  }
1532
+ .bg-gray-400 {
1533
+ --tw-bg-opacity: 1;
1534
+ background-color: rgb(156 163 175 / var(--tw-bg-opacity));
1535
+ }
1496
1536
  .bg-gray-50 {
1497
1537
  --tw-bg-opacity: 1;
1498
1538
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
@@ -1555,6 +1595,10 @@ video {
1555
1595
  --tw-bg-opacity: 1;
1556
1596
  background-color: rgb(185 28 28 / var(--tw-bg-opacity));
1557
1597
  }
1598
+ .bg-slate-600 {
1599
+ --tw-bg-opacity: 1;
1600
+ background-color: rgb(71 85 105 / var(--tw-bg-opacity));
1601
+ }
1558
1602
  .bg-transparent {
1559
1603
  background-color: transparent;
1560
1604
  }
@@ -1687,6 +1731,10 @@ video {
1687
1731
  padding-top: 1.25rem;
1688
1732
  padding-bottom: 1.25rem;
1689
1733
  }
1734
+ .py-6 {
1735
+ padding-top: 1.5rem;
1736
+ padding-bottom: 1.5rem;
1737
+ }
1690
1738
  .pb-2 {
1691
1739
  padding-bottom: 0.5rem;
1692
1740
  }
@@ -1797,6 +1845,9 @@ video {
1797
1845
  .capitalize {
1798
1846
  text-transform: capitalize;
1799
1847
  }
1848
+ .italic {
1849
+ font-style: italic;
1850
+ }
1800
1851
  .leading-4 {
1801
1852
  line-height: 1rem;
1802
1853
  }
@@ -1885,6 +1936,10 @@ video {
1885
1936
  -webkit-text-decoration-line: underline;
1886
1937
  text-decoration-line: underline;
1887
1938
  }
1939
+ .line-through {
1940
+ -webkit-text-decoration-line: line-through;
1941
+ text-decoration-line: line-through;
1942
+ }
1888
1943
  .underline-offset-4 {
1889
1944
  text-underline-offset: 4px;
1890
1945
  }
@@ -1930,6 +1985,10 @@ video {
1930
1985
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
1931
1986
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
1932
1987
  }
1988
+ .outline-none {
1989
+ outline: 2px solid transparent;
1990
+ outline-offset: 2px;
1991
+ }
1933
1992
  .outline {
1934
1993
  outline-style: solid;
1935
1994
  }
@@ -2178,6 +2237,11 @@ body {
2178
2237
  color: rgb(156 163 175 / var(--tw-text-opacity));
2179
2238
  }
2180
2239
 
2240
+ .hover\:text-gray-500:hover {
2241
+ --tw-text-opacity: 1;
2242
+ color: rgb(107 114 128 / var(--tw-text-opacity));
2243
+ }
2244
+
2181
2245
  .hover\:text-gray-900:hover {
2182
2246
  --tw-text-opacity: 1;
2183
2247
  color: rgb(17 24 39 / var(--tw-text-opacity));
@@ -2592,4 +2656,4 @@ body {
2592
2656
  margin-left: 2.5rem;
2593
2657
  margin-right: 2.5rem;
2594
2658
  }
2595
- }
2659
+ }
@@ -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 {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ type ComponentTypes = {
3
+ foo?: string;
4
+ };
5
+ export declare const FloatingComment: React.FunctionComponent<ComponentTypes>;
6
+ export {};
@@ -0,0 +1,6 @@
1
+ import React from "react";
2
+ type ComponentTypes = {
3
+ foo?: string;
4
+ };
5
+ export declare const FloatingComment: React.FunctionComponent<ComponentTypes>;
6
+ export {};
@@ -31,6 +31,8 @@ export * from "./UsageCard";
31
31
  export * from "./InvoiceAccordion";
32
32
  export * from "./HawaDatepicker";
33
33
  export * from "./UserFeedback";
34
+ export * from "./ArrowCarousel";
35
+ export * from "./FloatingComment";
34
36
  export * from "./HawaTextField";
35
37
  export * from "./HawaCardInput";
36
38
  export * from "./HawaPinInput";