@sikka/hawa 0.0.247 → 0.0.249

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
@@ -624,6 +624,9 @@ video {
624
624
  .left-3 {
625
625
  left: 0.75rem;
626
626
  }
627
+ .left-4 {
628
+ left: 1rem;
629
+ }
627
630
  .right-0 {
628
631
  right: 0px;
629
632
  }
@@ -636,9 +639,6 @@ video {
636
639
  .right-4 {
637
640
  right: 1rem;
638
641
  }
639
- .right-8 {
640
- right: 2rem;
641
- }
642
642
  .top-0 {
643
643
  top: 0px;
644
644
  }
@@ -1062,6 +1062,9 @@ video {
1062
1062
  .min-w-\[24px\] {
1063
1063
  min-width: 24px;
1064
1064
  }
1065
+ .min-w-\[32px\] {
1066
+ min-width: 32px;
1067
+ }
1065
1068
  .min-w-fit {
1066
1069
  min-width: -moz-fit-content;
1067
1070
  min-width: fit-content;
@@ -1118,6 +1121,10 @@ video {
1118
1121
  --tw-translate-y: -50%;
1119
1122
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1120
1123
  }
1124
+ .translate-y-1 {
1125
+ --tw-translate-y: 0.25rem;
1126
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1127
+ }
1121
1128
  .translate-y-1\/2 {
1122
1129
  --tw-translate-y: 50%;
1123
1130
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
@@ -1659,6 +1666,9 @@ video {
1659
1666
  .bg-opacity-75 {
1660
1667
  --tw-bg-opacity: 0.75;
1661
1668
  }
1669
+ .bg-opacity-80 {
1670
+ --tw-bg-opacity: 0.8;
1671
+ }
1662
1672
  .bg-none {
1663
1673
  background-image: none;
1664
1674
  }
@@ -1759,6 +1769,10 @@ video {
1759
1769
  padding-top: 0.75rem;
1760
1770
  padding-bottom: 0.75rem;
1761
1771
  }
1772
+ .py-4 {
1773
+ padding-top: 1rem;
1774
+ padding-bottom: 1rem;
1775
+ }
1762
1776
  .py-5 {
1763
1777
  padding-top: 1.25rem;
1764
1778
  padding-bottom: 1.25rem;
@@ -1962,6 +1976,10 @@ video {
1962
1976
  --tw-text-opacity: 1;
1963
1977
  color: rgb(185 28 28 / var(--tw-text-opacity));
1964
1978
  }
1979
+ .text-red-900 {
1980
+ --tw-text-opacity: 1;
1981
+ color: rgb(127 29 29 / var(--tw-text-opacity));
1982
+ }
1965
1983
  .text-white {
1966
1984
  --tw-text-opacity: 1;
1967
1985
  color: rgb(255 255 255 / var(--tw-text-opacity));
@@ -2310,6 +2328,10 @@ body {
2310
2328
  text-decoration-thickness: 2px;
2311
2329
  }
2312
2330
 
2331
+ .hover\:opacity-50:hover {
2332
+ opacity: 0.5;
2333
+ }
2334
+
2313
2335
  .hover\:shadow-lg:hover {
2314
2336
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
2315
2337
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
@@ -15,10 +15,11 @@ type DragDropImagesTypes = {
15
15
  errorMessages: string;
16
16
  /** The translation object, use this to replace the default text with any translated text you want.*/
17
17
  texts: {
18
- clickHereToUpload: string;
19
- maxFileSize: string;
20
- tooManyFiles: string;
21
- fileTooLarge: string;
18
+ errorUploading: any;
19
+ clickHereToUpload: any;
20
+ maxFileSize: any;
21
+ tooManyFiles: any;
22
+ fileTooLarge: any;
22
23
  };
23
24
  };
24
25
  export declare const DragDropImages: React.FunctionComponent<DragDropImagesTypes>;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ type ComponentTypes = {};
3
+ export declare const FloatingCommentExec: React.FC<ComponentTypes>;
4
+ export {};
@@ -7,6 +7,7 @@ type ComponentTypes = {
7
7
  least: string;
8
8
  most: string;
9
9
  };
10
+ position?: "bottom-right" | "bottom-left";
10
11
  onOptionClicked?: (option: any) => void;
11
12
  };
12
13
  export declare const UserFeedback: FC<ComponentTypes>;
@@ -35,6 +35,7 @@ export * from "./UserFeedback";
35
35
  export * from "./ArrowCarousel";
36
36
  export * from "./FloatingComment";
37
37
  export * from "./FloatingCommentSlate";
38
+ export * from "./FloatingCommentExec";
38
39
  export * from "./BackToTop";
39
40
  export * from "./HawaTextField";
40
41
  export * from "./HawaCardInput";