@sikka/hawa 0.0.169 → 0.0.170

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
@@ -880,6 +880,9 @@ video {
880
880
  .h-4 {
881
881
  height: 1rem;
882
882
  }
883
+ .h-24 {
884
+ height: 6rem;
885
+ }
883
886
  .h-32 {
884
887
  height: 8rem;
885
888
  }
@@ -1204,9 +1207,6 @@ video {
1204
1207
  .overflow-y-clip {
1205
1208
  overflow-y: clip;
1206
1209
  }
1207
- .overflow-x-visible {
1208
- overflow-x: visible;
1209
- }
1210
1210
  .truncate {
1211
1211
  overflow: hidden;
1212
1212
  text-overflow: ellipsis;
@@ -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>;