@code-coaching/vuetiful 0.12.0 → 0.13.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/style.css +1 -1
- package/dist/styles/all.css +280 -51
- package/dist/types/components/atoms/VRadio/VRadioDescription.vue.d.ts +8 -0
- package/dist/types/components/atoms/VRadio/VRadioGroup.vue.d.ts +55 -0
- package/dist/types/components/atoms/VRadio/VRadioItem.vue.d.ts +12 -0
- package/dist/types/components/atoms/VRadio/VRadioLabel.vue.d.ts +14 -0
- package/dist/types/components/atoms/index.d.ts +5 -1
- package/dist/types/components/index.d.ts +2 -3
- package/dist/vuetiful.es.mjs +666 -111
- package/dist/vuetiful.umd.js +14 -11
- package/package.json +2 -1
- package/src/components/atoms/VRadio/VRadioDescription.vue +11 -0
- package/src/components/atoms/VRadio/VRadioGroup.vue +60 -0
- package/src/components/atoms/VRadio/VRadioItem.vue +26 -0
- package/src/components/atoms/VRadio/VRadioLabel.vue +16 -0
- package/src/components/atoms/index.ts +6 -3
- package/src/components/index.ts +2 -4
- package/src/components/atoms/VRadioGroup.vue +0 -42
- package/src/components/atoms/VRadioItem.vue +0 -154
package/dist/styles/all.css
CHANGED
|
@@ -602,9 +602,9 @@ h4:not(.unstyled):is(:not(.prose *)) {
|
|
|
602
602
|
}
|
|
603
603
|
|
|
604
604
|
h5:not(.unstyled):is(:not(.prose *)) {
|
|
605
|
-
font-size: 1rem;
|
|
606
|
-
line-height: 1.5rem;
|
|
607
605
|
font-family: var(--theme-font-family-heading);
|
|
606
|
+
font-size:1rem;
|
|
607
|
+
line-height:1.5rem;
|
|
608
608
|
}
|
|
609
609
|
|
|
610
610
|
@media (min-width: 768px) {
|
|
@@ -631,8 +631,8 @@ h6:not(.unstyled):is(:not(.prose *)) {
|
|
|
631
631
|
|
|
632
632
|
p:not(.unstyled):is(:not(.prose *)) {
|
|
633
633
|
/* NOTE: do not hardcode a text color style here. It makes color overrides difficult. */
|
|
634
|
-
font-size:
|
|
635
|
-
line-height:
|
|
634
|
+
font-size:1rem;
|
|
635
|
+
line-height:1.5rem;
|
|
636
636
|
}
|
|
637
637
|
|
|
638
638
|
a:not(.unstyled):not(.permalink):is(:not(.prose *)):not(.btn):not(.btn-icon):not(.app-bar a):not(
|
|
@@ -674,7 +674,10 @@ blockquote:not(.unstyled):is(:not(.prose *)) {
|
|
|
674
674
|
}
|
|
675
675
|
|
|
676
676
|
blockquote:not(.unstyled):is(:not(.prose *)){
|
|
677
|
-
padding-
|
|
677
|
+
padding-right:1rem;
|
|
678
|
+
padding-left:1rem;
|
|
679
|
+
font-size:1rem;
|
|
680
|
+
line-height:1.5rem
|
|
678
681
|
}
|
|
679
682
|
|
|
680
683
|
.dark blockquote:not(.unstyled):is(:not(.prose *)){
|
|
@@ -729,11 +732,11 @@ pre:not(.unstyled):not(.code-block pre):is(:not(.prose *)) {
|
|
|
729
732
|
overflow-x: auto;
|
|
730
733
|
background-color: rgb(23 23 23 / 0.9);
|
|
731
734
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
732
|
-
font-size: 1rem;
|
|
733
|
-
line-height: 1.5rem;
|
|
734
735
|
white-space:pre-wrap;
|
|
735
736
|
background-color:#171717e6;
|
|
736
737
|
padding:1rem;
|
|
738
|
+
font-size:1rem;
|
|
739
|
+
line-height:1.5rem;
|
|
737
740
|
--tw-text-opacity: 1;
|
|
738
741
|
color:rgb(255 255 255 / var(--tw-text-opacity));
|
|
739
742
|
border-radius:var(--theme-rounded-container);
|
|
@@ -1081,6 +1084,23 @@ progress::-webkit-progress-value {
|
|
|
1081
1084
|
color: rgb(96 165 250 / var(--tw-text-opacity));
|
|
1082
1085
|
}
|
|
1083
1086
|
|
|
1087
|
+
.variant-filled {
|
|
1088
|
+
background-color: rgb(var(--color-surface-900));
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
.dark .variant-filled {
|
|
1092
|
+
background-color: rgb(var(--color-surface-50));
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
.variant-filled {
|
|
1096
|
+
color: rgb(var(--color-surface-50));
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
.dark .variant-filled {
|
|
1100
|
+
background-color:rgb(var(--color-surface-50));
|
|
1101
|
+
color:rgb(var(--color-surface-900));
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1084
1104
|
.variant-soft,.variant-soft-surface {
|
|
1085
1105
|
background-color: rgb(var(--color-surface-400) / 0.2);
|
|
1086
1106
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
|
|
@@ -1111,6 +1131,7 @@ progress::-webkit-progress-value {
|
|
|
1111
1131
|
|
|
1112
1132
|
.badge {
|
|
1113
1133
|
white-space: nowrap;
|
|
1134
|
+
display:inline-flex;
|
|
1114
1135
|
align-items:center;
|
|
1115
1136
|
justify-content:center;
|
|
1116
1137
|
font-weight: 600;
|
|
@@ -1118,8 +1139,8 @@ progress::-webkit-progress-value {
|
|
|
1118
1139
|
line-height:1rem;
|
|
1119
1140
|
padding-left: 0.5rem;
|
|
1120
1141
|
padding-right: 0.5rem;
|
|
1121
|
-
padding-top
|
|
1122
|
-
padding-bottom
|
|
1142
|
+
padding-top:.25rem;
|
|
1143
|
+
padding-bottom:.25rem;
|
|
1123
1144
|
border-radius:var(--theme-rounded-base);
|
|
1124
1145
|
}
|
|
1125
1146
|
|
|
@@ -1141,13 +1162,14 @@ progress::-webkit-progress-value {
|
|
|
1141
1162
|
padding-right: 1.25rem;
|
|
1142
1163
|
padding-top: 9px;
|
|
1143
1164
|
padding-bottom: 9px;
|
|
1144
|
-
font-size: 1rem;
|
|
1145
|
-
line-height: 1.5rem;
|
|
1146
1165
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1147
1166
|
transition-duration: 150ms;
|
|
1167
|
+
display:inline-flex;
|
|
1148
1168
|
align-items:center;
|
|
1149
1169
|
justify-content:center;
|
|
1150
1170
|
text-align:center;
|
|
1171
|
+
font-size:1rem;
|
|
1172
|
+
line-height:1.5rem;
|
|
1151
1173
|
transition-property:all;
|
|
1152
1174
|
transition-timing-function:cubic-bezier(.4,0,.2,1);
|
|
1153
1175
|
transition-duration:.15s;
|
|
@@ -1164,8 +1186,8 @@ progress::-webkit-progress-value {
|
|
|
1164
1186
|
padding-right: 1.25rem;
|
|
1165
1187
|
padding-top: 9px;
|
|
1166
1188
|
padding-bottom: 9px;
|
|
1167
|
-
font-size:
|
|
1168
|
-
line-height:
|
|
1189
|
+
font-size:1rem;
|
|
1190
|
+
line-height:1.5rem;
|
|
1169
1191
|
/* Core */
|
|
1170
1192
|
white-space: nowrap;
|
|
1171
1193
|
text-align:center;
|
|
@@ -1182,6 +1204,7 @@ progress::-webkit-progress-value {
|
|
|
1182
1204
|
}
|
|
1183
1205
|
|
|
1184
1206
|
.btn{
|
|
1207
|
+
display:inline-flex;
|
|
1185
1208
|
align-items:center;
|
|
1186
1209
|
justify-content:center
|
|
1187
1210
|
/* States */
|
|
@@ -1237,13 +1260,14 @@ progress::-webkit-progress-value {
|
|
|
1237
1260
|
padding-right: 1.25rem;
|
|
1238
1261
|
padding-top: 9px;
|
|
1239
1262
|
padding-bottom: 9px;
|
|
1240
|
-
font-size: 1rem;
|
|
1241
|
-
line-height: 1.5rem;
|
|
1242
1263
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1243
1264
|
transition-duration: 150ms;
|
|
1265
|
+
display:inline-flex;
|
|
1244
1266
|
align-items:center;
|
|
1245
1267
|
justify-content:center;
|
|
1246
1268
|
text-align:center;
|
|
1269
|
+
font-size:1rem;
|
|
1270
|
+
line-height:1.5rem;
|
|
1247
1271
|
transition-property:all;
|
|
1248
1272
|
transition-timing-function:cubic-bezier(.4,0,.2,1);
|
|
1249
1273
|
transition-duration:.15s;
|
|
@@ -1260,8 +1284,8 @@ progress::-webkit-progress-value {
|
|
|
1260
1284
|
padding-right: 1.25rem;
|
|
1261
1285
|
padding-top: 9px;
|
|
1262
1286
|
padding-bottom: 9px;
|
|
1263
|
-
font-size:
|
|
1264
|
-
line-height:
|
|
1287
|
+
font-size:1rem;
|
|
1288
|
+
line-height:1.5rem;
|
|
1265
1289
|
/* Core */
|
|
1266
1290
|
white-space: nowrap;
|
|
1267
1291
|
text-align:center;
|
|
@@ -1278,6 +1302,7 @@ progress::-webkit-progress-value {
|
|
|
1278
1302
|
}
|
|
1279
1303
|
|
|
1280
1304
|
.btn-icon{
|
|
1305
|
+
display:inline-flex;
|
|
1281
1306
|
align-items:center;
|
|
1282
1307
|
justify-content:center
|
|
1283
1308
|
/* States */
|
|
@@ -1324,13 +1349,14 @@ progress::-webkit-progress-value {
|
|
|
1324
1349
|
padding-right: 1.25rem;
|
|
1325
1350
|
padding-top: 9px;
|
|
1326
1351
|
padding-bottom: 9px;
|
|
1327
|
-
font-size: 1rem;
|
|
1328
|
-
line-height: 1.5rem;
|
|
1329
1352
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1330
1353
|
transition-duration: 150ms;
|
|
1354
|
+
display:inline-flex;
|
|
1331
1355
|
align-items:center;
|
|
1332
1356
|
justify-content:center;
|
|
1333
1357
|
text-align:center;
|
|
1358
|
+
font-size:1rem;
|
|
1359
|
+
line-height:1.5rem;
|
|
1334
1360
|
transition-property:all;
|
|
1335
1361
|
transition-timing-function:cubic-bezier(.4,0,.2,1);
|
|
1336
1362
|
transition-duration:.15s;
|
|
@@ -1347,8 +1373,8 @@ progress::-webkit-progress-value {
|
|
|
1347
1373
|
padding-right: 1.25rem;
|
|
1348
1374
|
padding-top: 9px;
|
|
1349
1375
|
padding-bottom: 9px;
|
|
1350
|
-
font-size:
|
|
1351
|
-
line-height:
|
|
1376
|
+
font-size:1rem;
|
|
1377
|
+
line-height:1.5rem;
|
|
1352
1378
|
/* Core */
|
|
1353
1379
|
white-space: nowrap;
|
|
1354
1380
|
text-align:center;
|
|
@@ -1365,6 +1391,7 @@ progress::-webkit-progress-value {
|
|
|
1365
1391
|
}
|
|
1366
1392
|
|
|
1367
1393
|
.btn-icon{
|
|
1394
|
+
display:inline-flex;
|
|
1368
1395
|
align-items:center;
|
|
1369
1396
|
justify-content:center
|
|
1370
1397
|
/* States */
|
|
@@ -1395,9 +1422,9 @@ progress::-webkit-progress-value {
|
|
|
1395
1422
|
|
|
1396
1423
|
.btn-icon {
|
|
1397
1424
|
width: 43px;
|
|
1398
|
-
font-size: 1rem;
|
|
1399
|
-
line-height: 1.5rem;
|
|
1400
1425
|
aspect-ratio:1 / 1;
|
|
1426
|
+
font-size:1rem;
|
|
1427
|
+
line-height:1.5rem;
|
|
1401
1428
|
border-radius: 9999px;
|
|
1402
1429
|
}
|
|
1403
1430
|
|
|
@@ -1424,6 +1451,7 @@ progress::-webkit-progress-value {
|
|
|
1424
1451
|
}
|
|
1425
1452
|
|
|
1426
1453
|
.chip{
|
|
1454
|
+
display:inline-flex;
|
|
1427
1455
|
align-items:center;
|
|
1428
1456
|
justify-content:center
|
|
1429
1457
|
}
|
|
@@ -1495,10 +1523,10 @@ progress::-webkit-progress-value {
|
|
|
1495
1523
|
white-space: nowrap;
|
|
1496
1524
|
display:flex;
|
|
1497
1525
|
align-items:center;
|
|
1498
|
-
padding-left: 1rem;
|
|
1499
|
-
padding-right: 1rem;
|
|
1500
1526
|
padding-top: 0.5rem;
|
|
1501
1527
|
padding-bottom: 0.5rem;
|
|
1528
|
+
padding-left:1rem;
|
|
1529
|
+
padding-right:1rem;
|
|
1502
1530
|
}
|
|
1503
1531
|
|
|
1504
1532
|
.list-nav a:hover,.list-nav button:hover,.list-option:hover {
|
|
@@ -1525,6 +1553,7 @@ progress::-webkit-progress-value {
|
|
|
1525
1553
|
|
|
1526
1554
|
.badge {
|
|
1527
1555
|
white-space: nowrap;
|
|
1556
|
+
display:inline-flex;
|
|
1528
1557
|
align-items:center;
|
|
1529
1558
|
justify-content:center;
|
|
1530
1559
|
/* Text */
|
|
@@ -1534,8 +1563,8 @@ progress::-webkit-progress-value {
|
|
|
1534
1563
|
/* Padding */
|
|
1535
1564
|
padding-left: 0.5rem;
|
|
1536
1565
|
padding-right: 0.5rem;
|
|
1537
|
-
padding-top
|
|
1538
|
-
padding-bottom
|
|
1566
|
+
padding-top:.25rem;
|
|
1567
|
+
padding-bottom:.25rem;
|
|
1539
1568
|
/* Theme: Rounded */
|
|
1540
1569
|
border-radius:var(--theme-rounded-base);
|
|
1541
1570
|
}
|
|
@@ -1586,13 +1615,14 @@ button:disabled:active {
|
|
|
1586
1615
|
padding-right: 1.25rem;
|
|
1587
1616
|
padding-top: 9px;
|
|
1588
1617
|
padding-bottom: 9px;
|
|
1589
|
-
font-size: 1rem;
|
|
1590
|
-
line-height: 1.5rem;
|
|
1591
1618
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1592
1619
|
transition-duration: 150ms;
|
|
1620
|
+
display:inline-flex;
|
|
1593
1621
|
align-items:center;
|
|
1594
1622
|
justify-content:center;
|
|
1595
1623
|
text-align:center;
|
|
1624
|
+
font-size:1rem;
|
|
1625
|
+
line-height:1.5rem;
|
|
1596
1626
|
transition-property:all;
|
|
1597
1627
|
transition-timing-function:cubic-bezier(.4,0,.2,1);
|
|
1598
1628
|
transition-duration:.15s;
|
|
@@ -1609,8 +1639,8 @@ button:disabled:active {
|
|
|
1609
1639
|
padding-right: 1.25rem;
|
|
1610
1640
|
padding-top: 9px;
|
|
1611
1641
|
padding-bottom: 9px;
|
|
1612
|
-
font-size:
|
|
1613
|
-
line-height:
|
|
1642
|
+
font-size:1rem;
|
|
1643
|
+
line-height:1.5rem;
|
|
1614
1644
|
/* Core */
|
|
1615
1645
|
white-space: nowrap;
|
|
1616
1646
|
text-align:center;
|
|
@@ -1627,6 +1657,7 @@ button:disabled:active {
|
|
|
1627
1657
|
}
|
|
1628
1658
|
|
|
1629
1659
|
.btn{
|
|
1660
|
+
display:inline-flex;
|
|
1630
1661
|
align-items:center;
|
|
1631
1662
|
justify-content:center
|
|
1632
1663
|
/* States */
|
|
@@ -1691,13 +1722,14 @@ button:disabled:active {
|
|
|
1691
1722
|
padding-right: 1.25rem;
|
|
1692
1723
|
padding-top: 9px;
|
|
1693
1724
|
padding-bottom: 9px;
|
|
1694
|
-
font-size: 1rem;
|
|
1695
|
-
line-height: 1.5rem;
|
|
1696
1725
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1697
1726
|
transition-duration: 150ms;
|
|
1727
|
+
display:inline-flex;
|
|
1698
1728
|
align-items:center;
|
|
1699
1729
|
justify-content:center;
|
|
1700
1730
|
text-align:center;
|
|
1731
|
+
font-size:1rem;
|
|
1732
|
+
line-height:1.5rem;
|
|
1701
1733
|
transition-property:all;
|
|
1702
1734
|
transition-timing-function:cubic-bezier(.4,0,.2,1);
|
|
1703
1735
|
transition-duration:.15s;
|
|
@@ -1714,8 +1746,8 @@ button:disabled:active {
|
|
|
1714
1746
|
padding-right: 1.25rem;
|
|
1715
1747
|
padding-top: 9px;
|
|
1716
1748
|
padding-bottom: 9px;
|
|
1717
|
-
font-size:
|
|
1718
|
-
line-height:
|
|
1749
|
+
font-size:1rem;
|
|
1750
|
+
line-height:1.5rem;
|
|
1719
1751
|
/* Core */
|
|
1720
1752
|
white-space: nowrap;
|
|
1721
1753
|
text-align:center;
|
|
@@ -1732,6 +1764,7 @@ button:disabled:active {
|
|
|
1732
1764
|
}
|
|
1733
1765
|
|
|
1734
1766
|
.btn-icon{
|
|
1767
|
+
display:inline-flex;
|
|
1735
1768
|
align-items:center;
|
|
1736
1769
|
justify-content:center
|
|
1737
1770
|
/* States */
|
|
@@ -1778,13 +1811,14 @@ button:disabled:active {
|
|
|
1778
1811
|
padding-right: 1.25rem;
|
|
1779
1812
|
padding-top: 9px;
|
|
1780
1813
|
padding-bottom: 9px;
|
|
1781
|
-
font-size: 1rem;
|
|
1782
|
-
line-height: 1.5rem;
|
|
1783
1814
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1784
1815
|
transition-duration: 150ms;
|
|
1816
|
+
display:inline-flex;
|
|
1785
1817
|
align-items:center;
|
|
1786
1818
|
justify-content:center;
|
|
1787
1819
|
text-align:center;
|
|
1820
|
+
font-size:1rem;
|
|
1821
|
+
line-height:1.5rem;
|
|
1788
1822
|
transition-property:all;
|
|
1789
1823
|
transition-timing-function:cubic-bezier(.4,0,.2,1);
|
|
1790
1824
|
transition-duration:.15s;
|
|
@@ -1801,8 +1835,8 @@ button:disabled:active {
|
|
|
1801
1835
|
padding-right: 1.25rem;
|
|
1802
1836
|
padding-top: 9px;
|
|
1803
1837
|
padding-bottom: 9px;
|
|
1804
|
-
font-size:
|
|
1805
|
-
line-height:
|
|
1838
|
+
font-size:1rem;
|
|
1839
|
+
line-height:1.5rem;
|
|
1806
1840
|
/* Core */
|
|
1807
1841
|
white-space: nowrap;
|
|
1808
1842
|
text-align:center;
|
|
@@ -1819,6 +1853,7 @@ button:disabled:active {
|
|
|
1819
1853
|
}
|
|
1820
1854
|
|
|
1821
1855
|
.btn-icon{
|
|
1856
|
+
display:inline-flex;
|
|
1822
1857
|
align-items:center;
|
|
1823
1858
|
justify-content:center
|
|
1824
1859
|
/* States */
|
|
@@ -1850,9 +1885,9 @@ button:disabled:active {
|
|
|
1850
1885
|
.btn-icon {
|
|
1851
1886
|
/* Size (match base) */
|
|
1852
1887
|
width: 43px;
|
|
1853
|
-
font-size: 1rem;
|
|
1854
|
-
line-height: 1.5rem;
|
|
1855
1888
|
aspect-ratio:1 / 1;
|
|
1889
|
+
font-size:1rem;
|
|
1890
|
+
line-height:1.5rem;
|
|
1856
1891
|
/* Rounded */
|
|
1857
1892
|
border-radius: 9999px;
|
|
1858
1893
|
}
|
|
@@ -1896,13 +1931,14 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
1896
1931
|
padding-right: 1.25rem;
|
|
1897
1932
|
padding-top: 9px;
|
|
1898
1933
|
padding-bottom: 9px;
|
|
1899
|
-
font-size: 1rem;
|
|
1900
|
-
line-height: 1.5rem;
|
|
1901
1934
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1902
1935
|
transition-duration: 150ms;
|
|
1936
|
+
display:inline-flex;
|
|
1903
1937
|
align-items:center;
|
|
1904
1938
|
justify-content:center;
|
|
1905
1939
|
text-align:center;
|
|
1940
|
+
font-size:1rem;
|
|
1941
|
+
line-height:1.5rem;
|
|
1906
1942
|
transition-property:all;
|
|
1907
1943
|
transition-timing-function:cubic-bezier(.4,0,.2,1);
|
|
1908
1944
|
transition-duration:.15s;
|
|
@@ -1919,8 +1955,8 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
1919
1955
|
padding-right: 1.25rem;
|
|
1920
1956
|
padding-top: 9px;
|
|
1921
1957
|
padding-bottom: 9px;
|
|
1922
|
-
font-size:
|
|
1923
|
-
line-height:
|
|
1958
|
+
font-size:1rem;
|
|
1959
|
+
line-height:1.5rem;
|
|
1924
1960
|
/* Core */
|
|
1925
1961
|
white-space: nowrap;
|
|
1926
1962
|
text-align:center;
|
|
@@ -1937,6 +1973,7 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button > :not([hidde
|
|
|
1937
1973
|
}
|
|
1938
1974
|
|
|
1939
1975
|
input[type="file"]:not(.file-dropzone-input)::file-selector-button{
|
|
1976
|
+
display:inline-flex;
|
|
1940
1977
|
align-items:center;
|
|
1941
1978
|
justify-content:center
|
|
1942
1979
|
/* States */
|
|
@@ -1989,13 +2026,14 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
1989
2026
|
padding-right: 1.25rem;
|
|
1990
2027
|
padding-top: 9px;
|
|
1991
2028
|
padding-bottom: 9px;
|
|
1992
|
-
font-size: 1rem;
|
|
1993
|
-
line-height: 1.5rem;
|
|
1994
2029
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1995
2030
|
transition-duration: 150ms;
|
|
2031
|
+
display:inline-flex;
|
|
1996
2032
|
align-items:center;
|
|
1997
2033
|
justify-content:center;
|
|
1998
2034
|
text-align:center;
|
|
2035
|
+
font-size:1rem;
|
|
2036
|
+
line-height:1.5rem;
|
|
1999
2037
|
transition-property:all;
|
|
2000
2038
|
transition-timing-function:cubic-bezier(.4,0,.2,1);
|
|
2001
2039
|
transition-duration:.15s;
|
|
@@ -2012,8 +2050,8 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2012
2050
|
padding-right: 1.25rem;
|
|
2013
2051
|
padding-top: 9px;
|
|
2014
2052
|
padding-bottom: 9px;
|
|
2015
|
-
font-size:
|
|
2016
|
-
line-height:
|
|
2053
|
+
font-size:1rem;
|
|
2054
|
+
line-height:1.5rem;
|
|
2017
2055
|
/* Core */
|
|
2018
2056
|
white-space: nowrap;
|
|
2019
2057
|
text-align:center;
|
|
@@ -2030,6 +2068,7 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button > :not([hidde
|
|
|
2030
2068
|
}
|
|
2031
2069
|
|
|
2032
2070
|
input[type="file"]:not(.file-dropzone-input)::file-selector-button{
|
|
2071
|
+
display:inline-flex;
|
|
2033
2072
|
align-items:center;
|
|
2034
2073
|
justify-content:center
|
|
2035
2074
|
/* States */
|
|
@@ -2122,6 +2161,7 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2122
2161
|
}
|
|
2123
2162
|
|
|
2124
2163
|
.chip{
|
|
2164
|
+
display:inline-flex;
|
|
2125
2165
|
align-items:center;
|
|
2126
2166
|
justify-content:center
|
|
2127
2167
|
/* States */
|
|
@@ -2204,10 +2244,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2204
2244
|
display:flex;
|
|
2205
2245
|
align-items:center;
|
|
2206
2246
|
/* Padding */
|
|
2207
|
-
padding-left: 1rem;
|
|
2208
|
-
padding-right: 1rem;
|
|
2209
2247
|
padding-top: 0.5rem;
|
|
2210
2248
|
padding-bottom: 0.5rem;
|
|
2249
|
+
padding-left:1rem;
|
|
2250
|
+
padding-right:1rem;
|
|
2211
2251
|
/* Hover */
|
|
2212
2252
|
}
|
|
2213
2253
|
|
|
@@ -2275,6 +2315,23 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2275
2315
|
|
|
2276
2316
|
/* Filled */
|
|
2277
2317
|
|
|
2318
|
+
.variant-filled {
|
|
2319
|
+
background-color: rgb(var(--color-surface-900));
|
|
2320
|
+
}
|
|
2321
|
+
|
|
2322
|
+
.dark .variant-filled {
|
|
2323
|
+
background-color: rgb(var(--color-surface-50));
|
|
2324
|
+
}
|
|
2325
|
+
|
|
2326
|
+
.variant-filled {
|
|
2327
|
+
color: rgb(var(--color-surface-50));
|
|
2328
|
+
}
|
|
2329
|
+
|
|
2330
|
+
.dark .variant-filled {
|
|
2331
|
+
background-color:rgb(var(--color-surface-50));
|
|
2332
|
+
color:rgb(var(--color-surface-900));
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2278
2335
|
/* Ringed */
|
|
2279
2336
|
|
|
2280
2337
|
/* Ghost */
|
|
@@ -2346,6 +2403,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2346
2403
|
display: flex;
|
|
2347
2404
|
}
|
|
2348
2405
|
|
|
2406
|
+
.inline-flex {
|
|
2407
|
+
display: inline-flex;
|
|
2408
|
+
}
|
|
2409
|
+
|
|
2349
2410
|
.grid {
|
|
2350
2411
|
display: grid;
|
|
2351
2412
|
}
|
|
@@ -2425,6 +2486,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2425
2486
|
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));
|
|
2426
2487
|
}
|
|
2427
2488
|
|
|
2489
|
+
.cursor-not-allowed {
|
|
2490
|
+
cursor: not-allowed;
|
|
2491
|
+
}
|
|
2492
|
+
|
|
2428
2493
|
.cursor-pointer {
|
|
2429
2494
|
cursor: pointer;
|
|
2430
2495
|
}
|
|
@@ -2461,6 +2526,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2461
2526
|
gap: 0px;
|
|
2462
2527
|
}
|
|
2463
2528
|
|
|
2529
|
+
.gap-1 {
|
|
2530
|
+
gap: 0.25rem;
|
|
2531
|
+
}
|
|
2532
|
+
|
|
2464
2533
|
.gap-4 {
|
|
2465
2534
|
gap: 1rem;
|
|
2466
2535
|
}
|
|
@@ -2535,6 +2604,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2535
2604
|
background-color: rgb(var(--color-surface-900) / var(--tw-bg-opacity));
|
|
2536
2605
|
}
|
|
2537
2606
|
|
|
2607
|
+
.p-1 {
|
|
2608
|
+
padding: 0.25rem;
|
|
2609
|
+
}
|
|
2610
|
+
|
|
2538
2611
|
.p-2 {
|
|
2539
2612
|
padding: 0.5rem;
|
|
2540
2613
|
}
|
|
@@ -2543,6 +2616,16 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2543
2616
|
padding: 1rem;
|
|
2544
2617
|
}
|
|
2545
2618
|
|
|
2619
|
+
.px-4 {
|
|
2620
|
+
padding-left: 1rem;
|
|
2621
|
+
padding-right: 1rem;
|
|
2622
|
+
}
|
|
2623
|
+
|
|
2624
|
+
.py-1 {
|
|
2625
|
+
padding-top: 0.25rem;
|
|
2626
|
+
padding-bottom: 0.25rem;
|
|
2627
|
+
}
|
|
2628
|
+
|
|
2546
2629
|
.pb-0 {
|
|
2547
2630
|
padding-bottom: 0px;
|
|
2548
2631
|
}
|
|
@@ -2559,6 +2642,11 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2559
2642
|
text-align: center;
|
|
2560
2643
|
}
|
|
2561
2644
|
|
|
2645
|
+
.text-base {
|
|
2646
|
+
font-size: 1rem;
|
|
2647
|
+
line-height: 1.5rem;
|
|
2648
|
+
}
|
|
2649
|
+
|
|
2562
2650
|
.text-sm {
|
|
2563
2651
|
font-size: 0.875rem;
|
|
2564
2652
|
line-height: 1.25rem;
|
|
@@ -2610,6 +2698,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2610
2698
|
color: rgb(255 255 255 / 0.5);
|
|
2611
2699
|
}
|
|
2612
2700
|
|
|
2701
|
+
.opacity-50 {
|
|
2702
|
+
opacity: 0.5;
|
|
2703
|
+
}
|
|
2704
|
+
|
|
2613
2705
|
.shadow {
|
|
2614
2706
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
2615
2707
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
@@ -2952,6 +3044,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
2952
3044
|
background-color: rgb(var(--color-surface-800));
|
|
2953
3045
|
}
|
|
2954
3046
|
|
|
3047
|
+
.bg-surface-200-700-token {
|
|
3048
|
+
background-color: rgb(var(--color-surface-200));
|
|
3049
|
+
}
|
|
3050
|
+
|
|
2955
3051
|
.dark .bg-surface-200-700-token {
|
|
2956
3052
|
background-color: rgb(var(--color-surface-700));
|
|
2957
3053
|
}
|
|
@@ -3244,6 +3340,10 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
3244
3340
|
border-color: rgb(var(--color-surface-600));
|
|
3245
3341
|
}
|
|
3246
3342
|
|
|
3343
|
+
.border-surface-400-500-token {
|
|
3344
|
+
border-color: rgb(var(--color-surface-400));
|
|
3345
|
+
}
|
|
3346
|
+
|
|
3247
3347
|
.dark .border-surface-400-500-token {
|
|
3248
3348
|
border-color: rgb(var(--color-surface-500));
|
|
3249
3349
|
}
|
|
@@ -3868,6 +3968,82 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
3868
3968
|
--tw-ring-color: rgb(var(--color-surface-400) / 1);
|
|
3869
3969
|
}
|
|
3870
3970
|
|
|
3971
|
+
.hover\:variant-ghost:hover {
|
|
3972
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3973
|
+
--tw-ring-inset: inset;
|
|
3974
|
+
--tw-ring-opacity: 1;
|
|
3975
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
3976
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3977
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3978
|
+
box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
|
|
3979
|
+
}
|
|
3980
|
+
|
|
3981
|
+
:is(.dark .hover\:variant-ghost:hover) {
|
|
3982
|
+
--tw-ring-opacity: 1;
|
|
3983
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
3984
|
+
}
|
|
3985
|
+
|
|
3986
|
+
.hover\:variant-ghost:hover {
|
|
3987
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
3988
|
+
--tw-ring-inset: inset;
|
|
3989
|
+
--tw-ring-opacity: 1;
|
|
3990
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
3991
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
3992
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
3993
|
+
box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
|
|
3994
|
+
}
|
|
3995
|
+
|
|
3996
|
+
:is(.dark .hover\:variant-ghost:hover) {
|
|
3997
|
+
--tw-ring-opacity: 1;
|
|
3998
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
3999
|
+
}
|
|
4000
|
+
|
|
4001
|
+
.hover\:variant-ghost:hover {
|
|
4002
|
+
background-color: rgb(var(--color-surface-500) / 0.2);
|
|
4003
|
+
}
|
|
4004
|
+
|
|
4005
|
+
:is(.dark .hover\:variant-ghost:hover) {
|
|
4006
|
+
background-color: rgb(var(--color-surface-500) / 0.2);
|
|
4007
|
+
}
|
|
4008
|
+
|
|
4009
|
+
.hover\:variant-ghost:hover {
|
|
4010
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
4011
|
+
--tw-ring-inset: inset;
|
|
4012
|
+
--tw-ring-opacity: 1;
|
|
4013
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
4014
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
4015
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
4016
|
+
box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
|
|
4017
|
+
}
|
|
4018
|
+
|
|
4019
|
+
:is(.dark .hover\:variant-ghost:hover) {
|
|
4020
|
+
--tw-ring-opacity: 1;
|
|
4021
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
4022
|
+
}
|
|
4023
|
+
|
|
4024
|
+
.hover\:variant-ghost:hover {
|
|
4025
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
4026
|
+
--tw-ring-inset: inset;
|
|
4027
|
+
--tw-ring-opacity: 1;
|
|
4028
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
4029
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
4030
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
4031
|
+
box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000);
|
|
4032
|
+
}
|
|
4033
|
+
|
|
4034
|
+
:is(.dark .hover\:variant-ghost:hover) {
|
|
4035
|
+
--tw-ring-opacity: 1;
|
|
4036
|
+
--tw-ring-color: rgb(var(--color-surface-500) / var(--tw-ring-opacity));
|
|
4037
|
+
}
|
|
4038
|
+
|
|
4039
|
+
.hover\:variant-ghost:hover {
|
|
4040
|
+
background-color: rgb(var(--color-surface-500) / 0.2);
|
|
4041
|
+
}
|
|
4042
|
+
|
|
4043
|
+
:is(.dark .hover\:variant-ghost:hover) {
|
|
4044
|
+
background-color: rgb(var(--color-surface-500) / 0.2);
|
|
4045
|
+
}
|
|
4046
|
+
|
|
3871
4047
|
.hover\:cursor-pointer:hover {
|
|
3872
4048
|
cursor: pointer;
|
|
3873
4049
|
}
|
|
@@ -3886,6 +4062,11 @@ input[type="file"]:not(.file-dropzone-input)::file-selector-button {
|
|
|
3886
4062
|
background-color: rgb(var(--color-secondary-500) / 0.1);
|
|
3887
4063
|
}
|
|
3888
4064
|
|
|
4065
|
+
:is(.dark .dark\:text-surface-50) {
|
|
4066
|
+
--tw-text-opacity: 1;
|
|
4067
|
+
color: rgb(var(--color-surface-50) / var(--tw-text-opacity));
|
|
4068
|
+
}
|
|
4069
|
+
|
|
3889
4070
|
@media (min-width: 640px) {
|
|
3890
4071
|
.sm\:w-20 {
|
|
3891
4072
|
width: 5rem;
|
|
@@ -4466,6 +4647,10 @@ img,video{
|
|
|
4466
4647
|
display:flex
|
|
4467
4648
|
}
|
|
4468
4649
|
|
|
4650
|
+
.inline-flex{
|
|
4651
|
+
display:inline-flex
|
|
4652
|
+
}
|
|
4653
|
+
|
|
4469
4654
|
.grid{
|
|
4470
4655
|
display:grid
|
|
4471
4656
|
}
|
|
@@ -4545,6 +4730,10 @@ img,video{
|
|
|
4545
4730
|
transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
|
|
4546
4731
|
}
|
|
4547
4732
|
|
|
4733
|
+
.cursor-not-allowed{
|
|
4734
|
+
cursor:not-allowed
|
|
4735
|
+
}
|
|
4736
|
+
|
|
4548
4737
|
.cursor-pointer{
|
|
4549
4738
|
cursor:pointer
|
|
4550
4739
|
}
|
|
@@ -4581,6 +4770,10 @@ img,video{
|
|
|
4581
4770
|
gap:0px
|
|
4582
4771
|
}
|
|
4583
4772
|
|
|
4773
|
+
.gap-1{
|
|
4774
|
+
gap:.25rem
|
|
4775
|
+
}
|
|
4776
|
+
|
|
4584
4777
|
.gap-4{
|
|
4585
4778
|
gap:1rem
|
|
4586
4779
|
}
|
|
@@ -4655,6 +4848,10 @@ img,video{
|
|
|
4655
4848
|
background-color:rgb(var(--color-surface-900) / var(--tw-bg-opacity))
|
|
4656
4849
|
}
|
|
4657
4850
|
|
|
4851
|
+
.p-1{
|
|
4852
|
+
padding:.25rem
|
|
4853
|
+
}
|
|
4854
|
+
|
|
4658
4855
|
.p-2{
|
|
4659
4856
|
padding:.5rem
|
|
4660
4857
|
}
|
|
@@ -4663,6 +4860,16 @@ img,video{
|
|
|
4663
4860
|
padding:1rem
|
|
4664
4861
|
}
|
|
4665
4862
|
|
|
4863
|
+
.px-4{
|
|
4864
|
+
padding-left:1rem;
|
|
4865
|
+
padding-right:1rem
|
|
4866
|
+
}
|
|
4867
|
+
|
|
4868
|
+
.py-1{
|
|
4869
|
+
padding-top:.25rem;
|
|
4870
|
+
padding-bottom:.25rem
|
|
4871
|
+
}
|
|
4872
|
+
|
|
4666
4873
|
.pb-0{
|
|
4667
4874
|
padding-bottom:0
|
|
4668
4875
|
}
|
|
@@ -4679,6 +4886,11 @@ img,video{
|
|
|
4679
4886
|
text-align:center
|
|
4680
4887
|
}
|
|
4681
4888
|
|
|
4889
|
+
.text-base{
|
|
4890
|
+
font-size:1rem;
|
|
4891
|
+
line-height:1.5rem
|
|
4892
|
+
}
|
|
4893
|
+
|
|
4682
4894
|
.text-sm{
|
|
4683
4895
|
font-size:.875rem;
|
|
4684
4896
|
line-height:1.25rem
|
|
@@ -4730,6 +4942,10 @@ img,video{
|
|
|
4730
4942
|
color:#ffffff80
|
|
4731
4943
|
}
|
|
4732
4944
|
|
|
4945
|
+
.opacity-50{
|
|
4946
|
+
opacity:.5
|
|
4947
|
+
}
|
|
4948
|
+
|
|
4733
4949
|
.shadow{
|
|
4734
4950
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
|
|
4735
4951
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
@@ -5072,6 +5288,10 @@ img,video{
|
|
|
5072
5288
|
background-color:rgb(var(--color-surface-800))
|
|
5073
5289
|
}
|
|
5074
5290
|
|
|
5291
|
+
.bg-surface-200-700-token{
|
|
5292
|
+
background-color:rgb(var(--color-surface-200))
|
|
5293
|
+
}
|
|
5294
|
+
|
|
5075
5295
|
.dark .bg-surface-200-700-token{
|
|
5076
5296
|
background-color:rgb(var(--color-surface-700))
|
|
5077
5297
|
}
|
|
@@ -5364,6 +5584,10 @@ img,video{
|
|
|
5364
5584
|
border-color:rgb(var(--color-surface-600))
|
|
5365
5585
|
}
|
|
5366
5586
|
|
|
5587
|
+
.border-surface-400-500-token{
|
|
5588
|
+
border-color:rgb(var(--color-surface-400))
|
|
5589
|
+
}
|
|
5590
|
+
|
|
5367
5591
|
.dark .border-surface-400-500-token{
|
|
5368
5592
|
border-color:rgb(var(--color-surface-500))
|
|
5369
5593
|
}
|
|
@@ -6006,6 +6230,11 @@ img,video{
|
|
|
6006
6230
|
background-color:rgb(var(--color-secondary-500) / .1)
|
|
6007
6231
|
}
|
|
6008
6232
|
|
|
6233
|
+
:is(.dark .dark\:text-surface-50){
|
|
6234
|
+
--tw-text-opacity: 1;
|
|
6235
|
+
color:rgb(var(--color-surface-50) / var(--tw-text-opacity))
|
|
6236
|
+
}
|
|
6237
|
+
|
|
6009
6238
|
@media (min-width: 640px){
|
|
6010
6239
|
.sm\:w-20{
|
|
6011
6240
|
width:5rem
|