@sikka/hawa 0.0.195 → 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
@@ -1268,11 +1268,14 @@ video {
1268
1268
  .rounded-br-lg {
1269
1269
  border-bottom-right-radius: 0.5rem;
1270
1270
  }
1271
+ .rounded-br {
1272
+ border-bottom-right-radius: var(--border-radius);
1273
+ }
1271
1274
  .rounded-br-none {
1272
1275
  border-bottom-right-radius: 0px;
1273
1276
  }
1274
- .rounded-br {
1275
- border-bottom-right-radius: var(--border-radius);
1277
+ .rounded-bl {
1278
+ border-bottom-left-radius: var(--border-radius);
1276
1279
  }
1277
1280
  .rounded-tl-none {
1278
1281
  border-top-left-radius: 0px;
@@ -1840,19 +1843,10 @@ video {
1840
1843
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1841
1844
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1842
1845
  }
1843
- .ring-\[10px\] {
1844
- --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
1845
- --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(10px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1846
- box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1847
- }
1848
1846
  .ring-blue-200 {
1849
1847
  --tw-ring-opacity: 1;
1850
1848
  --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity));
1851
1849
  }
1852
- .ring-blue-300 {
1853
- --tw-ring-opacity: 1;
1854
- --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity));
1855
- }
1856
1850
  .ring-buttonPrimary-500 {
1857
1851
  --tw-ring-color: var(--button-primary-500);
1858
1852
  }
@@ -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";