@fileverse/ui 4.1.1 → 4.1.2-patch-2
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.css +276 -60
- package/dist/index.es.d.ts +193 -85
- package/dist/index.es.js +37818 -15574
- package/package.json +3 -1
package/dist/index.css
CHANGED
|
@@ -621,6 +621,10 @@ video {
|
|
|
621
621
|
color: hsl(var(--color-text-link));
|
|
622
622
|
}
|
|
623
623
|
|
|
624
|
+
.\!color-text-inverse {
|
|
625
|
+
color: hsl(var(--color-text-inverse)) !important;
|
|
626
|
+
}
|
|
627
|
+
|
|
624
628
|
.color-text-inverse {
|
|
625
629
|
color: hsl(var(--color-text-inverse));
|
|
626
630
|
}
|
|
@@ -685,6 +689,10 @@ video {
|
|
|
685
689
|
background-color: hsl(var(--color-bg-success-light));
|
|
686
690
|
}
|
|
687
691
|
|
|
692
|
+
.\!color-bg-default-inverse {
|
|
693
|
+
background-color: hsl(var(--color-bg-default-inverse)) !important;
|
|
694
|
+
}
|
|
695
|
+
|
|
688
696
|
.color-bg-default-inverse {
|
|
689
697
|
background-color: hsl(var(--color-bg-default-inverse));
|
|
690
698
|
}
|
|
@@ -985,6 +993,9 @@ video {
|
|
|
985
993
|
.pointer-events-none {
|
|
986
994
|
pointer-events: none;
|
|
987
995
|
}
|
|
996
|
+
.pointer-events-auto {
|
|
997
|
+
pointer-events: auto;
|
|
998
|
+
}
|
|
988
999
|
.visible {
|
|
989
1000
|
visibility: visible;
|
|
990
1001
|
}
|
|
@@ -1038,6 +1049,9 @@ video {
|
|
|
1038
1049
|
.bottom-0 {
|
|
1039
1050
|
bottom: 0px;
|
|
1040
1051
|
}
|
|
1052
|
+
.bottom-2 {
|
|
1053
|
+
bottom: 0.5rem;
|
|
1054
|
+
}
|
|
1041
1055
|
.bottom-5 {
|
|
1042
1056
|
bottom: 1.25rem;
|
|
1043
1057
|
}
|
|
@@ -1074,24 +1088,18 @@ video {
|
|
|
1074
1088
|
.right-5 {
|
|
1075
1089
|
right: 1.25rem;
|
|
1076
1090
|
}
|
|
1077
|
-
.right-6 {
|
|
1078
|
-
right: 1.5rem;
|
|
1079
|
-
}
|
|
1080
1091
|
.top-0 {
|
|
1081
1092
|
top: 0px;
|
|
1082
1093
|
}
|
|
1083
1094
|
.top-1\/2 {
|
|
1084
1095
|
top: 50%;
|
|
1085
1096
|
}
|
|
1097
|
+
.top-2 {
|
|
1098
|
+
top: 0.5rem;
|
|
1099
|
+
}
|
|
1086
1100
|
.top-3 {
|
|
1087
1101
|
top: 0.75rem;
|
|
1088
1102
|
}
|
|
1089
|
-
.top-5 {
|
|
1090
|
-
top: 1.25rem;
|
|
1091
|
-
}
|
|
1092
|
-
.top-6 {
|
|
1093
|
-
top: 1.5rem;
|
|
1094
|
-
}
|
|
1095
1103
|
.top-\[50\%\] {
|
|
1096
1104
|
top: 50%;
|
|
1097
1105
|
}
|
|
@@ -1101,6 +1109,9 @@ video {
|
|
|
1101
1109
|
.z-50 {
|
|
1102
1110
|
z-index: 50;
|
|
1103
1111
|
}
|
|
1112
|
+
.z-\[100\] {
|
|
1113
|
+
z-index: 100;
|
|
1114
|
+
}
|
|
1104
1115
|
.z-\[999\] {
|
|
1105
1116
|
z-index: 999;
|
|
1106
1117
|
}
|
|
@@ -1144,6 +1155,9 @@ video {
|
|
|
1144
1155
|
.mb-2 {
|
|
1145
1156
|
margin-bottom: 0.5rem;
|
|
1146
1157
|
}
|
|
1158
|
+
.mb-4 {
|
|
1159
|
+
margin-bottom: 1rem;
|
|
1160
|
+
}
|
|
1147
1161
|
.ml-1 {
|
|
1148
1162
|
margin-left: 0.25rem;
|
|
1149
1163
|
}
|
|
@@ -1213,12 +1227,18 @@ video {
|
|
|
1213
1227
|
.aspect-video {
|
|
1214
1228
|
aspect-ratio: 16 / 9;
|
|
1215
1229
|
}
|
|
1230
|
+
.\!h-8 {
|
|
1231
|
+
height: 2rem !important;
|
|
1232
|
+
}
|
|
1216
1233
|
.\!h-\[4rem\] {
|
|
1217
1234
|
height: 4rem !important;
|
|
1218
1235
|
}
|
|
1219
1236
|
.\!h-auto {
|
|
1220
1237
|
height: auto !important;
|
|
1221
1238
|
}
|
|
1239
|
+
.h-1 {
|
|
1240
|
+
height: 0.25rem;
|
|
1241
|
+
}
|
|
1222
1242
|
.h-10 {
|
|
1223
1243
|
height: 2.5rem;
|
|
1224
1244
|
}
|
|
@@ -1243,18 +1263,12 @@ video {
|
|
|
1243
1263
|
.h-9 {
|
|
1244
1264
|
height: 2.25rem;
|
|
1245
1265
|
}
|
|
1246
|
-
.h-\[16px\] {
|
|
1247
|
-
height: 16px;
|
|
1248
|
-
}
|
|
1249
1266
|
.h-\[18px\] {
|
|
1250
1267
|
height: 18px;
|
|
1251
1268
|
}
|
|
1252
1269
|
.h-\[208px\] {
|
|
1253
1270
|
height: 208px;
|
|
1254
1271
|
}
|
|
1255
|
-
.h-\[20px\] {
|
|
1256
|
-
height: 20px;
|
|
1257
|
-
}
|
|
1258
1272
|
.h-\[30px\] {
|
|
1259
1273
|
height: 30px;
|
|
1260
1274
|
}
|
|
@@ -1304,12 +1318,18 @@ video {
|
|
|
1304
1318
|
.h-screen {
|
|
1305
1319
|
height: 100vh;
|
|
1306
1320
|
}
|
|
1321
|
+
.max-h-40 {
|
|
1322
|
+
max-height: 10rem;
|
|
1323
|
+
}
|
|
1307
1324
|
.max-h-96 {
|
|
1308
1325
|
max-height: 24rem;
|
|
1309
1326
|
}
|
|
1310
1327
|
.max-h-\[300px\] {
|
|
1311
1328
|
max-height: 300px;
|
|
1312
1329
|
}
|
|
1330
|
+
.max-h-screen {
|
|
1331
|
+
max-height: 100vh;
|
|
1332
|
+
}
|
|
1313
1333
|
.\!min-h-12 {
|
|
1314
1334
|
min-height: 3rem !important;
|
|
1315
1335
|
}
|
|
@@ -1361,9 +1381,15 @@ video {
|
|
|
1361
1381
|
.w-5 {
|
|
1362
1382
|
width: 1.25rem;
|
|
1363
1383
|
}
|
|
1384
|
+
.w-52 {
|
|
1385
|
+
width: 13rem;
|
|
1386
|
+
}
|
|
1364
1387
|
.w-6 {
|
|
1365
1388
|
width: 1.5rem;
|
|
1366
1389
|
}
|
|
1390
|
+
.w-64 {
|
|
1391
|
+
width: 16rem;
|
|
1392
|
+
}
|
|
1367
1393
|
.w-72 {
|
|
1368
1394
|
width: 18rem;
|
|
1369
1395
|
}
|
|
@@ -1376,6 +1402,9 @@ video {
|
|
|
1376
1402
|
.w-\[100\%\] {
|
|
1377
1403
|
width: 100%;
|
|
1378
1404
|
}
|
|
1405
|
+
.w-\[12px\] {
|
|
1406
|
+
width: 12px;
|
|
1407
|
+
}
|
|
1379
1408
|
.w-\[16px\] {
|
|
1380
1409
|
width: 16px;
|
|
1381
1410
|
}
|
|
@@ -1433,6 +1462,12 @@ video {
|
|
|
1433
1462
|
.w-\[85\%\] {
|
|
1434
1463
|
width: 85%;
|
|
1435
1464
|
}
|
|
1465
|
+
.w-\[8px\] {
|
|
1466
|
+
width: 8px;
|
|
1467
|
+
}
|
|
1468
|
+
.w-auto {
|
|
1469
|
+
width: auto;
|
|
1470
|
+
}
|
|
1436
1471
|
.w-fit {
|
|
1437
1472
|
width: -moz-fit-content;
|
|
1438
1473
|
width: fit-content;
|
|
@@ -1449,6 +1484,9 @@ video {
|
|
|
1449
1484
|
.min-w-4 {
|
|
1450
1485
|
min-width: 1rem;
|
|
1451
1486
|
}
|
|
1487
|
+
.min-w-5 {
|
|
1488
|
+
min-width: 1.25rem;
|
|
1489
|
+
}
|
|
1452
1490
|
.min-w-9 {
|
|
1453
1491
|
min-width: 2.25rem;
|
|
1454
1492
|
}
|
|
@@ -1507,6 +1545,9 @@ video {
|
|
|
1507
1545
|
.max-w-\[440px\] {
|
|
1508
1546
|
max-width: 440px;
|
|
1509
1547
|
}
|
|
1548
|
+
.max-w-\[500px\] {
|
|
1549
|
+
max-width: 500px;
|
|
1550
|
+
}
|
|
1510
1551
|
.max-w-\[70vw\] {
|
|
1511
1552
|
max-width: 70vw;
|
|
1512
1553
|
}
|
|
@@ -1588,6 +1629,15 @@ video {
|
|
|
1588
1629
|
.transform {
|
|
1589
1630
|
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));
|
|
1590
1631
|
}
|
|
1632
|
+
@keyframes pulse {
|
|
1633
|
+
|
|
1634
|
+
50% {
|
|
1635
|
+
opacity: .5;
|
|
1636
|
+
}
|
|
1637
|
+
}
|
|
1638
|
+
.animate-pulse {
|
|
1639
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1640
|
+
}
|
|
1591
1641
|
@keyframes spin {
|
|
1592
1642
|
|
|
1593
1643
|
to {
|
|
@@ -1724,6 +1774,11 @@ video {
|
|
|
1724
1774
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1725
1775
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1726
1776
|
}
|
|
1777
|
+
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1778
|
+
--tw-space-x-reverse: 0;
|
|
1779
|
+
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
1780
|
+
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1781
|
+
}
|
|
1727
1782
|
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
1728
1783
|
--tw-space-y-reverse: 0;
|
|
1729
1784
|
margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1877,6 +1932,10 @@ video {
|
|
|
1877
1932
|
.\!bg-transparent {
|
|
1878
1933
|
background-color: transparent !important;
|
|
1879
1934
|
}
|
|
1935
|
+
.bg-green-700 {
|
|
1936
|
+
--tw-bg-opacity: 1;
|
|
1937
|
+
background-color: rgb(21 128 61 / var(--tw-bg-opacity));
|
|
1938
|
+
}
|
|
1880
1939
|
.bg-inherit {
|
|
1881
1940
|
background-color: inherit;
|
|
1882
1941
|
}
|
|
@@ -2070,6 +2129,9 @@ video {
|
|
|
2070
2129
|
font-size: 0.875rem;
|
|
2071
2130
|
line-height: 1.25rem;
|
|
2072
2131
|
}
|
|
2132
|
+
.\!font-bold {
|
|
2133
|
+
font-weight: 700 !important;
|
|
2134
|
+
}
|
|
2073
2135
|
.font-\[700\] {
|
|
2074
2136
|
font-weight: 700;
|
|
2075
2137
|
}
|
|
@@ -2085,6 +2147,10 @@ video {
|
|
|
2085
2147
|
.tracking-widest {
|
|
2086
2148
|
letter-spacing: 0.1em;
|
|
2087
2149
|
}
|
|
2150
|
+
.text-\[\#77818A\] {
|
|
2151
|
+
--tw-text-opacity: 1;
|
|
2152
|
+
color: rgb(119 129 138 / var(--tw-text-opacity));
|
|
2153
|
+
}
|
|
2088
2154
|
.text-red-500 {
|
|
2089
2155
|
--tw-text-opacity: 1;
|
|
2090
2156
|
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
@@ -2101,6 +2167,9 @@ video {
|
|
|
2101
2167
|
.opacity-50 {
|
|
2102
2168
|
opacity: 0.5;
|
|
2103
2169
|
}
|
|
2170
|
+
.opacity-90 {
|
|
2171
|
+
opacity: 0.9;
|
|
2172
|
+
}
|
|
2104
2173
|
.shadow {
|
|
2105
2174
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
2106
2175
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
@@ -2111,6 +2180,11 @@ video {
|
|
|
2111
2180
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
2112
2181
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2113
2182
|
}
|
|
2183
|
+
.shadow-md {
|
|
2184
|
+
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
2185
|
+
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
2186
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2187
|
+
}
|
|
2114
2188
|
.shadow-none {
|
|
2115
2189
|
--tw-shadow: 0 0 #0000;
|
|
2116
2190
|
--tw-shadow-colored: 0 0 #0000;
|
|
@@ -2136,12 +2210,20 @@ video {
|
|
|
2136
2210
|
.ring-offset-2 {
|
|
2137
2211
|
--tw-ring-offset-width: 2px;
|
|
2138
2212
|
}
|
|
2213
|
+
.ring-offset-transparent {
|
|
2214
|
+
--tw-ring-offset-color: transparent;
|
|
2215
|
+
}
|
|
2139
2216
|
.ring-offset-white {
|
|
2140
2217
|
--tw-ring-offset-color: #fff;
|
|
2141
2218
|
}
|
|
2142
2219
|
.filter {
|
|
2143
2220
|
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);
|
|
2144
2221
|
}
|
|
2222
|
+
.backdrop-blur-sm {
|
|
2223
|
+
--tw-backdrop-blur: blur(4px);
|
|
2224
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
2225
|
+
backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
|
|
2226
|
+
}
|
|
2145
2227
|
.transition {
|
|
2146
2228
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
2147
2229
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
@@ -2312,16 +2394,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2312
2394
|
color: hsl(var(--color-text-disabled));
|
|
2313
2395
|
}
|
|
2314
2396
|
|
|
2315
|
-
.after\:color-bg-default-inverse::after {
|
|
2316
|
-
content: var(--tw-content);
|
|
2317
|
-
background-color: hsl(var(--color-bg-default-inverse));
|
|
2318
|
-
}
|
|
2319
|
-
|
|
2320
|
-
.after\:color-icon-disabled::after {
|
|
2321
|
-
content: var(--tw-content);
|
|
2322
|
-
background-color: hsl(var(--color-icon-disabled));
|
|
2323
|
-
}
|
|
2324
|
-
|
|
2325
2397
|
.checked\:color-text-inverse:checked {
|
|
2326
2398
|
color: hsl(var(--color-text-inverse));
|
|
2327
2399
|
}
|
|
@@ -2418,6 +2490,86 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2418
2490
|
border-color: hsl(var(--color-border-disabled));
|
|
2419
2491
|
}
|
|
2420
2492
|
|
|
2493
|
+
.group.secondary .group-\[\.secondary\]\:color-text-default {
|
|
2494
|
+
color: hsl(var(--color-text-default));
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2497
|
+
.group.danger .group-\[\.danger\]\:color-text-danger {
|
|
2498
|
+
color: hsl(var(--color-text-danger));
|
|
2499
|
+
}
|
|
2500
|
+
|
|
2501
|
+
.group.success .group-\[\.success\]\:color-text-success {
|
|
2502
|
+
color: hsl(var(--color-text-success));
|
|
2503
|
+
}
|
|
2504
|
+
|
|
2505
|
+
.group.default .group-\[\.default\]\:color-text-inverse {
|
|
2506
|
+
color: hsl(var(--color-text-inverse));
|
|
2507
|
+
}
|
|
2508
|
+
|
|
2509
|
+
.group.secondary .group-\[\.secondary\]\:color-bg-secondary {
|
|
2510
|
+
background-color: hsl(var(--color-bg-secondary));
|
|
2511
|
+
}
|
|
2512
|
+
|
|
2513
|
+
.group.danger .group-\[\.danger\]\:color-bg-danger-light {
|
|
2514
|
+
background-color: hsl(var(--color-bg-danger-light));
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
.group.success .group-\[\.success\]\:color-bg-success-light {
|
|
2518
|
+
background-color: hsl(var(--color-bg-success-light));
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
.group.default .group-\[\.default\]\:color-bg-default-inverse {
|
|
2522
|
+
background-color: hsl(var(--color-bg-default-inverse));
|
|
2523
|
+
}
|
|
2524
|
+
|
|
2525
|
+
.group.default .group-\[\.default\]\:color-border-default {
|
|
2526
|
+
border-color: hsl(var(--color-border-default));
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
.group.secondary .group-\[\.secondary\]\:color-border-hover {
|
|
2530
|
+
border-color: hsl(var(--color-border-hover));
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2533
|
+
.group.success .group-\[\.success\]\:color-border-hover {
|
|
2534
|
+
border-color: hsl(var(--color-border-hover));
|
|
2535
|
+
}
|
|
2536
|
+
|
|
2537
|
+
.group.danger .group-\[\.danger\]\:color-border-danger {
|
|
2538
|
+
border-color: hsl(var(--color-border-danger));
|
|
2539
|
+
}
|
|
2540
|
+
|
|
2541
|
+
.group.secondary .group-\[\.secondary\]\:hover\:color-text-default:hover {
|
|
2542
|
+
color: hsl(var(--color-text-default));
|
|
2543
|
+
}
|
|
2544
|
+
|
|
2545
|
+
.group.danger .group-\[\.danger\]\:hover\:color-text-danger:hover {
|
|
2546
|
+
color: hsl(var(--color-text-danger));
|
|
2547
|
+
}
|
|
2548
|
+
|
|
2549
|
+
.group.success .group-\[\.success\]\:hover\:color-text-success:hover {
|
|
2550
|
+
color: hsl(var(--color-text-success));
|
|
2551
|
+
}
|
|
2552
|
+
|
|
2553
|
+
.group.default .group-\[\.default\]\:hover\:color-text-inverse:hover {
|
|
2554
|
+
color: hsl(var(--color-text-inverse));
|
|
2555
|
+
}
|
|
2556
|
+
|
|
2557
|
+
.group.secondary .group-\[\.secondary\]\:hover\:color-bg-secondary:hover {
|
|
2558
|
+
background-color: hsl(var(--color-bg-secondary));
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
.group.danger .group-\[\.danger\]\:hover\:color-bg-danger-light:hover {
|
|
2562
|
+
background-color: hsl(var(--color-bg-danger-light));
|
|
2563
|
+
}
|
|
2564
|
+
|
|
2565
|
+
.group.success .group-\[\.success\]\:hover\:color-bg-success-light:hover {
|
|
2566
|
+
background-color: hsl(var(--color-bg-success-light));
|
|
2567
|
+
}
|
|
2568
|
+
|
|
2569
|
+
.group.default .group-\[\.default\]\:hover\:color-bg-default-inverse:hover {
|
|
2570
|
+
background-color: hsl(var(--color-bg-default-inverse));
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2421
2573
|
.aria-selected\:color-text-default[aria-selected="true"] {
|
|
2422
2574
|
color: hsl(var(--color-text-default));
|
|
2423
2575
|
}
|
|
@@ -2511,41 +2663,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2511
2663
|
background-color: transparent;
|
|
2512
2664
|
}
|
|
2513
2665
|
|
|
2514
|
-
.after\:block::after {
|
|
2515
|
-
content: var(--tw-content);
|
|
2516
|
-
display: block;
|
|
2517
|
-
}
|
|
2518
|
-
|
|
2519
|
-
.after\:h-\[10px\]::after {
|
|
2520
|
-
content: var(--tw-content);
|
|
2521
|
-
height: 10px;
|
|
2522
|
-
}
|
|
2523
|
-
|
|
2524
|
-
.after\:h-\[6px\]::after {
|
|
2525
|
-
content: var(--tw-content);
|
|
2526
|
-
height: 6px;
|
|
2527
|
-
}
|
|
2528
|
-
|
|
2529
|
-
.after\:w-\[10px\]::after {
|
|
2530
|
-
content: var(--tw-content);
|
|
2531
|
-
width: 10px;
|
|
2532
|
-
}
|
|
2533
|
-
|
|
2534
|
-
.after\:w-\[6px\]::after {
|
|
2535
|
-
content: var(--tw-content);
|
|
2536
|
-
width: 6px;
|
|
2537
|
-
}
|
|
2538
|
-
|
|
2539
|
-
.after\:rounded-\[50\%\]::after {
|
|
2540
|
-
content: var(--tw-content);
|
|
2541
|
-
border-radius: 50%;
|
|
2542
|
-
}
|
|
2543
|
-
|
|
2544
|
-
.after\:content-\[\'\'\]::after {
|
|
2545
|
-
--tw-content: '';
|
|
2546
|
-
content: var(--tw-content);
|
|
2547
|
-
}
|
|
2548
|
-
|
|
2549
2666
|
.checked\:border-0:checked {
|
|
2550
2667
|
border-width: 0px;
|
|
2551
2668
|
}
|
|
@@ -2579,6 +2696,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2579
2696
|
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);
|
|
2580
2697
|
}
|
|
2581
2698
|
|
|
2699
|
+
.focus\:opacity-100:focus {
|
|
2700
|
+
opacity: 1;
|
|
2701
|
+
}
|
|
2702
|
+
|
|
2582
2703
|
.focus\:shadow-none:focus {
|
|
2583
2704
|
--tw-shadow: 0 0 #0000;
|
|
2584
2705
|
--tw-shadow-colored: 0 0 #0000;
|
|
@@ -2621,6 +2742,12 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2621
2742
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2622
2743
|
}
|
|
2623
2744
|
|
|
2745
|
+
.focus-visible\:ring-2:focus-visible {
|
|
2746
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2747
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2748
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2749
|
+
}
|
|
2750
|
+
|
|
2624
2751
|
.focus-visible\:ring-focused:focus-visible {
|
|
2625
2752
|
--tw-ring-color: hsl(var(--focused));
|
|
2626
2753
|
}
|
|
@@ -2653,6 +2780,11 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2653
2780
|
opacity: 1;
|
|
2654
2781
|
}
|
|
2655
2782
|
|
|
2783
|
+
.group:hover .group-hover\:brightness-95 {
|
|
2784
|
+
--tw-brightness: brightness(.95);
|
|
2785
|
+
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);
|
|
2786
|
+
}
|
|
2787
|
+
|
|
2656
2788
|
.peer:checked ~ .peer-checked\:block {
|
|
2657
2789
|
display: block;
|
|
2658
2790
|
}
|
|
@@ -2699,6 +2831,36 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2699
2831
|
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));
|
|
2700
2832
|
}
|
|
2701
2833
|
|
|
2834
|
+
.data-\[swipe\=cancel\]\:translate-x-0[data-swipe=cancel] {
|
|
2835
|
+
--tw-translate-x: 0px;
|
|
2836
|
+
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));
|
|
2837
|
+
}
|
|
2838
|
+
|
|
2839
|
+
.data-\[swipe\=cancel\]\:translate-y-0[data-swipe=cancel] {
|
|
2840
|
+
--tw-translate-y: 0px;
|
|
2841
|
+
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));
|
|
2842
|
+
}
|
|
2843
|
+
|
|
2844
|
+
.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe=end] {
|
|
2845
|
+
--tw-translate-x: var(--radix-toast-swipe-end-x);
|
|
2846
|
+
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));
|
|
2847
|
+
}
|
|
2848
|
+
|
|
2849
|
+
.data-\[swipe\=end\]\:translate-y-\[var\(--radix-toast-swipe-end-y\)\][data-swipe=end] {
|
|
2850
|
+
--tw-translate-y: var(--radix-toast-swipe-end-y);
|
|
2851
|
+
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));
|
|
2852
|
+
}
|
|
2853
|
+
|
|
2854
|
+
.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe=move] {
|
|
2855
|
+
--tw-translate-x: var(--radix-toast-swipe-move-x);
|
|
2856
|
+
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));
|
|
2857
|
+
}
|
|
2858
|
+
|
|
2859
|
+
.data-\[swipe\=move\]\:translate-y-\[var\(--radix-toast-swipe-move-y\)\][data-swipe=move] {
|
|
2860
|
+
--tw-translate-y: var(--radix-toast-swipe-move-y);
|
|
2861
|
+
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));
|
|
2862
|
+
}
|
|
2863
|
+
|
|
2702
2864
|
@keyframes accordion-up {
|
|
2703
2865
|
|
|
2704
2866
|
from {
|
|
@@ -2745,6 +2907,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2745
2907
|
opacity: 0.5;
|
|
2746
2908
|
}
|
|
2747
2909
|
|
|
2910
|
+
.data-\[swipe\=move\]\:transition-none[data-swipe=move] {
|
|
2911
|
+
transition-property: none;
|
|
2912
|
+
}
|
|
2913
|
+
|
|
2748
2914
|
.data-\[state\=closed\]\:duration-300[data-state=closed] {
|
|
2749
2915
|
transition-duration: 300ms;
|
|
2750
2916
|
}
|
|
@@ -2773,10 +2939,24 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2773
2939
|
--tw-exit-translate-y: initial;
|
|
2774
2940
|
}
|
|
2775
2941
|
|
|
2942
|
+
.data-\[swipe\=end\]\:animate-out[data-swipe=end] {
|
|
2943
|
+
animation-name: exit;
|
|
2944
|
+
animation-duration: 150ms;
|
|
2945
|
+
--tw-exit-opacity: initial;
|
|
2946
|
+
--tw-exit-scale: initial;
|
|
2947
|
+
--tw-exit-rotate: initial;
|
|
2948
|
+
--tw-exit-translate-x: initial;
|
|
2949
|
+
--tw-exit-translate-y: initial;
|
|
2950
|
+
}
|
|
2951
|
+
|
|
2776
2952
|
.data-\[state\=closed\]\:fade-out-0[data-state=closed] {
|
|
2777
2953
|
--tw-exit-opacity: 0;
|
|
2778
2954
|
}
|
|
2779
2955
|
|
|
2956
|
+
.data-\[state\=closed\]\:fade-out-80[data-state=closed] {
|
|
2957
|
+
--tw-exit-opacity: 0.8;
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2780
2960
|
.data-\[state\=open\]\:fade-in-0[data-state=open] {
|
|
2781
2961
|
--tw-enter-opacity: 0;
|
|
2782
2962
|
}
|
|
@@ -2809,6 +2989,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2809
2989
|
--tw-exit-translate-y: 100%;
|
|
2810
2990
|
}
|
|
2811
2991
|
|
|
2992
|
+
.data-\[state\=closed\]\:slide-out-to-bottom-full[data-state=closed] {
|
|
2993
|
+
--tw-exit-translate-y: 100%;
|
|
2994
|
+
}
|
|
2995
|
+
|
|
2812
2996
|
.data-\[state\=closed\]\:slide-out-to-left[data-state=closed] {
|
|
2813
2997
|
--tw-exit-translate-x: -100%;
|
|
2814
2998
|
}
|
|
@@ -2817,10 +3001,18 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2817
3001
|
--tw-exit-translate-x: -50%;
|
|
2818
3002
|
}
|
|
2819
3003
|
|
|
3004
|
+
.data-\[state\=closed\]\:slide-out-to-left-full[data-state=closed] {
|
|
3005
|
+
--tw-exit-translate-x: -100%;
|
|
3006
|
+
}
|
|
3007
|
+
|
|
2820
3008
|
.data-\[state\=closed\]\:slide-out-to-right[data-state=closed] {
|
|
2821
3009
|
--tw-exit-translate-x: 100%;
|
|
2822
3010
|
}
|
|
2823
3011
|
|
|
3012
|
+
.data-\[state\=closed\]\:slide-out-to-right-full[data-state=closed] {
|
|
3013
|
+
--tw-exit-translate-x: 100%;
|
|
3014
|
+
}
|
|
3015
|
+
|
|
2824
3016
|
.data-\[state\=closed\]\:slide-out-to-top[data-state=closed] {
|
|
2825
3017
|
--tw-exit-translate-y: -100%;
|
|
2826
3018
|
}
|
|
@@ -2829,10 +3021,18 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2829
3021
|
--tw-exit-translate-y: -48%;
|
|
2830
3022
|
}
|
|
2831
3023
|
|
|
3024
|
+
.data-\[state\=closed\]\:slide-out-to-top-full[data-state=closed] {
|
|
3025
|
+
--tw-exit-translate-y: -100%;
|
|
3026
|
+
}
|
|
3027
|
+
|
|
2832
3028
|
.data-\[state\=open\]\:slide-in-from-bottom[data-state=open] {
|
|
2833
3029
|
--tw-enter-translate-y: 100%;
|
|
2834
3030
|
}
|
|
2835
3031
|
|
|
3032
|
+
.data-\[state\=open\]\:slide-in-from-bottom-full[data-state=open] {
|
|
3033
|
+
--tw-enter-translate-y: 100%;
|
|
3034
|
+
}
|
|
3035
|
+
|
|
2836
3036
|
.data-\[state\=open\]\:slide-in-from-left[data-state=open] {
|
|
2837
3037
|
--tw-enter-translate-x: -100%;
|
|
2838
3038
|
}
|
|
@@ -2853,6 +3053,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2853
3053
|
--tw-enter-translate-y: -48%;
|
|
2854
3054
|
}
|
|
2855
3055
|
|
|
3056
|
+
.data-\[state\=open\]\:slide-in-from-top-full[data-state=open] {
|
|
3057
|
+
--tw-enter-translate-y: -100%;
|
|
3058
|
+
}
|
|
3059
|
+
|
|
2856
3060
|
.data-\[state\=closed\]\:duration-300[data-state=closed] {
|
|
2857
3061
|
animation-duration: 300ms;
|
|
2858
3062
|
}
|
|
@@ -2880,6 +3084,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2880
3084
|
flex-direction: row;
|
|
2881
3085
|
}
|
|
2882
3086
|
|
|
3087
|
+
.sm\:flex-col {
|
|
3088
|
+
flex-direction: column;
|
|
3089
|
+
}
|
|
3090
|
+
|
|
2883
3091
|
.sm\:justify-end {
|
|
2884
3092
|
justify-content: flex-end;
|
|
2885
3093
|
}
|
|
@@ -2913,6 +3121,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2913
3121
|
width: auto;
|
|
2914
3122
|
}
|
|
2915
3123
|
|
|
3124
|
+
.md\:max-w-\[420px\] {
|
|
3125
|
+
max-width: 420px;
|
|
3126
|
+
}
|
|
3127
|
+
|
|
2916
3128
|
.md\:grid-cols-2 {
|
|
2917
3129
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2918
3130
|
}
|
|
@@ -2940,6 +3152,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2940
3152
|
|
|
2941
3153
|
@media (min-width: 1024px) {
|
|
2942
3154
|
|
|
3155
|
+
.lg\:\!mt-0 {
|
|
3156
|
+
margin-top: 0px !important;
|
|
3157
|
+
}
|
|
3158
|
+
|
|
2943
3159
|
.lg\:mb-1 {
|
|
2944
3160
|
margin-bottom: 0.25rem;
|
|
2945
3161
|
}
|