@sikka/hawa 0.0.194 → 0.0.196

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
@@ -385,7 +385,7 @@ video {
385
385
  --button-secondary-500: #ffc011;
386
386
  --button-secondary-700: #b48d24;
387
387
 
388
- --border-radius: 0px;
388
+ --border-radius: 10px;
389
389
  }
390
390
  input[type="number"]::-webkit-inner-spin-button,
391
391
  input[type="number"]::-webkit-outer-spin-button {
@@ -1238,6 +1238,10 @@ video {
1238
1238
  border-top-left-radius: 0px;
1239
1239
  border-bottom-left-radius: 0px;
1240
1240
  }
1241
+ .rounded-b {
1242
+ border-bottom-right-radius: var(--border-radius);
1243
+ border-bottom-left-radius: var(--border-radius);
1244
+ }
1241
1245
  .rounded-r {
1242
1246
  border-top-right-radius: var(--border-radius);
1243
1247
  border-bottom-right-radius: var(--border-radius);
@@ -1264,9 +1268,15 @@ video {
1264
1268
  .rounded-br-lg {
1265
1269
  border-bottom-right-radius: 0.5rem;
1266
1270
  }
1271
+ .rounded-br {
1272
+ border-bottom-right-radius: var(--border-radius);
1273
+ }
1267
1274
  .rounded-br-none {
1268
1275
  border-bottom-right-radius: 0px;
1269
1276
  }
1277
+ .rounded-bl {
1278
+ border-bottom-left-radius: var(--border-radius);
1279
+ }
1270
1280
  .rounded-tl-none {
1271
1281
  border-top-left-radius: 0px;
1272
1282
  }
@@ -1,6 +1,5 @@
1
1
  import React from "react";
2
2
  type TableTypes = {
3
- lang?: any;
4
3
  columns: any[string];
5
4
  actions?: ActionItems[][];
6
5
  direction?: "rtl" | "ltr";
@@ -14,7 +13,7 @@ type TableTypes = {
14
13
  clickable?: boolean;
15
14
  actionsText?: string;
16
15
  bordersWidth?: string;
17
- borders?: ["all" | "cols" | "rows" | "outer"];
16
+ borders?: "all" | "cols" | "rows" | "outer" | "inner";
18
17
  };
19
18
  type ActionItems = {
20
19
  icon?: JSX.Element;