@sikka/hawa 0.0.262 → 0.0.264

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
@@ -1054,18 +1054,12 @@ video {
1054
1054
  .w-\[12px\] {
1055
1055
  width: 12px;
1056
1056
  }
1057
- .w-\[160px\] {
1058
- width: 160px;
1059
- }
1060
1057
  .w-\[32px\] {
1061
1058
  width: 32px;
1062
1059
  }
1063
1060
  .w-\[400px\] {
1064
1061
  width: 400px;
1065
1062
  }
1066
- .w-\[56px\] {
1067
- width: 56px;
1068
- }
1069
1063
  .w-\[calc\(1\%\)\] {
1070
1064
  width: calc(1%);
1071
1065
  }
@@ -1174,6 +1168,9 @@ video {
1174
1168
  .transform {
1175
1169
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1176
1170
  }
1171
+ .transform-gpu {
1172
+ transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
1173
+ }
1177
1174
  @keyframes spin {
1178
1175
 
1179
1176
  to {
@@ -1690,10 +1687,6 @@ video {
1690
1687
  --tw-bg-opacity: 1;
1691
1688
  background-color: rgb(71 85 105 / var(--tw-bg-opacity));
1692
1689
  }
1693
- .bg-stone-600 {
1694
- --tw-bg-opacity: 1;
1695
- background-color: rgb(87 83 78 / var(--tw-bg-opacity));
1696
- }
1697
1690
  .bg-transparent {
1698
1691
  background-color: transparent;
1699
1692
  }
@@ -1713,10 +1706,6 @@ video {
1713
1706
  --tw-bg-opacity: 1;
1714
1707
  background-color: rgb(250 204 21 / var(--tw-bg-opacity));
1715
1708
  }
1716
- .bg-yellow-500 {
1717
- --tw-bg-opacity: 1;
1718
- background-color: rgb(234 179 8 / var(--tw-bg-opacity));
1719
- }
1720
1709
  .bg-opacity-75 {
1721
1710
  --tw-bg-opacity: 0.75;
1722
1711
  }
@@ -1726,6 +1715,12 @@ video {
1726
1715
  .bg-none {
1727
1716
  background-image: none;
1728
1717
  }
1718
+ .fill-buttonPrimary-500 {
1719
+ fill: var(--button-primary-500);
1720
+ }
1721
+ .fill-gray-200 {
1722
+ fill: #e5e7eb;
1723
+ }
1729
1724
  .object-cover {
1730
1725
  -o-object-fit: cover;
1731
1726
  object-fit: cover;
@@ -2,6 +2,7 @@ import { FC } from "react";
2
2
  type CodeBlockTypes = {
3
3
  color?: "dark" | "light";
4
4
  language?: string;
5
+ width?: "full" | "md" | "sm";
5
6
  tabs?: TabsTypes[];
6
7
  code?: string;
7
8
  };