@geomak/ui 6.16.0 → 6.17.0
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/index.cjs +5476 -5296
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +331 -170
- package/dist/index.d.ts +331 -170
- package/dist/index.js +5443 -5268
- package/dist/index.js.map +1 -1
- package/dist/styles.css +29 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1013,6 +1013,9 @@ video {
|
|
|
1013
1013
|
.mb-4 {
|
|
1014
1014
|
margin-bottom: 1rem;
|
|
1015
1015
|
}
|
|
1016
|
+
.mb-6 {
|
|
1017
|
+
margin-bottom: 1.5rem;
|
|
1018
|
+
}
|
|
1016
1019
|
.ml-0\.5 {
|
|
1017
1020
|
margin-left: 0.125rem;
|
|
1018
1021
|
}
|
|
@@ -1085,6 +1088,9 @@ video {
|
|
|
1085
1088
|
.hidden {
|
|
1086
1089
|
display: none;
|
|
1087
1090
|
}
|
|
1091
|
+
.aspect-\[4\/3\] {
|
|
1092
|
+
aspect-ratio: 4/3;
|
|
1093
|
+
}
|
|
1088
1094
|
.h-0\.5 {
|
|
1089
1095
|
height: 0.125rem;
|
|
1090
1096
|
}
|
|
@@ -1418,6 +1424,9 @@ video {
|
|
|
1418
1424
|
.max-w-\[220px\] {
|
|
1419
1425
|
max-width: 220px;
|
|
1420
1426
|
}
|
|
1427
|
+
.max-w-\[40ch\] {
|
|
1428
|
+
max-width: 40ch;
|
|
1429
|
+
}
|
|
1421
1430
|
.max-w-full {
|
|
1422
1431
|
max-width: 100%;
|
|
1423
1432
|
}
|
|
@@ -1836,6 +1845,9 @@ video {
|
|
|
1836
1845
|
.border {
|
|
1837
1846
|
border-width: 1px;
|
|
1838
1847
|
}
|
|
1848
|
+
.border-0 {
|
|
1849
|
+
border-width: 0px;
|
|
1850
|
+
}
|
|
1839
1851
|
.border-2 {
|
|
1840
1852
|
border-width: 2px;
|
|
1841
1853
|
}
|
|
@@ -2026,9 +2038,6 @@ video {
|
|
|
2026
2038
|
.p-6 {
|
|
2027
2039
|
padding: 1.5rem;
|
|
2028
2040
|
}
|
|
2029
|
-
.p-8 {
|
|
2030
|
-
padding: 2rem;
|
|
2031
|
-
}
|
|
2032
2041
|
.px-1 {
|
|
2033
2042
|
padding-left: 0.25rem;
|
|
2034
2043
|
padding-right: 0.25rem;
|
|
@@ -2077,6 +2086,10 @@ video {
|
|
|
2077
2086
|
padding-top: 0.375rem;
|
|
2078
2087
|
padding-bottom: 0.375rem;
|
|
2079
2088
|
}
|
|
2089
|
+
.py-10 {
|
|
2090
|
+
padding-top: 2.5rem;
|
|
2091
|
+
padding-bottom: 2.5rem;
|
|
2092
|
+
}
|
|
2080
2093
|
.py-2 {
|
|
2081
2094
|
padding-top: 0.5rem;
|
|
2082
2095
|
padding-bottom: 0.5rem;
|
|
@@ -2894,6 +2907,11 @@ video {
|
|
|
2894
2907
|
--tw-bg-opacity: 1;
|
|
2895
2908
|
background-color: rgb(51 65 92 / var(--tw-bg-opacity, 1));
|
|
2896
2909
|
}
|
|
2910
|
+
@media (min-width: 480px) {
|
|
2911
|
+
.sm\:grid-cols-2 {
|
|
2912
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2913
|
+
}
|
|
2914
|
+
}
|
|
2897
2915
|
@media (min-width: 768px) {
|
|
2898
2916
|
.md\:flex {
|
|
2899
2917
|
display: flex;
|
|
@@ -2906,6 +2924,14 @@ video {
|
|
|
2906
2924
|
padding-right: 1.5rem;
|
|
2907
2925
|
}
|
|
2908
2926
|
}
|
|
2927
|
+
@media (min-width: 976px) {
|
|
2928
|
+
.lg\:grid-cols-2 {
|
|
2929
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2930
|
+
}
|
|
2931
|
+
.lg\:grid-cols-3 {
|
|
2932
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
2933
|
+
}
|
|
2934
|
+
}
|
|
2909
2935
|
.\[\&\:\:-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button {
|
|
2910
2936
|
-webkit-appearance: none;
|
|
2911
2937
|
appearance: none;
|
package/package.json
CHANGED