@geomak/ui 6.29.2 → 6.31.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 +171 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +159 -2
- package/dist/index.d.ts +159 -2
- package/dist/index.js +169 -15
- package/dist/index.js.map +1 -1
- package/dist/styles.css +85 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -732,6 +732,34 @@ video {
|
|
|
732
732
|
--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5), 0 3px 8px rgba(0, 0, 0, 0.3);
|
|
733
733
|
--shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.6), 0 6px 16px rgba(0, 0, 0, 0.35);
|
|
734
734
|
}
|
|
735
|
+
* {
|
|
736
|
+
scrollbar-width: thin;
|
|
737
|
+
scrollbar-color: var(--color-border-strong) transparent;
|
|
738
|
+
}
|
|
739
|
+
*::-webkit-scrollbar {
|
|
740
|
+
width: 10px;
|
|
741
|
+
height: 10px;
|
|
742
|
+
}
|
|
743
|
+
*::-webkit-scrollbar-track {
|
|
744
|
+
background: transparent;
|
|
745
|
+
}
|
|
746
|
+
*::-webkit-scrollbar-thumb {
|
|
747
|
+
background-color: var(--color-border-strong);
|
|
748
|
+
border: 2px solid transparent;
|
|
749
|
+
background-clip: padding-box;
|
|
750
|
+
border-radius: 9999px;
|
|
751
|
+
}
|
|
752
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
753
|
+
background-color: var(--color-foreground-muted);
|
|
754
|
+
}
|
|
755
|
+
*::-webkit-scrollbar-button {
|
|
756
|
+
display: none;
|
|
757
|
+
width: 0;
|
|
758
|
+
height: 0;
|
|
759
|
+
}
|
|
760
|
+
*::-webkit-scrollbar-corner {
|
|
761
|
+
background: transparent;
|
|
762
|
+
}
|
|
735
763
|
.container {
|
|
736
764
|
width: 100%;
|
|
737
765
|
}
|
|
@@ -809,6 +837,9 @@ video {
|
|
|
809
837
|
.-top-1 {
|
|
810
838
|
top: -0.25rem;
|
|
811
839
|
}
|
|
840
|
+
.-top-3 {
|
|
841
|
+
top: -0.75rem;
|
|
842
|
+
}
|
|
812
843
|
.-top-8 {
|
|
813
844
|
top: -2rem;
|
|
814
845
|
}
|
|
@@ -1017,6 +1048,9 @@ video {
|
|
|
1017
1048
|
.mb-1 {
|
|
1018
1049
|
margin-bottom: 0.25rem;
|
|
1019
1050
|
}
|
|
1051
|
+
.mb-10 {
|
|
1052
|
+
margin-bottom: 2.5rem;
|
|
1053
|
+
}
|
|
1020
1054
|
.mb-2 {
|
|
1021
1055
|
margin-bottom: 0.5rem;
|
|
1022
1056
|
}
|
|
@@ -1062,6 +1096,9 @@ video {
|
|
|
1062
1096
|
.mt-1\.5 {
|
|
1063
1097
|
margin-top: 0.375rem;
|
|
1064
1098
|
}
|
|
1099
|
+
.mt-12 {
|
|
1100
|
+
margin-top: 3rem;
|
|
1101
|
+
}
|
|
1065
1102
|
.mt-2 {
|
|
1066
1103
|
margin-top: 0.5rem;
|
|
1067
1104
|
}
|
|
@@ -1104,6 +1141,9 @@ video {
|
|
|
1104
1141
|
.hidden {
|
|
1105
1142
|
display: none;
|
|
1106
1143
|
}
|
|
1144
|
+
.aspect-\[16\/10\] {
|
|
1145
|
+
aspect-ratio: 16/10;
|
|
1146
|
+
}
|
|
1107
1147
|
.aspect-\[4\/3\] {
|
|
1108
1148
|
aspect-ratio: 4/3;
|
|
1109
1149
|
}
|
|
@@ -1191,6 +1231,9 @@ video {
|
|
|
1191
1231
|
.h-\[3px\] {
|
|
1192
1232
|
height: 3px;
|
|
1193
1233
|
}
|
|
1234
|
+
.h-\[4\.5rem\] {
|
|
1235
|
+
height: 4.5rem;
|
|
1236
|
+
}
|
|
1194
1237
|
.h-\[400px\] {
|
|
1195
1238
|
height: 400px;
|
|
1196
1239
|
}
|
|
@@ -1234,9 +1277,6 @@ video {
|
|
|
1234
1277
|
.max-h-72 {
|
|
1235
1278
|
max-height: 18rem;
|
|
1236
1279
|
}
|
|
1237
|
-
.max-h-\[120px\] {
|
|
1238
|
-
max-height: 120px;
|
|
1239
|
-
}
|
|
1240
1280
|
.max-h-\[90dvh\] {
|
|
1241
1281
|
max-height: 90dvh;
|
|
1242
1282
|
}
|
|
@@ -1443,9 +1483,15 @@ video {
|
|
|
1443
1483
|
.max-w-3xl {
|
|
1444
1484
|
max-width: 48rem;
|
|
1445
1485
|
}
|
|
1486
|
+
.max-w-4xl {
|
|
1487
|
+
max-width: 56rem;
|
|
1488
|
+
}
|
|
1446
1489
|
.max-w-5xl {
|
|
1447
1490
|
max-width: 64rem;
|
|
1448
1491
|
}
|
|
1492
|
+
.max-w-6xl {
|
|
1493
|
+
max-width: 72rem;
|
|
1494
|
+
}
|
|
1449
1495
|
.max-w-\[12rem\] {
|
|
1450
1496
|
max-width: 12rem;
|
|
1451
1497
|
}
|
|
@@ -1476,6 +1522,9 @@ video {
|
|
|
1476
1522
|
.max-w-sm {
|
|
1477
1523
|
max-width: 24rem;
|
|
1478
1524
|
}
|
|
1525
|
+
.max-w-xl {
|
|
1526
|
+
max-width: 36rem;
|
|
1527
|
+
}
|
|
1479
1528
|
.flex-1 {
|
|
1480
1529
|
flex: 1 1 0%;
|
|
1481
1530
|
}
|
|
@@ -2180,6 +2229,10 @@ video {
|
|
|
2180
2229
|
padding-top: 2.5rem;
|
|
2181
2230
|
padding-bottom: 2.5rem;
|
|
2182
2231
|
}
|
|
2232
|
+
.py-16 {
|
|
2233
|
+
padding-top: 4rem;
|
|
2234
|
+
padding-bottom: 4rem;
|
|
2235
|
+
}
|
|
2183
2236
|
.py-2 {
|
|
2184
2237
|
padding-top: 0.5rem;
|
|
2185
2238
|
padding-bottom: 0.5rem;
|
|
@@ -2394,6 +2447,9 @@ video {
|
|
|
2394
2447
|
.text-background {
|
|
2395
2448
|
color: var(--color-background);
|
|
2396
2449
|
}
|
|
2450
|
+
.text-border-strong {
|
|
2451
|
+
color: var(--color-border-strong);
|
|
2452
|
+
}
|
|
2397
2453
|
.text-foreground {
|
|
2398
2454
|
color: var(--color-foreground);
|
|
2399
2455
|
}
|
|
@@ -3053,9 +3109,21 @@ video {
|
|
|
3053
3109
|
.sm\:border-border {
|
|
3054
3110
|
border-color: var(--color-border);
|
|
3055
3111
|
}
|
|
3112
|
+
.sm\:px-10 {
|
|
3113
|
+
padding-left: 2.5rem;
|
|
3114
|
+
padding-right: 2.5rem;
|
|
3115
|
+
}
|
|
3116
|
+
.sm\:py-24 {
|
|
3117
|
+
padding-top: 6rem;
|
|
3118
|
+
padding-bottom: 6rem;
|
|
3119
|
+
}
|
|
3056
3120
|
.sm\:pr-3 {
|
|
3057
3121
|
padding-right: 0.75rem;
|
|
3058
3122
|
}
|
|
3123
|
+
.sm\:text-5xl {
|
|
3124
|
+
font-size: 3rem;
|
|
3125
|
+
line-height: 1;
|
|
3126
|
+
}
|
|
3059
3127
|
}
|
|
3060
3128
|
@media (min-width: 768px) {
|
|
3061
3129
|
.md\:flex {
|
|
@@ -3064,18 +3132,32 @@ video {
|
|
|
3064
3132
|
.md\:hidden {
|
|
3065
3133
|
display: none;
|
|
3066
3134
|
}
|
|
3135
|
+
.md\:grid-cols-2 {
|
|
3136
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3137
|
+
}
|
|
3067
3138
|
.md\:px-6 {
|
|
3068
3139
|
padding-left: 1.5rem;
|
|
3069
3140
|
padding-right: 1.5rem;
|
|
3070
3141
|
}
|
|
3071
3142
|
}
|
|
3072
3143
|
@media (min-width: 976px) {
|
|
3144
|
+
.lg\:-my-2 {
|
|
3145
|
+
margin-top: -0.5rem;
|
|
3146
|
+
margin-bottom: -0.5rem;
|
|
3147
|
+
}
|
|
3073
3148
|
.lg\:grid-cols-2 {
|
|
3074
3149
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3075
3150
|
}
|
|
3076
3151
|
.lg\:grid-cols-3 {
|
|
3077
3152
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3078
3153
|
}
|
|
3154
|
+
.lg\:grid-cols-4 {
|
|
3155
|
+
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
3156
|
+
}
|
|
3157
|
+
.lg\:py-8 {
|
|
3158
|
+
padding-top: 2rem;
|
|
3159
|
+
padding-bottom: 2rem;
|
|
3160
|
+
}
|
|
3079
3161
|
}
|
|
3080
3162
|
.\[\&\:\:-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button {
|
|
3081
3163
|
-webkit-appearance: none;
|
package/package.json
CHANGED