@sikka/hawa 0.0.179 → 0.0.180

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
@@ -704,10 +704,6 @@ video {
704
704
  margin-left: 0.25rem;
705
705
  margin-right: 0.25rem;
706
706
  }
707
- .my-1 {
708
- margin-top: 0.25rem;
709
- margin-bottom: 0.25rem;
710
- }
711
707
  .my-7 {
712
708
  margin-top: 1.75rem;
713
709
  margin-bottom: 1.75rem;
@@ -1271,9 +1267,13 @@ video {
1271
1267
  border-top-left-radius: 0px;
1272
1268
  border-bottom-left-radius: 0px;
1273
1269
  }
1274
- .rounded-r-lg {
1275
- border-top-right-radius: 0.5rem;
1276
- border-bottom-right-radius: 0.5rem;
1270
+ .rounded-r {
1271
+ border-top-right-radius: var(--border-radius);
1272
+ border-bottom-right-radius: var(--border-radius);
1273
+ }
1274
+ .rounded-l {
1275
+ border-top-left-radius: var(--border-radius);
1276
+ border-bottom-left-radius: var(--border-radius);
1277
1277
  }
1278
1278
  .rounded-tr-none {
1279
1279
  border-top-right-radius: 0px;
@@ -13,6 +13,7 @@ type TableTypes = {
13
13
  size?: "normal" | "small";
14
14
  highlightFirst?: boolean;
15
15
  customColor?: string;
16
+ clickable?: boolean;
16
17
  };
17
18
  export declare const HawaTable: React.FunctionComponent<TableTypes>;
18
19
  export {};
@@ -6,6 +6,7 @@ type TabsTypes = {
6
6
  contents?: any;
7
7
  orientation?: "horizontal" | "vertical";
8
8
  direction?: "rtl" | "ltr";
9
+ marginBetween?: any;
9
10
  };
10
11
  export declare const HawaTabs: React.FunctionComponent<TabsTypes>;
11
12
  export {};