@sikka/hawa 0.0.193 → 0.0.195

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);
@@ -1267,6 +1271,9 @@ video {
1267
1271
  .rounded-br-none {
1268
1272
  border-bottom-right-radius: 0px;
1269
1273
  }
1274
+ .rounded-br {
1275
+ border-bottom-right-radius: var(--border-radius);
1276
+ }
1270
1277
  .rounded-tl-none {
1271
1278
  border-top-left-radius: 0px;
1272
1279
  }
@@ -1650,6 +1657,9 @@ video {
1650
1657
  font-size: 1.5rem;
1651
1658
  line-height: 2rem;
1652
1659
  }
1660
+ .text-\[11px\] {
1661
+ font-size: 11px;
1662
+ }
1653
1663
  .text-xl {
1654
1664
  font-size: 1.25rem;
1655
1665
  line-height: 1.75rem;
@@ -1830,10 +1840,19 @@ video {
1830
1840
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
1831
1841
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
1832
1842
  }
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
+ }
1833
1848
  .ring-blue-200 {
1834
1849
  --tw-ring-opacity: 1;
1835
1850
  --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity));
1836
1851
  }
1852
+ .ring-blue-300 {
1853
+ --tw-ring-opacity: 1;
1854
+ --tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity));
1855
+ }
1837
1856
  .ring-buttonPrimary-500 {
1838
1857
  --tw-ring-color: var(--button-primary-500);
1839
1858
  }
@@ -14,7 +14,7 @@ type TableTypes = {
14
14
  clickable?: boolean;
15
15
  actionsText?: string;
16
16
  bordersWidth?: string;
17
- borders?: ["all" | "cols" | "rows" | "outer"];
17
+ borders?: "all" | "cols" | "rows" | "outer" | "inner";
18
18
  };
19
19
  type ActionItems = {
20
20
  icon?: JSX.Element;