@sikka/hawa 0.0.221 → 0.0.222
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 +12 -3
- package/es/elements/HawaSelect.d.ts +1 -1
- package/es/elements/HawaStats.d.ts +1 -0
- package/es/elements/HawaTable.d.ts +1 -0
- package/es/index.es.js +1 -1
- package/lib/elements/HawaSelect.d.ts +1 -1
- package/lib/elements/HawaStats.d.ts +1 -0
- package/lib/elements/HawaTable.d.ts +1 -0
- package/lib/index.js +1 -1
- package/package.json +3 -2
- package/rollup.config.js +1 -1
- package/src/blocks/Payment/CheckoutForm.tsx +0 -1
- package/src/elements/HawaSelect.tsx +1 -1
- package/src/elements/HawaStats.tsx +12 -3
- package/src/elements/HawaTable.tsx +30 -19
- package/src/styles.css +12 -3
package/dist/styles.css
CHANGED
|
@@ -989,6 +989,9 @@ video {
|
|
|
989
989
|
.max-w-2xs {
|
|
990
990
|
max-width: 250px;
|
|
991
991
|
}
|
|
992
|
+
.max-w-\[200px\] {
|
|
993
|
+
max-width: 200px;
|
|
994
|
+
}
|
|
992
995
|
.max-w-fit {
|
|
993
996
|
max-width: -moz-fit-content;
|
|
994
997
|
max-width: fit-content;
|
|
@@ -1077,9 +1080,6 @@ video {
|
|
|
1077
1080
|
.grid-cols-2 {
|
|
1078
1081
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1079
1082
|
}
|
|
1080
|
-
.grid-cols-3 {
|
|
1081
|
-
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1082
|
-
}
|
|
1083
1083
|
.grid-cols-4 {
|
|
1084
1084
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1085
1085
|
}
|
|
@@ -1889,12 +1889,18 @@ video {
|
|
|
1889
1889
|
--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
|
|
1890
1890
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
1891
1891
|
}
|
|
1892
|
+
.outline {
|
|
1893
|
+
outline-style: solid;
|
|
1894
|
+
}
|
|
1892
1895
|
.outline-1 {
|
|
1893
1896
|
outline-width: 1px;
|
|
1894
1897
|
}
|
|
1895
1898
|
.outline-black {
|
|
1896
1899
|
outline-color: #000;
|
|
1897
1900
|
}
|
|
1901
|
+
.outline-gray-300 {
|
|
1902
|
+
outline-color: #d1d5db;
|
|
1903
|
+
}
|
|
1898
1904
|
.ring-1 {
|
|
1899
1905
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1900
1906
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -1918,6 +1924,9 @@ video {
|
|
|
1918
1924
|
.ring-offset-2 {
|
|
1919
1925
|
--tw-ring-offset-width: 2px;
|
|
1920
1926
|
}
|
|
1927
|
+
.filter {
|
|
1928
|
+
filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
|
|
1929
|
+
}
|
|
1921
1930
|
.transition {
|
|
1922
1931
|
transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
|
|
1923
1932
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|