@process.co/ui 0.0.7 → 0.0.9
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/css/ui.css +444 -0
- package/dist/components/fields/index.cjs +270 -20
- package/dist/components/fields/index.cjs.map +1 -1
- package/dist/components/fields/index.d.cts +1 -1
- package/dist/components/fields/index.d.ts +1 -1
- package/dist/components/fields/index.js +259 -21
- package/dist/components/fields/index.js.map +1 -1
- package/dist/{index-_mVyhd0I.d.cts → index-nu_JyZnb.d.cts} +193 -13
- package/dist/{index-_mVyhd0I.d.ts → index-nu_JyZnb.d.ts} +193 -13
- package/dist/index.cjs +519 -53
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +31 -2
- package/dist/index.d.ts +31 -2
- package/dist/index.js +499 -52
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/css/ui.css
CHANGED
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
--uii-font-weight-semibold: 600;
|
|
18
18
|
--uii-font-weight-bold: 700;
|
|
19
19
|
--uii-tracking-wide: 0.025em;
|
|
20
|
+
--uii-tracking-widest: 0.1em;
|
|
20
21
|
--uii-radius-xs: 0.125rem;
|
|
21
22
|
--uii-default-transition-duration: 150ms;
|
|
22
23
|
--uii-default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -202,9 +203,24 @@
|
|
|
202
203
|
.uii\:right-1\.5 {
|
|
203
204
|
right: calc(var(--uii-spacing) * 1.5);
|
|
204
205
|
}
|
|
206
|
+
.uii\:right-2 {
|
|
207
|
+
right: calc(var(--uii-spacing) * 2);
|
|
208
|
+
}
|
|
209
|
+
.uii\:left-2 {
|
|
210
|
+
left: calc(var(--uii-spacing) * 2);
|
|
211
|
+
}
|
|
212
|
+
.uii\:z-50 {
|
|
213
|
+
z-index: 50;
|
|
214
|
+
}
|
|
215
|
+
.uii\:-mx-1 {
|
|
216
|
+
margin-inline: calc(var(--uii-spacing) * -1);
|
|
217
|
+
}
|
|
205
218
|
.uii\:mx-1 {
|
|
206
219
|
margin-inline: calc(var(--uii-spacing) * 1);
|
|
207
220
|
}
|
|
221
|
+
.uii\:my-1 {
|
|
222
|
+
margin-block: calc(var(--uii-spacing) * 1);
|
|
223
|
+
}
|
|
208
224
|
.uii\:my-\[6px\] {
|
|
209
225
|
margin-block: 6px;
|
|
210
226
|
}
|
|
@@ -1062,21 +1078,45 @@
|
|
|
1062
1078
|
.uii\:ml-2 {
|
|
1063
1079
|
margin-left: calc(var(--uii-spacing) * 2);
|
|
1064
1080
|
}
|
|
1081
|
+
.uii\:ml-auto {
|
|
1082
|
+
margin-left: auto;
|
|
1083
|
+
}
|
|
1065
1084
|
.uii\:flex {
|
|
1066
1085
|
display: flex;
|
|
1067
1086
|
}
|
|
1068
1087
|
.uii\:inline-flex {
|
|
1069
1088
|
display: inline-flex;
|
|
1070
1089
|
}
|
|
1090
|
+
.uii\:size-2 {
|
|
1091
|
+
width: calc(var(--uii-spacing) * 2);
|
|
1092
|
+
height: calc(var(--uii-spacing) * 2);
|
|
1093
|
+
}
|
|
1094
|
+
.uii\:size-3\.5 {
|
|
1095
|
+
width: calc(var(--uii-spacing) * 3.5);
|
|
1096
|
+
height: calc(var(--uii-spacing) * 3.5);
|
|
1097
|
+
}
|
|
1098
|
+
.uii\:size-4 {
|
|
1099
|
+
width: calc(var(--uii-spacing) * 4);
|
|
1100
|
+
height: calc(var(--uii-spacing) * 4);
|
|
1101
|
+
}
|
|
1071
1102
|
.uii\:h-9 {
|
|
1072
1103
|
height: calc(var(--uii-spacing) * 9);
|
|
1073
1104
|
}
|
|
1105
|
+
.uii\:h-\[var\(--radix-select-trigger-height\)\] {
|
|
1106
|
+
height: var(--radix-select-trigger-height);
|
|
1107
|
+
}
|
|
1074
1108
|
.uii\:h-full {
|
|
1075
1109
|
height: 100%;
|
|
1076
1110
|
}
|
|
1111
|
+
.uii\:h-px {
|
|
1112
|
+
height: 1px;
|
|
1113
|
+
}
|
|
1077
1114
|
.uii\:max-h-64 {
|
|
1078
1115
|
max-height: calc(var(--uii-spacing) * 64);
|
|
1079
1116
|
}
|
|
1117
|
+
.uii\:max-h-96 {
|
|
1118
|
+
max-height: calc(var(--uii-spacing) * 96);
|
|
1119
|
+
}
|
|
1080
1120
|
.uii\:min-h-\[1\.5rem\] {
|
|
1081
1121
|
min-height: 1.5rem;
|
|
1082
1122
|
}
|
|
@@ -1089,18 +1129,30 @@
|
|
|
1089
1129
|
.uii\:min-w-0 {
|
|
1090
1130
|
min-width: calc(var(--uii-spacing) * 0);
|
|
1091
1131
|
}
|
|
1132
|
+
.uii\:min-w-\[8rem\] {
|
|
1133
|
+
min-width: 8rem;
|
|
1134
|
+
}
|
|
1135
|
+
.uii\:min-w-\[var\(--radix-select-trigger-width\)\] {
|
|
1136
|
+
min-width: var(--radix-select-trigger-width);
|
|
1137
|
+
}
|
|
1092
1138
|
.uii\:flex-1 {
|
|
1093
1139
|
flex: 1;
|
|
1094
1140
|
}
|
|
1095
1141
|
.uii\:animate-spin {
|
|
1096
1142
|
animation: spin var(--default-animation-duration, 1s) var(--default-animation-timing-function, linear) var(--default-animation-delay, 0s) infinite;
|
|
1097
1143
|
}
|
|
1144
|
+
.uii\:cursor-default {
|
|
1145
|
+
cursor: default;
|
|
1146
|
+
}
|
|
1098
1147
|
.uii\:cursor-not-allowed {
|
|
1099
1148
|
cursor: not-allowed;
|
|
1100
1149
|
}
|
|
1101
1150
|
.uii\:cursor-pointer {
|
|
1102
1151
|
cursor: pointer;
|
|
1103
1152
|
}
|
|
1153
|
+
.uii\:scroll-my-1 {
|
|
1154
|
+
scroll-margin-block: calc(var(--uii-spacing) * 1);
|
|
1155
|
+
}
|
|
1104
1156
|
.uii\:flex-wrap {
|
|
1105
1157
|
flex-wrap: wrap;
|
|
1106
1158
|
}
|
|
@@ -1151,6 +1203,9 @@
|
|
|
1151
1203
|
.uii\:overflow-auto {
|
|
1152
1204
|
overflow: auto;
|
|
1153
1205
|
}
|
|
1206
|
+
.uii\:overflow-hidden {
|
|
1207
|
+
overflow: hidden;
|
|
1208
|
+
}
|
|
1154
1209
|
.uii\:rounded {
|
|
1155
1210
|
border-radius: 0.25rem;
|
|
1156
1211
|
}
|
|
@@ -1167,6 +1222,10 @@
|
|
|
1167
1222
|
border-style: var(--tw-border-style);
|
|
1168
1223
|
border-width: 1px;
|
|
1169
1224
|
}
|
|
1225
|
+
.uii\:border-t {
|
|
1226
|
+
border-top-style: var(--tw-border-style);
|
|
1227
|
+
border-top-width: 1px;
|
|
1228
|
+
}
|
|
1170
1229
|
.uii\:border-b {
|
|
1171
1230
|
border-bottom-style: var(--tw-border-style);
|
|
1172
1231
|
border-bottom-width: 1px;
|
|
@@ -1229,6 +1288,9 @@
|
|
|
1229
1288
|
.uii\:bg-blue-100 {
|
|
1230
1289
|
background-color: oklch(93.2% 0.032 255.585);
|
|
1231
1290
|
}
|
|
1291
|
+
.uii\:bg-border {
|
|
1292
|
+
background-color: var(--border);
|
|
1293
|
+
}
|
|
1232
1294
|
.uii\:bg-cyan-100 {
|
|
1233
1295
|
background-color: oklch(95.6% 0.045 203.388);
|
|
1234
1296
|
}
|
|
@@ -1262,6 +1324,9 @@
|
|
|
1262
1324
|
.uii\:bg-pink-100 {
|
|
1263
1325
|
background-color: oklch(94.8% 0.028 342.258);
|
|
1264
1326
|
}
|
|
1327
|
+
.uii\:bg-popover {
|
|
1328
|
+
background-color: var(--popover);
|
|
1329
|
+
}
|
|
1265
1330
|
.uii\:bg-purple-50 {
|
|
1266
1331
|
background-color: oklch(97.7% 0.014 308.299);
|
|
1267
1332
|
}
|
|
@@ -1283,6 +1348,9 @@
|
|
|
1283
1348
|
.uii\:bg-yellow-100 {
|
|
1284
1349
|
background-color: oklch(97.3% 0.071 103.193);
|
|
1285
1350
|
}
|
|
1351
|
+
.uii\:fill-current {
|
|
1352
|
+
fill: currentcolor;
|
|
1353
|
+
}
|
|
1286
1354
|
.uii\:p-1 {
|
|
1287
1355
|
padding: calc(var(--uii-spacing) * 1);
|
|
1288
1356
|
}
|
|
@@ -1313,12 +1381,24 @@
|
|
|
1313
1381
|
.uii\:py-1\.5 {
|
|
1314
1382
|
padding-block: calc(var(--uii-spacing) * 1.5);
|
|
1315
1383
|
}
|
|
1384
|
+
.uii\:py-2 {
|
|
1385
|
+
padding-block: calc(var(--uii-spacing) * 2);
|
|
1386
|
+
}
|
|
1316
1387
|
.uii\:pr-2 {
|
|
1317
1388
|
padding-right: calc(var(--uii-spacing) * 2);
|
|
1318
1389
|
}
|
|
1390
|
+
.uii\:pr-8 {
|
|
1391
|
+
padding-right: calc(var(--uii-spacing) * 8);
|
|
1392
|
+
}
|
|
1319
1393
|
.uii\:pr-30 {
|
|
1320
1394
|
padding-right: calc(var(--uii-spacing) * 30);
|
|
1321
1395
|
}
|
|
1396
|
+
.uii\:pl-2 {
|
|
1397
|
+
padding-left: calc(var(--uii-spacing) * 2);
|
|
1398
|
+
}
|
|
1399
|
+
.uii\:pl-8 {
|
|
1400
|
+
padding-left: calc(var(--uii-spacing) * 8);
|
|
1401
|
+
}
|
|
1322
1402
|
.uii\:font-mono {
|
|
1323
1403
|
font-family: var(--uii-font-mono);
|
|
1324
1404
|
}
|
|
@@ -1364,6 +1444,13 @@
|
|
|
1364
1444
|
--tw-tracking: var(--uii-tracking-wide);
|
|
1365
1445
|
letter-spacing: var(--uii-tracking-wide);
|
|
1366
1446
|
}
|
|
1447
|
+
.uii\:tracking-widest {
|
|
1448
|
+
--tw-tracking: var(--uii-tracking-widest);
|
|
1449
|
+
letter-spacing: var(--uii-tracking-widest);
|
|
1450
|
+
}
|
|
1451
|
+
.uii\:whitespace-nowrap {
|
|
1452
|
+
white-space: nowrap;
|
|
1453
|
+
}
|
|
1367
1454
|
.uii\:text-amber-600 {
|
|
1368
1455
|
color: oklch(66.6% 0.179 58.318);
|
|
1369
1456
|
}
|
|
@@ -1415,6 +1502,9 @@
|
|
|
1415
1502
|
.uii\:text-pink-600 {
|
|
1416
1503
|
color: oklch(59.2% 0.249 0.584);
|
|
1417
1504
|
}
|
|
1505
|
+
.uii\:text-popover-foreground {
|
|
1506
|
+
color: var(--popover-foreground);
|
|
1507
|
+
}
|
|
1418
1508
|
.uii\:text-purple-600 {
|
|
1419
1509
|
color: oklch(55.8% 0.288 302.321);
|
|
1420
1510
|
}
|
|
@@ -1445,6 +1535,14 @@
|
|
|
1445
1535
|
.uii\:opacity-50 {
|
|
1446
1536
|
opacity: 50%;
|
|
1447
1537
|
}
|
|
1538
|
+
.uii\:shadow-lg {
|
|
1539
|
+
--tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1540
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1541
|
+
}
|
|
1542
|
+
.uii\:shadow-md {
|
|
1543
|
+
--tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
|
|
1544
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
1545
|
+
}
|
|
1448
1546
|
.uii\:shadow-xs {
|
|
1449
1547
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
1450
1548
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
@@ -1459,6 +1557,14 @@
|
|
|
1459
1557
|
--tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
|
|
1460
1558
|
}
|
|
1461
1559
|
}
|
|
1560
|
+
.uii\:outline-hidden {
|
|
1561
|
+
--tw-outline-style: none;
|
|
1562
|
+
outline-style: none;
|
|
1563
|
+
@media (forced-colors: active) {
|
|
1564
|
+
outline: 2px solid transparent;
|
|
1565
|
+
outline-offset: 2px;
|
|
1566
|
+
}
|
|
1567
|
+
}
|
|
1462
1568
|
.uii\:transition-\[color\,box-shadow\] {
|
|
1463
1569
|
transition-property: color,box-shadow;
|
|
1464
1570
|
transition-timing-function: var(--tw-ease, var(--uii-default-transition-timing-function));
|
|
@@ -1473,6 +1579,16 @@
|
|
|
1473
1579
|
--tw-outline-style: none;
|
|
1474
1580
|
outline-style: none;
|
|
1475
1581
|
}
|
|
1582
|
+
.uii\:select-none {
|
|
1583
|
+
-webkit-user-select: none;
|
|
1584
|
+
user-select: none;
|
|
1585
|
+
}
|
|
1586
|
+
.uii\:slide-in-from-right-6 {
|
|
1587
|
+
--tw-enter-translate-x: m;
|
|
1588
|
+
}
|
|
1589
|
+
.uii\:slide-in-from-right-6 {
|
|
1590
|
+
--tw-enter-translate-x: m;
|
|
1591
|
+
}
|
|
1476
1592
|
.uii\:selection\:bg-primary {
|
|
1477
1593
|
& *::selection {
|
|
1478
1594
|
background-color: var(--primary);
|
|
@@ -1542,6 +1658,16 @@
|
|
|
1542
1658
|
}
|
|
1543
1659
|
}
|
|
1544
1660
|
}
|
|
1661
|
+
.uii\:focus\:bg-accent {
|
|
1662
|
+
&:focus {
|
|
1663
|
+
background-color: var(--accent);
|
|
1664
|
+
}
|
|
1665
|
+
}
|
|
1666
|
+
.uii\:focus\:text-accent-foreground {
|
|
1667
|
+
&:focus {
|
|
1668
|
+
color: var(--accent-foreground);
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1545
1671
|
.uii\:focus-visible\:border-ring {
|
|
1546
1672
|
&:focus-visible {
|
|
1547
1673
|
border-color: var(--ring);
|
|
@@ -1589,6 +1715,237 @@
|
|
|
1589
1715
|
}
|
|
1590
1716
|
}
|
|
1591
1717
|
}
|
|
1718
|
+
.uii\:data-\[disabled\]\:pointer-events-none {
|
|
1719
|
+
&[data-disabled] {
|
|
1720
|
+
pointer-events: none;
|
|
1721
|
+
}
|
|
1722
|
+
}
|
|
1723
|
+
.uii\:data-\[disabled\]\:opacity-50 {
|
|
1724
|
+
&[data-disabled] {
|
|
1725
|
+
opacity: 50%;
|
|
1726
|
+
}
|
|
1727
|
+
}
|
|
1728
|
+
.uii\:data-\[inset\]\:pl-8 {
|
|
1729
|
+
&[data-inset] {
|
|
1730
|
+
padding-left: calc(var(--uii-spacing) * 8);
|
|
1731
|
+
}
|
|
1732
|
+
}
|
|
1733
|
+
.uii\:data-\[placeholder\]\:text-muted-foreground {
|
|
1734
|
+
&[data-placeholder] {
|
|
1735
|
+
color: var(--muted-foreground);
|
|
1736
|
+
}
|
|
1737
|
+
}
|
|
1738
|
+
.uii\:data-\[side\=bottom\]\:translate-y-1 {
|
|
1739
|
+
&[data-side="bottom"] {
|
|
1740
|
+
--tw-translate-y: calc(var(--uii-spacing) * 1);
|
|
1741
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
.uii\:data-\[side\=bottom\]\:slide-in-from-top-2 {
|
|
1745
|
+
&[data-side="bottom"] {
|
|
1746
|
+
--tw-enter-translate-y: -2;
|
|
1747
|
+
}
|
|
1748
|
+
}
|
|
1749
|
+
.uii\:data-\[side\=bottom\]\:slide-in-from-top-2 {
|
|
1750
|
+
&[data-side="bottom"] {
|
|
1751
|
+
--tw-enter-translate-y: -2;
|
|
1752
|
+
}
|
|
1753
|
+
}
|
|
1754
|
+
.uii\:data-\[side\=left\]\:-translate-x-1 {
|
|
1755
|
+
&[data-side="left"] {
|
|
1756
|
+
--tw-translate-x: calc(var(--uii-spacing) * -1);
|
|
1757
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1758
|
+
}
|
|
1759
|
+
}
|
|
1760
|
+
.uii\:data-\[side\=left\]\:slide-in-from-right-2 {
|
|
1761
|
+
&[data-side="left"] {
|
|
1762
|
+
--tw-enter-translate-x: 2;
|
|
1763
|
+
}
|
|
1764
|
+
}
|
|
1765
|
+
.uii\:data-\[side\=left\]\:slide-in-from-right-2 {
|
|
1766
|
+
&[data-side="left"] {
|
|
1767
|
+
--tw-enter-translate-x: 2;
|
|
1768
|
+
}
|
|
1769
|
+
}
|
|
1770
|
+
.uii\:data-\[side\=right\]\:translate-x-1 {
|
|
1771
|
+
&[data-side="right"] {
|
|
1772
|
+
--tw-translate-x: calc(var(--uii-spacing) * 1);
|
|
1773
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1774
|
+
}
|
|
1775
|
+
}
|
|
1776
|
+
.uii\:data-\[side\=right\]\:slide-in-from-left-2 {
|
|
1777
|
+
&[data-side="right"] {
|
|
1778
|
+
--tw-enter-translate-x: -2;
|
|
1779
|
+
}
|
|
1780
|
+
}
|
|
1781
|
+
.uii\:data-\[side\=right\]\:slide-in-from-left-2 {
|
|
1782
|
+
&[data-side="right"] {
|
|
1783
|
+
--tw-enter-translate-x: -2;
|
|
1784
|
+
}
|
|
1785
|
+
}
|
|
1786
|
+
.uii\:data-\[side\=top\]\:-translate-y-1 {
|
|
1787
|
+
&[data-side="top"] {
|
|
1788
|
+
--tw-translate-y: calc(var(--uii-spacing) * -1);
|
|
1789
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1790
|
+
}
|
|
1791
|
+
}
|
|
1792
|
+
.uii\:data-\[side\=top\]\:slide-in-from-bottom-2 {
|
|
1793
|
+
&[data-side="top"] {
|
|
1794
|
+
--tw-enter-translate-y: 2;
|
|
1795
|
+
}
|
|
1796
|
+
}
|
|
1797
|
+
.uii\:data-\[side\=top\]\:slide-in-from-bottom-2 {
|
|
1798
|
+
&[data-side="top"] {
|
|
1799
|
+
--tw-enter-translate-y: 2;
|
|
1800
|
+
}
|
|
1801
|
+
}
|
|
1802
|
+
.uii\:\*\:data-\[slot\=select-value\]\:line-clamp-1 {
|
|
1803
|
+
:is(& > *) {
|
|
1804
|
+
&[data-slot="select-value"] {
|
|
1805
|
+
overflow: hidden;
|
|
1806
|
+
display: -webkit-box;
|
|
1807
|
+
-webkit-box-orient: vertical;
|
|
1808
|
+
-webkit-line-clamp: 1;
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
}
|
|
1812
|
+
.uii\:\*\:data-\[slot\=select-value\]\:flex {
|
|
1813
|
+
:is(& > *) {
|
|
1814
|
+
&[data-slot="select-value"] {
|
|
1815
|
+
display: flex;
|
|
1816
|
+
}
|
|
1817
|
+
}
|
|
1818
|
+
}
|
|
1819
|
+
.uii\:\*\:data-\[slot\=select-value\]\:items-center {
|
|
1820
|
+
:is(& > *) {
|
|
1821
|
+
&[data-slot="select-value"] {
|
|
1822
|
+
align-items: center;
|
|
1823
|
+
}
|
|
1824
|
+
}
|
|
1825
|
+
}
|
|
1826
|
+
.uii\:\*\:data-\[slot\=select-value\]\:gap-2 {
|
|
1827
|
+
:is(& > *) {
|
|
1828
|
+
&[data-slot="select-value"] {
|
|
1829
|
+
gap: calc(var(--uii-spacing) * 2);
|
|
1830
|
+
}
|
|
1831
|
+
}
|
|
1832
|
+
}
|
|
1833
|
+
.uii\:data-\[state\=closed\]\:animate-out {
|
|
1834
|
+
&[data-state="closed"] {
|
|
1835
|
+
animation-name: exit;
|
|
1836
|
+
animation-duration: 150ms;
|
|
1837
|
+
--tw-exit-opacity: initial;
|
|
1838
|
+
--tw-exit-scale: initial;
|
|
1839
|
+
--tw-exit-rotate: initial;
|
|
1840
|
+
--tw-exit-translate-x: initial;
|
|
1841
|
+
--tw-exit-translate-y: initial;
|
|
1842
|
+
}
|
|
1843
|
+
}
|
|
1844
|
+
.uii\:data-\[state\=closed\]\:animate-out {
|
|
1845
|
+
&[data-state="closed"] {
|
|
1846
|
+
animation-name: exit;
|
|
1847
|
+
animation-duration: 150ms;
|
|
1848
|
+
--tw-exit-opacity: initial;
|
|
1849
|
+
--tw-exit-scale: initial;
|
|
1850
|
+
--tw-exit-rotate: initial;
|
|
1851
|
+
--tw-exit-translate-x: initial;
|
|
1852
|
+
--tw-exit-translate-y: initial;
|
|
1853
|
+
}
|
|
1854
|
+
}
|
|
1855
|
+
.uii\:data-\[state\=closed\]\:fade-out-0 {
|
|
1856
|
+
&[data-state="closed"] {
|
|
1857
|
+
--tw-exit-opacity: 0;
|
|
1858
|
+
}
|
|
1859
|
+
}
|
|
1860
|
+
.uii\:data-\[state\=closed\]\:fade-out-0 {
|
|
1861
|
+
&[data-state="closed"] {
|
|
1862
|
+
--tw-exit-opacity: 0;
|
|
1863
|
+
}
|
|
1864
|
+
}
|
|
1865
|
+
.uii\:data-\[state\=closed\]\:zoom-out-95 {
|
|
1866
|
+
&[data-state="closed"] {
|
|
1867
|
+
--tw-exit-scale: .95;
|
|
1868
|
+
}
|
|
1869
|
+
}
|
|
1870
|
+
.uii\:data-\[state\=closed\]\:zoom-out-95 {
|
|
1871
|
+
&[data-state="closed"] {
|
|
1872
|
+
--tw-exit-scale: .95;
|
|
1873
|
+
}
|
|
1874
|
+
}
|
|
1875
|
+
.uii\:data-\[state\=open\]\:bg-accent {
|
|
1876
|
+
&[data-state="open"] {
|
|
1877
|
+
background-color: var(--accent);
|
|
1878
|
+
}
|
|
1879
|
+
}
|
|
1880
|
+
.uii\:data-\[state\=open\]\:text-accent-foreground {
|
|
1881
|
+
&[data-state="open"] {
|
|
1882
|
+
color: var(--accent-foreground);
|
|
1883
|
+
}
|
|
1884
|
+
}
|
|
1885
|
+
.uii\:data-\[state\=open\]\:animate-in {
|
|
1886
|
+
&[data-state="open"] {
|
|
1887
|
+
animation-name: enter;
|
|
1888
|
+
animation-duration: 150ms;
|
|
1889
|
+
--tw-enter-opacity: initial;
|
|
1890
|
+
--tw-enter-scale: initial;
|
|
1891
|
+
--tw-enter-rotate: initial;
|
|
1892
|
+
--tw-enter-translate-x: initial;
|
|
1893
|
+
--tw-enter-translate-y: initial;
|
|
1894
|
+
}
|
|
1895
|
+
}
|
|
1896
|
+
.uii\:data-\[state\=open\]\:animate-in {
|
|
1897
|
+
&[data-state="open"] {
|
|
1898
|
+
animation-name: enter;
|
|
1899
|
+
animation-duration: 150ms;
|
|
1900
|
+
--tw-enter-opacity: initial;
|
|
1901
|
+
--tw-enter-scale: initial;
|
|
1902
|
+
--tw-enter-rotate: initial;
|
|
1903
|
+
--tw-enter-translate-x: initial;
|
|
1904
|
+
--tw-enter-translate-y: initial;
|
|
1905
|
+
}
|
|
1906
|
+
}
|
|
1907
|
+
.uii\:data-\[state\=open\]\:fade-in-0 {
|
|
1908
|
+
&[data-state="open"] {
|
|
1909
|
+
--tw-enter-opacity: 0;
|
|
1910
|
+
}
|
|
1911
|
+
}
|
|
1912
|
+
.uii\:data-\[state\=open\]\:fade-in-0 {
|
|
1913
|
+
&[data-state="open"] {
|
|
1914
|
+
--tw-enter-opacity: 0;
|
|
1915
|
+
}
|
|
1916
|
+
}
|
|
1917
|
+
.uii\:data-\[state\=open\]\:zoom-in-95 {
|
|
1918
|
+
&[data-state="open"] {
|
|
1919
|
+
--tw-enter-scale: .95;
|
|
1920
|
+
}
|
|
1921
|
+
}
|
|
1922
|
+
.uii\:data-\[state\=open\]\:zoom-in-95 {
|
|
1923
|
+
&[data-state="open"] {
|
|
1924
|
+
--tw-enter-scale: .95;
|
|
1925
|
+
}
|
|
1926
|
+
}
|
|
1927
|
+
.uii\:data-\[variant\=destructive\]\:text-destructive-foreground {
|
|
1928
|
+
&[data-variant="destructive"] {
|
|
1929
|
+
color: var(--destructive-foreground);
|
|
1930
|
+
}
|
|
1931
|
+
}
|
|
1932
|
+
.uii\:data-\[variant\=destructive\]\:focus\:bg-destructive\/10 {
|
|
1933
|
+
&[data-variant="destructive"] {
|
|
1934
|
+
&:focus {
|
|
1935
|
+
background-color: var(--destructive);
|
|
1936
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1937
|
+
background-color: color-mix(in oklab, var(--destructive) 10%, transparent);
|
|
1938
|
+
}
|
|
1939
|
+
}
|
|
1940
|
+
}
|
|
1941
|
+
}
|
|
1942
|
+
.uii\:data-\[variant\=destructive\]\:focus\:text-destructive-foreground {
|
|
1943
|
+
&[data-variant="destructive"] {
|
|
1944
|
+
&:focus {
|
|
1945
|
+
color: var(--destructive-foreground);
|
|
1946
|
+
}
|
|
1947
|
+
}
|
|
1948
|
+
}
|
|
1592
1949
|
.uii\:md\:text-sm {
|
|
1593
1950
|
@media (width >= 48rem) {
|
|
1594
1951
|
font-size: var(--uii-text-sm);
|
|
@@ -1605,6 +1962,75 @@
|
|
|
1605
1962
|
}
|
|
1606
1963
|
}
|
|
1607
1964
|
}
|
|
1965
|
+
.uii\:dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/40 {
|
|
1966
|
+
&:is(.dark *) {
|
|
1967
|
+
&[data-variant="destructive"] {
|
|
1968
|
+
&:focus {
|
|
1969
|
+
background-color: var(--destructive);
|
|
1970
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1971
|
+
background-color: color-mix(in oklab, var(--destructive) 40%, transparent);
|
|
1972
|
+
}
|
|
1973
|
+
}
|
|
1974
|
+
}
|
|
1975
|
+
}
|
|
1976
|
+
}
|
|
1977
|
+
.uii\:\[\&_svg\]\:pointer-events-none {
|
|
1978
|
+
& svg {
|
|
1979
|
+
pointer-events: none;
|
|
1980
|
+
}
|
|
1981
|
+
}
|
|
1982
|
+
.uii\:\[\&_svg\]\:shrink-0 {
|
|
1983
|
+
& svg {
|
|
1984
|
+
flex-shrink: 0;
|
|
1985
|
+
}
|
|
1986
|
+
}
|
|
1987
|
+
.uii\:\[\&_svg\:not\(\[class\*\=size-\]\)\]\:size-4 {
|
|
1988
|
+
& svg:not([class*=size-]) {
|
|
1989
|
+
width: calc(var(--uii-spacing) * 4);
|
|
1990
|
+
height: calc(var(--uii-spacing) * 4);
|
|
1991
|
+
}
|
|
1992
|
+
}
|
|
1993
|
+
.uii\:\[\&_svg\:not\(\[class\*\=text-\]\)\]\:text-muted-foreground {
|
|
1994
|
+
& svg:not([class*=text-]) {
|
|
1995
|
+
color: var(--muted-foreground);
|
|
1996
|
+
}
|
|
1997
|
+
}
|
|
1998
|
+
.uii\:\*\:\[span\]\:last\:flex {
|
|
1999
|
+
:is(& > *) {
|
|
2000
|
+
&:is(span) {
|
|
2001
|
+
&:last-child {
|
|
2002
|
+
display: flex;
|
|
2003
|
+
}
|
|
2004
|
+
}
|
|
2005
|
+
}
|
|
2006
|
+
}
|
|
2007
|
+
.uii\:\*\:\[span\]\:last\:items-center {
|
|
2008
|
+
:is(& > *) {
|
|
2009
|
+
&:is(span) {
|
|
2010
|
+
&:last-child {
|
|
2011
|
+
align-items: center;
|
|
2012
|
+
}
|
|
2013
|
+
}
|
|
2014
|
+
}
|
|
2015
|
+
}
|
|
2016
|
+
.uii\:\*\:\[span\]\:last\:gap-2 {
|
|
2017
|
+
:is(& > *) {
|
|
2018
|
+
&:is(span) {
|
|
2019
|
+
&:last-child {
|
|
2020
|
+
gap: calc(var(--uii-spacing) * 2);
|
|
2021
|
+
}
|
|
2022
|
+
}
|
|
2023
|
+
}
|
|
2024
|
+
}
|
|
2025
|
+
.uii\:data-\[variant\=destructive\]\:\*\:\[svg\]\:\!text-destructive-foreground {
|
|
2026
|
+
&[data-variant="destructive"] {
|
|
2027
|
+
:is(& > *) {
|
|
2028
|
+
&:is(svg) {
|
|
2029
|
+
color: var(--destructive-foreground) !important;
|
|
2030
|
+
}
|
|
2031
|
+
}
|
|
2032
|
+
}
|
|
2033
|
+
}
|
|
1608
2034
|
}
|
|
1609
2035
|
@layer utilities {
|
|
1610
2036
|
.scroll-hide {
|
|
@@ -2046,6 +2472,21 @@ body {
|
|
|
2046
2472
|
inherits: false;
|
|
2047
2473
|
initial-value: 0 0 #0000;
|
|
2048
2474
|
}
|
|
2475
|
+
@property --tw-translate-x {
|
|
2476
|
+
syntax: "*";
|
|
2477
|
+
inherits: false;
|
|
2478
|
+
initial-value: 0;
|
|
2479
|
+
}
|
|
2480
|
+
@property --tw-translate-y {
|
|
2481
|
+
syntax: "*";
|
|
2482
|
+
inherits: false;
|
|
2483
|
+
initial-value: 0;
|
|
2484
|
+
}
|
|
2485
|
+
@property --tw-translate-z {
|
|
2486
|
+
syntax: "*";
|
|
2487
|
+
inherits: false;
|
|
2488
|
+
initial-value: 0;
|
|
2489
|
+
}
|
|
2049
2490
|
@keyframes spin {
|
|
2050
2491
|
to {
|
|
2051
2492
|
transform: rotate(360deg);
|
|
@@ -2073,6 +2514,9 @@ body {
|
|
|
2073
2514
|
--tw-ring-offset-width: 0px;
|
|
2074
2515
|
--tw-ring-offset-color: #fff;
|
|
2075
2516
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
2517
|
+
--tw-translate-x: 0;
|
|
2518
|
+
--tw-translate-y: 0;
|
|
2519
|
+
--tw-translate-z: 0;
|
|
2076
2520
|
}
|
|
2077
2521
|
}
|
|
2078
2522
|
}
|