@sikka/hawa 0.0.244 → 0.0.245

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
@@ -730,6 +730,9 @@ video {
730
730
  .mb-1 {
731
731
  margin-bottom: 0.25rem;
732
732
  }
733
+ .mb-10 {
734
+ margin-bottom: 2.5rem;
735
+ }
733
736
  .mb-2 {
734
737
  margin-bottom: 0.5rem;
735
738
  }
@@ -742,9 +745,6 @@ video {
742
745
  .mb-5 {
743
746
  margin-bottom: 1.25rem;
744
747
  }
745
- .mb-8 {
746
- margin-bottom: 2rem;
747
- }
748
748
  .ml-0 {
749
749
  margin-left: 0px;
750
750
  }
@@ -2246,6 +2246,11 @@ body {
2246
2246
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
2247
2247
  }
2248
2248
 
2249
+ .hover\:bg-gray-400:hover {
2250
+ --tw-bg-opacity: 1;
2251
+ background-color: rgb(156 163 175 / var(--tw-bg-opacity));
2252
+ }
2253
+
2249
2254
  .hover\:bg-gray-50:hover {
2250
2255
  --tw-bg-opacity: 1;
2251
2256
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
@@ -12,7 +12,7 @@ type TConfirmation = {
12
12
  codePlaceholder: string;
13
13
  codeRequiredText: string;
14
14
  confirm: string;
15
- cancel: any;
15
+ cancel: string;
16
16
  };
17
17
  phoneNumber?: string;
18
18
  submitConfirmation?: any;
@@ -1,6 +1,11 @@
1
1
  import { FC } from "react";
2
2
  type TEmptyState = {
3
3
  variant?: "outlined" | "contained" | "neobrutalism";
4
+ onActionClick: () => void;
5
+ texts: {
6
+ youreCaughtUp?: string;
7
+ actionText?: string;
8
+ };
4
9
  };
5
10
  export declare const EmptyState: FC<TEmptyState>;
6
11
  export {};
@@ -1,6 +1,10 @@
1
1
  import { FC } from "react";
2
2
  type TNoPermission = {
3
3
  variant?: "outlined" | "contained" | "neobrutalism";
4
+ texts?: {
5
+ title: string;
6
+ subtitle: string;
7
+ };
4
8
  };
5
9
  export declare const NoPermission: FC<TNoPermission>;
6
10
  export {};