@sikka/hawa 0.0.248 → 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
@@ -639,9 +639,6 @@ video {
639
639
  .right-4 {
640
640
  right: 1rem;
641
641
  }
642
- .right-8 {
643
- right: 2rem;
644
- }
645
642
  .top-0 {
646
643
  top: 0px;
647
644
  }
@@ -1124,6 +1121,10 @@ video {
1124
1121
  --tw-translate-y: -50%;
1125
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));
1126
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
+ }
1127
1128
  .translate-y-1\/2 {
1128
1129
  --tw-translate-y: 50%;
1129
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));
@@ -1768,6 +1769,10 @@ video {
1768
1769
  padding-top: 0.75rem;
1769
1770
  padding-bottom: 0.75rem;
1770
1771
  }
1772
+ .py-4 {
1773
+ padding-top: 1rem;
1774
+ padding-bottom: 1rem;
1775
+ }
1771
1776
  .py-5 {
1772
1777
  padding-top: 1.25rem;
1773
1778
  padding-bottom: 1.25rem;
@@ -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>;