@fileverse/ui 4.1.1 → 4.1.2-patch-1
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 -51
- package/dist/index.es.d.ts +191 -84
- package/dist/index.es.js +37306 -15082
- 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
|
}
|
|
@@ -1083,6 +1097,9 @@ video {
|
|
|
1083
1097
|
.top-1\/2 {
|
|
1084
1098
|
top: 50%;
|
|
1085
1099
|
}
|
|
1100
|
+
.top-2 {
|
|
1101
|
+
top: 0.5rem;
|
|
1102
|
+
}
|
|
1086
1103
|
.top-3 {
|
|
1087
1104
|
top: 0.75rem;
|
|
1088
1105
|
}
|
|
@@ -1101,6 +1118,9 @@ video {
|
|
|
1101
1118
|
.z-50 {
|
|
1102
1119
|
z-index: 50;
|
|
1103
1120
|
}
|
|
1121
|
+
.z-\[100\] {
|
|
1122
|
+
z-index: 100;
|
|
1123
|
+
}
|
|
1104
1124
|
.z-\[999\] {
|
|
1105
1125
|
z-index: 999;
|
|
1106
1126
|
}
|
|
@@ -1144,6 +1164,9 @@ video {
|
|
|
1144
1164
|
.mb-2 {
|
|
1145
1165
|
margin-bottom: 0.5rem;
|
|
1146
1166
|
}
|
|
1167
|
+
.mb-4 {
|
|
1168
|
+
margin-bottom: 1rem;
|
|
1169
|
+
}
|
|
1147
1170
|
.ml-1 {
|
|
1148
1171
|
margin-left: 0.25rem;
|
|
1149
1172
|
}
|
|
@@ -1213,12 +1236,18 @@ video {
|
|
|
1213
1236
|
.aspect-video {
|
|
1214
1237
|
aspect-ratio: 16 / 9;
|
|
1215
1238
|
}
|
|
1239
|
+
.\!h-8 {
|
|
1240
|
+
height: 2rem !important;
|
|
1241
|
+
}
|
|
1216
1242
|
.\!h-\[4rem\] {
|
|
1217
1243
|
height: 4rem !important;
|
|
1218
1244
|
}
|
|
1219
1245
|
.\!h-auto {
|
|
1220
1246
|
height: auto !important;
|
|
1221
1247
|
}
|
|
1248
|
+
.h-1 {
|
|
1249
|
+
height: 0.25rem;
|
|
1250
|
+
}
|
|
1222
1251
|
.h-10 {
|
|
1223
1252
|
height: 2.5rem;
|
|
1224
1253
|
}
|
|
@@ -1243,18 +1272,12 @@ video {
|
|
|
1243
1272
|
.h-9 {
|
|
1244
1273
|
height: 2.25rem;
|
|
1245
1274
|
}
|
|
1246
|
-
.h-\[16px\] {
|
|
1247
|
-
height: 16px;
|
|
1248
|
-
}
|
|
1249
1275
|
.h-\[18px\] {
|
|
1250
1276
|
height: 18px;
|
|
1251
1277
|
}
|
|
1252
1278
|
.h-\[208px\] {
|
|
1253
1279
|
height: 208px;
|
|
1254
1280
|
}
|
|
1255
|
-
.h-\[20px\] {
|
|
1256
|
-
height: 20px;
|
|
1257
|
-
}
|
|
1258
1281
|
.h-\[30px\] {
|
|
1259
1282
|
height: 30px;
|
|
1260
1283
|
}
|
|
@@ -1304,12 +1327,18 @@ video {
|
|
|
1304
1327
|
.h-screen {
|
|
1305
1328
|
height: 100vh;
|
|
1306
1329
|
}
|
|
1330
|
+
.max-h-40 {
|
|
1331
|
+
max-height: 10rem;
|
|
1332
|
+
}
|
|
1307
1333
|
.max-h-96 {
|
|
1308
1334
|
max-height: 24rem;
|
|
1309
1335
|
}
|
|
1310
1336
|
.max-h-\[300px\] {
|
|
1311
1337
|
max-height: 300px;
|
|
1312
1338
|
}
|
|
1339
|
+
.max-h-screen {
|
|
1340
|
+
max-height: 100vh;
|
|
1341
|
+
}
|
|
1313
1342
|
.\!min-h-12 {
|
|
1314
1343
|
min-height: 3rem !important;
|
|
1315
1344
|
}
|
|
@@ -1361,9 +1390,15 @@ video {
|
|
|
1361
1390
|
.w-5 {
|
|
1362
1391
|
width: 1.25rem;
|
|
1363
1392
|
}
|
|
1393
|
+
.w-52 {
|
|
1394
|
+
width: 13rem;
|
|
1395
|
+
}
|
|
1364
1396
|
.w-6 {
|
|
1365
1397
|
width: 1.5rem;
|
|
1366
1398
|
}
|
|
1399
|
+
.w-64 {
|
|
1400
|
+
width: 16rem;
|
|
1401
|
+
}
|
|
1367
1402
|
.w-72 {
|
|
1368
1403
|
width: 18rem;
|
|
1369
1404
|
}
|
|
@@ -1376,6 +1411,9 @@ video {
|
|
|
1376
1411
|
.w-\[100\%\] {
|
|
1377
1412
|
width: 100%;
|
|
1378
1413
|
}
|
|
1414
|
+
.w-\[12px\] {
|
|
1415
|
+
width: 12px;
|
|
1416
|
+
}
|
|
1379
1417
|
.w-\[16px\] {
|
|
1380
1418
|
width: 16px;
|
|
1381
1419
|
}
|
|
@@ -1433,6 +1471,12 @@ video {
|
|
|
1433
1471
|
.w-\[85\%\] {
|
|
1434
1472
|
width: 85%;
|
|
1435
1473
|
}
|
|
1474
|
+
.w-\[8px\] {
|
|
1475
|
+
width: 8px;
|
|
1476
|
+
}
|
|
1477
|
+
.w-auto {
|
|
1478
|
+
width: auto;
|
|
1479
|
+
}
|
|
1436
1480
|
.w-fit {
|
|
1437
1481
|
width: -moz-fit-content;
|
|
1438
1482
|
width: fit-content;
|
|
@@ -1449,6 +1493,9 @@ video {
|
|
|
1449
1493
|
.min-w-4 {
|
|
1450
1494
|
min-width: 1rem;
|
|
1451
1495
|
}
|
|
1496
|
+
.min-w-5 {
|
|
1497
|
+
min-width: 1.25rem;
|
|
1498
|
+
}
|
|
1452
1499
|
.min-w-9 {
|
|
1453
1500
|
min-width: 2.25rem;
|
|
1454
1501
|
}
|
|
@@ -1507,6 +1554,9 @@ video {
|
|
|
1507
1554
|
.max-w-\[440px\] {
|
|
1508
1555
|
max-width: 440px;
|
|
1509
1556
|
}
|
|
1557
|
+
.max-w-\[500px\] {
|
|
1558
|
+
max-width: 500px;
|
|
1559
|
+
}
|
|
1510
1560
|
.max-w-\[70vw\] {
|
|
1511
1561
|
max-width: 70vw;
|
|
1512
1562
|
}
|
|
@@ -1588,6 +1638,15 @@ video {
|
|
|
1588
1638
|
.transform {
|
|
1589
1639
|
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
1640
|
}
|
|
1641
|
+
@keyframes pulse {
|
|
1642
|
+
|
|
1643
|
+
50% {
|
|
1644
|
+
opacity: .5;
|
|
1645
|
+
}
|
|
1646
|
+
}
|
|
1647
|
+
.animate-pulse {
|
|
1648
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1649
|
+
}
|
|
1591
1650
|
@keyframes spin {
|
|
1592
1651
|
|
|
1593
1652
|
to {
|
|
@@ -1724,6 +1783,11 @@ video {
|
|
|
1724
1783
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1725
1784
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1726
1785
|
}
|
|
1786
|
+
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1787
|
+
--tw-space-x-reverse: 0;
|
|
1788
|
+
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
1789
|
+
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1790
|
+
}
|
|
1727
1791
|
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
1728
1792
|
--tw-space-y-reverse: 0;
|
|
1729
1793
|
margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1877,6 +1941,10 @@ video {
|
|
|
1877
1941
|
.\!bg-transparent {
|
|
1878
1942
|
background-color: transparent !important;
|
|
1879
1943
|
}
|
|
1944
|
+
.bg-green-700 {
|
|
1945
|
+
--tw-bg-opacity: 1;
|
|
1946
|
+
background-color: rgb(21 128 61 / var(--tw-bg-opacity));
|
|
1947
|
+
}
|
|
1880
1948
|
.bg-inherit {
|
|
1881
1949
|
background-color: inherit;
|
|
1882
1950
|
}
|
|
@@ -2070,6 +2138,9 @@ video {
|
|
|
2070
2138
|
font-size: 0.875rem;
|
|
2071
2139
|
line-height: 1.25rem;
|
|
2072
2140
|
}
|
|
2141
|
+
.\!font-bold {
|
|
2142
|
+
font-weight: 700 !important;
|
|
2143
|
+
}
|
|
2073
2144
|
.font-\[700\] {
|
|
2074
2145
|
font-weight: 700;
|
|
2075
2146
|
}
|
|
@@ -2085,6 +2156,10 @@ video {
|
|
|
2085
2156
|
.tracking-widest {
|
|
2086
2157
|
letter-spacing: 0.1em;
|
|
2087
2158
|
}
|
|
2159
|
+
.text-\[\#77818A\] {
|
|
2160
|
+
--tw-text-opacity: 1;
|
|
2161
|
+
color: rgb(119 129 138 / var(--tw-text-opacity));
|
|
2162
|
+
}
|
|
2088
2163
|
.text-red-500 {
|
|
2089
2164
|
--tw-text-opacity: 1;
|
|
2090
2165
|
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
@@ -2101,6 +2176,9 @@ video {
|
|
|
2101
2176
|
.opacity-50 {
|
|
2102
2177
|
opacity: 0.5;
|
|
2103
2178
|
}
|
|
2179
|
+
.opacity-90 {
|
|
2180
|
+
opacity: 0.9;
|
|
2181
|
+
}
|
|
2104
2182
|
.shadow {
|
|
2105
2183
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
2106
2184
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
@@ -2111,6 +2189,11 @@ video {
|
|
|
2111
2189
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
2112
2190
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2113
2191
|
}
|
|
2192
|
+
.shadow-md {
|
|
2193
|
+
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
2194
|
+
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
2195
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2196
|
+
}
|
|
2114
2197
|
.shadow-none {
|
|
2115
2198
|
--tw-shadow: 0 0 #0000;
|
|
2116
2199
|
--tw-shadow-colored: 0 0 #0000;
|
|
@@ -2136,12 +2219,20 @@ video {
|
|
|
2136
2219
|
.ring-offset-2 {
|
|
2137
2220
|
--tw-ring-offset-width: 2px;
|
|
2138
2221
|
}
|
|
2222
|
+
.ring-offset-transparent {
|
|
2223
|
+
--tw-ring-offset-color: transparent;
|
|
2224
|
+
}
|
|
2139
2225
|
.ring-offset-white {
|
|
2140
2226
|
--tw-ring-offset-color: #fff;
|
|
2141
2227
|
}
|
|
2142
2228
|
.filter {
|
|
2143
2229
|
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
2230
|
}
|
|
2231
|
+
.backdrop-blur-sm {
|
|
2232
|
+
--tw-backdrop-blur: blur(4px);
|
|
2233
|
+
-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);
|
|
2234
|
+
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);
|
|
2235
|
+
}
|
|
2145
2236
|
.transition {
|
|
2146
2237
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
|
|
2147
2238
|
transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
|
|
@@ -2312,16 +2403,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2312
2403
|
color: hsl(var(--color-text-disabled));
|
|
2313
2404
|
}
|
|
2314
2405
|
|
|
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
2406
|
.checked\:color-text-inverse:checked {
|
|
2326
2407
|
color: hsl(var(--color-text-inverse));
|
|
2327
2408
|
}
|
|
@@ -2418,6 +2499,86 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2418
2499
|
border-color: hsl(var(--color-border-disabled));
|
|
2419
2500
|
}
|
|
2420
2501
|
|
|
2502
|
+
.group.secondary .group-\[\.secondary\]\:color-text-default {
|
|
2503
|
+
color: hsl(var(--color-text-default));
|
|
2504
|
+
}
|
|
2505
|
+
|
|
2506
|
+
.group.danger .group-\[\.danger\]\:color-text-danger {
|
|
2507
|
+
color: hsl(var(--color-text-danger));
|
|
2508
|
+
}
|
|
2509
|
+
|
|
2510
|
+
.group.success .group-\[\.success\]\:color-text-success {
|
|
2511
|
+
color: hsl(var(--color-text-success));
|
|
2512
|
+
}
|
|
2513
|
+
|
|
2514
|
+
.group.default .group-\[\.default\]\:color-text-inverse {
|
|
2515
|
+
color: hsl(var(--color-text-inverse));
|
|
2516
|
+
}
|
|
2517
|
+
|
|
2518
|
+
.group.secondary .group-\[\.secondary\]\:color-bg-secondary {
|
|
2519
|
+
background-color: hsl(var(--color-bg-secondary));
|
|
2520
|
+
}
|
|
2521
|
+
|
|
2522
|
+
.group.danger .group-\[\.danger\]\:color-bg-danger-light {
|
|
2523
|
+
background-color: hsl(var(--color-bg-danger-light));
|
|
2524
|
+
}
|
|
2525
|
+
|
|
2526
|
+
.group.success .group-\[\.success\]\:color-bg-success-light {
|
|
2527
|
+
background-color: hsl(var(--color-bg-success-light));
|
|
2528
|
+
}
|
|
2529
|
+
|
|
2530
|
+
.group.default .group-\[\.default\]\:color-bg-default-inverse {
|
|
2531
|
+
background-color: hsl(var(--color-bg-default-inverse));
|
|
2532
|
+
}
|
|
2533
|
+
|
|
2534
|
+
.group.default .group-\[\.default\]\:color-border-default {
|
|
2535
|
+
border-color: hsl(var(--color-border-default));
|
|
2536
|
+
}
|
|
2537
|
+
|
|
2538
|
+
.group.secondary .group-\[\.secondary\]\:color-border-hover {
|
|
2539
|
+
border-color: hsl(var(--color-border-hover));
|
|
2540
|
+
}
|
|
2541
|
+
|
|
2542
|
+
.group.success .group-\[\.success\]\:color-border-hover {
|
|
2543
|
+
border-color: hsl(var(--color-border-hover));
|
|
2544
|
+
}
|
|
2545
|
+
|
|
2546
|
+
.group.danger .group-\[\.danger\]\:color-border-danger {
|
|
2547
|
+
border-color: hsl(var(--color-border-danger));
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
.group.secondary .group-\[\.secondary\]\:hover\:color-text-default:hover {
|
|
2551
|
+
color: hsl(var(--color-text-default));
|
|
2552
|
+
}
|
|
2553
|
+
|
|
2554
|
+
.group.danger .group-\[\.danger\]\:hover\:color-text-danger:hover {
|
|
2555
|
+
color: hsl(var(--color-text-danger));
|
|
2556
|
+
}
|
|
2557
|
+
|
|
2558
|
+
.group.success .group-\[\.success\]\:hover\:color-text-success:hover {
|
|
2559
|
+
color: hsl(var(--color-text-success));
|
|
2560
|
+
}
|
|
2561
|
+
|
|
2562
|
+
.group.default .group-\[\.default\]\:hover\:color-text-inverse:hover {
|
|
2563
|
+
color: hsl(var(--color-text-inverse));
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
.group.secondary .group-\[\.secondary\]\:hover\:color-bg-secondary:hover {
|
|
2567
|
+
background-color: hsl(var(--color-bg-secondary));
|
|
2568
|
+
}
|
|
2569
|
+
|
|
2570
|
+
.group.danger .group-\[\.danger\]\:hover\:color-bg-danger-light:hover {
|
|
2571
|
+
background-color: hsl(var(--color-bg-danger-light));
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2574
|
+
.group.success .group-\[\.success\]\:hover\:color-bg-success-light:hover {
|
|
2575
|
+
background-color: hsl(var(--color-bg-success-light));
|
|
2576
|
+
}
|
|
2577
|
+
|
|
2578
|
+
.group.default .group-\[\.default\]\:hover\:color-bg-default-inverse:hover {
|
|
2579
|
+
background-color: hsl(var(--color-bg-default-inverse));
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2421
2582
|
.aria-selected\:color-text-default[aria-selected="true"] {
|
|
2422
2583
|
color: hsl(var(--color-text-default));
|
|
2423
2584
|
}
|
|
@@ -2511,41 +2672,6 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2511
2672
|
background-color: transparent;
|
|
2512
2673
|
}
|
|
2513
2674
|
|
|
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
2675
|
.checked\:border-0:checked {
|
|
2550
2676
|
border-width: 0px;
|
|
2551
2677
|
}
|
|
@@ -2579,6 +2705,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2579
2705
|
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
2706
|
}
|
|
2581
2707
|
|
|
2708
|
+
.focus\:opacity-100:focus {
|
|
2709
|
+
opacity: 1;
|
|
2710
|
+
}
|
|
2711
|
+
|
|
2582
2712
|
.focus\:shadow-none:focus {
|
|
2583
2713
|
--tw-shadow: 0 0 #0000;
|
|
2584
2714
|
--tw-shadow-colored: 0 0 #0000;
|
|
@@ -2621,6 +2751,12 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2621
2751
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2622
2752
|
}
|
|
2623
2753
|
|
|
2754
|
+
.focus-visible\:ring-2:focus-visible {
|
|
2755
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2756
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2757
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2758
|
+
}
|
|
2759
|
+
|
|
2624
2760
|
.focus-visible\:ring-focused:focus-visible {
|
|
2625
2761
|
--tw-ring-color: hsl(var(--focused));
|
|
2626
2762
|
}
|
|
@@ -2653,6 +2789,11 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2653
2789
|
opacity: 1;
|
|
2654
2790
|
}
|
|
2655
2791
|
|
|
2792
|
+
.group:hover .group-hover\:brightness-95 {
|
|
2793
|
+
--tw-brightness: brightness(.95);
|
|
2794
|
+
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);
|
|
2795
|
+
}
|
|
2796
|
+
|
|
2656
2797
|
.peer:checked ~ .peer-checked\:block {
|
|
2657
2798
|
display: block;
|
|
2658
2799
|
}
|
|
@@ -2699,6 +2840,36 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2699
2840
|
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
2841
|
}
|
|
2701
2842
|
|
|
2843
|
+
.data-\[swipe\=cancel\]\:translate-x-0[data-swipe=cancel] {
|
|
2844
|
+
--tw-translate-x: 0px;
|
|
2845
|
+
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));
|
|
2846
|
+
}
|
|
2847
|
+
|
|
2848
|
+
.data-\[swipe\=cancel\]\:translate-y-0[data-swipe=cancel] {
|
|
2849
|
+
--tw-translate-y: 0px;
|
|
2850
|
+
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));
|
|
2851
|
+
}
|
|
2852
|
+
|
|
2853
|
+
.data-\[swipe\=end\]\:translate-x-\[var\(--radix-toast-swipe-end-x\)\][data-swipe=end] {
|
|
2854
|
+
--tw-translate-x: var(--radix-toast-swipe-end-x);
|
|
2855
|
+
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));
|
|
2856
|
+
}
|
|
2857
|
+
|
|
2858
|
+
.data-\[swipe\=end\]\:translate-y-\[var\(--radix-toast-swipe-end-y\)\][data-swipe=end] {
|
|
2859
|
+
--tw-translate-y: var(--radix-toast-swipe-end-y);
|
|
2860
|
+
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));
|
|
2861
|
+
}
|
|
2862
|
+
|
|
2863
|
+
.data-\[swipe\=move\]\:translate-x-\[var\(--radix-toast-swipe-move-x\)\][data-swipe=move] {
|
|
2864
|
+
--tw-translate-x: var(--radix-toast-swipe-move-x);
|
|
2865
|
+
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));
|
|
2866
|
+
}
|
|
2867
|
+
|
|
2868
|
+
.data-\[swipe\=move\]\:translate-y-\[var\(--radix-toast-swipe-move-y\)\][data-swipe=move] {
|
|
2869
|
+
--tw-translate-y: var(--radix-toast-swipe-move-y);
|
|
2870
|
+
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));
|
|
2871
|
+
}
|
|
2872
|
+
|
|
2702
2873
|
@keyframes accordion-up {
|
|
2703
2874
|
|
|
2704
2875
|
from {
|
|
@@ -2745,6 +2916,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2745
2916
|
opacity: 0.5;
|
|
2746
2917
|
}
|
|
2747
2918
|
|
|
2919
|
+
.data-\[swipe\=move\]\:transition-none[data-swipe=move] {
|
|
2920
|
+
transition-property: none;
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2748
2923
|
.data-\[state\=closed\]\:duration-300[data-state=closed] {
|
|
2749
2924
|
transition-duration: 300ms;
|
|
2750
2925
|
}
|
|
@@ -2773,10 +2948,24 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2773
2948
|
--tw-exit-translate-y: initial;
|
|
2774
2949
|
}
|
|
2775
2950
|
|
|
2951
|
+
.data-\[swipe\=end\]\:animate-out[data-swipe=end] {
|
|
2952
|
+
animation-name: exit;
|
|
2953
|
+
animation-duration: 150ms;
|
|
2954
|
+
--tw-exit-opacity: initial;
|
|
2955
|
+
--tw-exit-scale: initial;
|
|
2956
|
+
--tw-exit-rotate: initial;
|
|
2957
|
+
--tw-exit-translate-x: initial;
|
|
2958
|
+
--tw-exit-translate-y: initial;
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2776
2961
|
.data-\[state\=closed\]\:fade-out-0[data-state=closed] {
|
|
2777
2962
|
--tw-exit-opacity: 0;
|
|
2778
2963
|
}
|
|
2779
2964
|
|
|
2965
|
+
.data-\[state\=closed\]\:fade-out-80[data-state=closed] {
|
|
2966
|
+
--tw-exit-opacity: 0.8;
|
|
2967
|
+
}
|
|
2968
|
+
|
|
2780
2969
|
.data-\[state\=open\]\:fade-in-0[data-state=open] {
|
|
2781
2970
|
--tw-enter-opacity: 0;
|
|
2782
2971
|
}
|
|
@@ -2809,6 +2998,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2809
2998
|
--tw-exit-translate-y: 100%;
|
|
2810
2999
|
}
|
|
2811
3000
|
|
|
3001
|
+
.data-\[state\=closed\]\:slide-out-to-bottom-full[data-state=closed] {
|
|
3002
|
+
--tw-exit-translate-y: 100%;
|
|
3003
|
+
}
|
|
3004
|
+
|
|
2812
3005
|
.data-\[state\=closed\]\:slide-out-to-left[data-state=closed] {
|
|
2813
3006
|
--tw-exit-translate-x: -100%;
|
|
2814
3007
|
}
|
|
@@ -2817,10 +3010,18 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2817
3010
|
--tw-exit-translate-x: -50%;
|
|
2818
3011
|
}
|
|
2819
3012
|
|
|
3013
|
+
.data-\[state\=closed\]\:slide-out-to-left-full[data-state=closed] {
|
|
3014
|
+
--tw-exit-translate-x: -100%;
|
|
3015
|
+
}
|
|
3016
|
+
|
|
2820
3017
|
.data-\[state\=closed\]\:slide-out-to-right[data-state=closed] {
|
|
2821
3018
|
--tw-exit-translate-x: 100%;
|
|
2822
3019
|
}
|
|
2823
3020
|
|
|
3021
|
+
.data-\[state\=closed\]\:slide-out-to-right-full[data-state=closed] {
|
|
3022
|
+
--tw-exit-translate-x: 100%;
|
|
3023
|
+
}
|
|
3024
|
+
|
|
2824
3025
|
.data-\[state\=closed\]\:slide-out-to-top[data-state=closed] {
|
|
2825
3026
|
--tw-exit-translate-y: -100%;
|
|
2826
3027
|
}
|
|
@@ -2829,10 +3030,18 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2829
3030
|
--tw-exit-translate-y: -48%;
|
|
2830
3031
|
}
|
|
2831
3032
|
|
|
3033
|
+
.data-\[state\=closed\]\:slide-out-to-top-full[data-state=closed] {
|
|
3034
|
+
--tw-exit-translate-y: -100%;
|
|
3035
|
+
}
|
|
3036
|
+
|
|
2832
3037
|
.data-\[state\=open\]\:slide-in-from-bottom[data-state=open] {
|
|
2833
3038
|
--tw-enter-translate-y: 100%;
|
|
2834
3039
|
}
|
|
2835
3040
|
|
|
3041
|
+
.data-\[state\=open\]\:slide-in-from-bottom-full[data-state=open] {
|
|
3042
|
+
--tw-enter-translate-y: 100%;
|
|
3043
|
+
}
|
|
3044
|
+
|
|
2836
3045
|
.data-\[state\=open\]\:slide-in-from-left[data-state=open] {
|
|
2837
3046
|
--tw-enter-translate-x: -100%;
|
|
2838
3047
|
}
|
|
@@ -2853,6 +3062,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2853
3062
|
--tw-enter-translate-y: -48%;
|
|
2854
3063
|
}
|
|
2855
3064
|
|
|
3065
|
+
.data-\[state\=open\]\:slide-in-from-top-full[data-state=open] {
|
|
3066
|
+
--tw-enter-translate-y: -100%;
|
|
3067
|
+
}
|
|
3068
|
+
|
|
2856
3069
|
.data-\[state\=closed\]\:duration-300[data-state=closed] {
|
|
2857
3070
|
animation-duration: 300ms;
|
|
2858
3071
|
}
|
|
@@ -2880,6 +3093,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2880
3093
|
flex-direction: row;
|
|
2881
3094
|
}
|
|
2882
3095
|
|
|
3096
|
+
.sm\:flex-col {
|
|
3097
|
+
flex-direction: column;
|
|
3098
|
+
}
|
|
3099
|
+
|
|
2883
3100
|
.sm\:justify-end {
|
|
2884
3101
|
justify-content: flex-end;
|
|
2885
3102
|
}
|
|
@@ -2913,6 +3130,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2913
3130
|
width: auto;
|
|
2914
3131
|
}
|
|
2915
3132
|
|
|
3133
|
+
.md\:max-w-\[420px\] {
|
|
3134
|
+
max-width: 420px;
|
|
3135
|
+
}
|
|
3136
|
+
|
|
2916
3137
|
.md\:grid-cols-2 {
|
|
2917
3138
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2918
3139
|
}
|
|
@@ -2940,6 +3161,10 @@ textarea:is(:-webkit-autofill, :autofill) {
|
|
|
2940
3161
|
|
|
2941
3162
|
@media (min-width: 1024px) {
|
|
2942
3163
|
|
|
3164
|
+
.lg\:\!mt-0 {
|
|
3165
|
+
margin-top: 0px !important;
|
|
3166
|
+
}
|
|
3167
|
+
|
|
2943
3168
|
.lg\:mb-1 {
|
|
2944
3169
|
margin-bottom: 0.25rem;
|
|
2945
3170
|
}
|