@sikka/hawa 0.0.169 → 0.0.171

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.
@@ -0,0 +1,3 @@
1
+ {
2
+ "todo-tree.tree.showBadges": true
3
+ }
package/dist/styles.css CHANGED
@@ -620,9 +620,6 @@ video {
620
620
  .left-8 {
621
621
  left: 2rem;
622
622
  }
623
- .top-3 {
624
- top: 0.75rem;
625
- }
626
623
  .left-14 {
627
624
  left: 3.5rem;
628
625
  }
@@ -880,6 +877,9 @@ video {
880
877
  .h-4 {
881
878
  height: 1rem;
882
879
  }
880
+ .h-24 {
881
+ height: 6rem;
882
+ }
883
883
  .h-32 {
884
884
  height: 8rem;
885
885
  }
@@ -1204,9 +1204,6 @@ video {
1204
1204
  .overflow-y-clip {
1205
1205
  overflow-y: clip;
1206
1206
  }
1207
- .overflow-x-visible {
1208
- overflow-x: visible;
1209
- }
1210
1207
  .truncate {
1211
1208
  overflow: hidden;
1212
1209
  text-overflow: ellipsis;
@@ -3,3 +3,4 @@ export * from "./AuthForms";
3
3
  export * from "./Payment";
4
4
  export * from "./Pricing";
5
5
  export * from "./Referral";
6
+ export * from "./Misc";
@@ -1,4 +1,6 @@
1
1
  import React from "react";
2
- type SpinnerTypes = {};
2
+ type SpinnerTypes = {
3
+ size?: "button" | "sm" | "normal" | "lg" | "xl";
4
+ };
3
5
  export declare const HawaSpinner: React.FunctionComponent<SpinnerTypes>;
4
6
  export {};
@@ -11,6 +11,7 @@ type TableTypes = {
11
11
  handleActionClick?: any;
12
12
  end?: any;
13
13
  size?: "normal" | "small";
14
+ highlightFirst?: boolean;
14
15
  customColor?: string;
15
16
  };
16
17
  export declare const HawaTable: React.FunctionComponent<TableTypes>;