@code-coaching/vuetiful 0.1.4 → 0.3.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 +2 -2
- package/dist/styles/all.css +323 -52
- package/dist/types/components/atoms/VButton.test.d.ts +1 -0
- package/dist/types/components/atoms/VButton.vue.d.ts +6 -72
- package/dist/types/components/index.d.ts +2 -1
- package/dist/types/components/index.test.d.ts +1 -0
- package/dist/types/components/molecules/VRail.vue.d.ts +51 -0
- package/dist/types/components/molecules/VRailTile.vue.d.ts +55 -0
- package/dist/types/components/molecules/VShell.vue.d.ts +78 -0
- package/dist/types/components/molecules/index.d.ts +4 -0
- package/dist/types/directives/clipboard.test.d.ts +1 -0
- package/dist/types/directives/index.d.ts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.test.d.ts +1 -0
- package/dist/types/services/index.d.ts +2 -0
- package/dist/types/services/rail.service.d.ts +4 -0
- package/dist/types/utils/code-block/code-block.vue.d.ts +2 -2
- package/dist/types/utils/code-block/highlight.service.test.d.ts +1 -0
- package/dist/types/utils/dark-mode/dark-mode.service.test.d.ts +1 -0
- package/dist/types/utils/dark-mode/dark-mode.vue.d.ts +3 -3
- package/dist/types/utils/index.d.ts +3 -3
- package/dist/types/utils/index.test.d.ts +1 -0
- package/dist/types/utils/platform/platform.service.test.d.ts +1 -0
- package/dist/types/utils/theme/callback.test.d.ts +1 -0
- package/dist/types/utils/theme/remove.test.d.ts +1 -0
- package/dist/types/utils/theme/theme-switcher.vue.d.ts +3 -3
- package/dist/types/utils/theme/{theme.d.ts → theme.service.d.ts} +2 -1
- package/dist/types/utils/theme/theme.service.test.d.ts +1 -0
- package/dist/vuetiful.es.mjs +658 -499
- package/dist/vuetiful.umd.js +13 -20
- package/package.json +8 -2
- package/src/components/atoms/VButton.test.ts +27 -0
- package/src/components/atoms/VButton.vue +19 -73
- package/src/components/index.test.ts +10 -0
- package/src/components/index.ts +2 -1
- package/src/components/molecules/VRail.vue +46 -0
- package/src/components/molecules/VRailTile.vue +75 -0
- package/src/components/molecules/VShell.vue +71 -0
- package/src/components/molecules/index.ts +5 -0
- package/src/directives/clipboard.test.ts +26 -0
- package/src/directives/index.ts +2 -4
- package/src/index.test.ts +26 -0
- package/src/index.ts +1 -1
- package/src/services/index.ts +3 -0
- package/src/services/rail.service.ts +11 -0
- package/src/styles/all.css +9 -6
- package/src/styles/transitions/fade.css +14 -0
- package/src/styles/transitions/slide.css +83 -0
- package/src/styles/transitions.css +2 -0
- package/src/utils/code-block/code-block.vue +1 -1
- package/src/utils/code-block/highlight.service.test.ts +24 -0
- package/src/utils/dark-mode/dark-mode.service.test.ts +234 -0
- package/src/utils/dark-mode/{dark-mode.ts → dark-mode.service.ts} +5 -4
- package/src/utils/dark-mode/dark-mode.vue +1 -1
- package/src/utils/index.test.ts +11 -0
- package/src/utils/index.ts +3 -4
- package/src/utils/platform/platform.service.test.ts +19 -0
- package/src/utils/theme/callback.test.ts +24 -0
- package/src/utils/theme/remove.test.ts +25 -0
- package/src/utils/theme/theme.service.test.ts +160 -0
- package/src/utils/theme/{theme.ts → theme.service.ts} +6 -7
- package/dist/types/constants/MyConstants.d.ts +0 -1
- package/dist/types/constants/index.d.ts +0 -2
- package/src/constants/MyConstants.ts +0 -1
- package/src/constants/index.ts +0 -5
- /package/dist/types/utils/code-block/{highlight.d.ts → highlight.service.d.ts} +0 -0
- /package/dist/types/utils/dark-mode/{dark-mode.d.ts → dark-mode.service.d.ts} +0 -0
- /package/dist/types/utils/platform/{platform.d.ts → platform.service.d.ts} +0 -0
- /package/src/utils/code-block/{highlight.ts → highlight.service.ts} +0 -0
- /package/src/utils/platform/{platform.ts → platform.service.ts} +0 -0
package/dist/styles/all.css
CHANGED
|
@@ -681,9 +681,9 @@ blockquote:not(.unstyled):is(:not(.prose *)){
|
|
|
681
681
|
|
|
682
682
|
kbd:not(.unstyled):is(:not(.prose *)) {
|
|
683
683
|
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
684
|
-
font-weight: 700;
|
|
685
684
|
font-size:.875rem;
|
|
686
685
|
line-height:1.25rem;
|
|
686
|
+
font-weight:700;
|
|
687
687
|
border-radius: 0.25rem;
|
|
688
688
|
padding-left: 0.375rem;
|
|
689
689
|
padding-right: 0.375rem;
|
|
@@ -927,6 +927,18 @@ progress::-webkit-progress-value {
|
|
|
927
927
|
|
|
928
928
|
/* === Text Labeling === */
|
|
929
929
|
|
|
930
|
+
.label > :not([hidden]) ~ :not([hidden]) {
|
|
931
|
+
--tw-space-y-reverse: 0;
|
|
932
|
+
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
933
|
+
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
.label>:not([hidden])~:not([hidden]){
|
|
937
|
+
--tw-space-y-reverse: 0;
|
|
938
|
+
margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
939
|
+
margin-bottom:calc(.25rem * var(--tw-space-y-reverse))
|
|
940
|
+
}
|
|
941
|
+
|
|
930
942
|
/* === Core Styles === */
|
|
931
943
|
|
|
932
944
|
/* Base Inputs */
|
|
@@ -1264,6 +1276,14 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1264
1276
|
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
1265
1277
|
}
|
|
1266
1278
|
|
|
1279
|
+
.list>:not([hidden])~:not([hidden]),
|
|
1280
|
+
.list-dl>:not([hidden])~:not([hidden]),
|
|
1281
|
+
.list-nav ul>:not([hidden])~:not([hidden]){
|
|
1282
|
+
--tw-space-y-reverse: 0;
|
|
1283
|
+
margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1284
|
+
margin-bottom:calc(.25rem * var(--tw-space-y-reverse))
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1267
1287
|
/* === List Items (Children) === */
|
|
1268
1288
|
|
|
1269
1289
|
.list-nav a,
|
|
@@ -1382,10 +1402,18 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1382
1402
|
|
|
1383
1403
|
/* Glass */
|
|
1384
1404
|
|
|
1405
|
+
.fixed {
|
|
1406
|
+
position: fixed;
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1385
1409
|
.absolute {
|
|
1386
1410
|
position: absolute;
|
|
1387
1411
|
}
|
|
1388
1412
|
|
|
1413
|
+
.z-10 {
|
|
1414
|
+
z-index: 10;
|
|
1415
|
+
}
|
|
1416
|
+
|
|
1389
1417
|
.-m-4 {
|
|
1390
1418
|
margin: -1rem;
|
|
1391
1419
|
}
|
|
@@ -1394,6 +1422,10 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1394
1422
|
display: flex;
|
|
1395
1423
|
}
|
|
1396
1424
|
|
|
1425
|
+
.grid {
|
|
1426
|
+
display: grid;
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1397
1429
|
.aspect-square {
|
|
1398
1430
|
aspect-ratio: 1 / 1;
|
|
1399
1431
|
}
|
|
@@ -1402,11 +1434,6 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1402
1434
|
height: 1.5rem;
|
|
1403
1435
|
}
|
|
1404
1436
|
|
|
1405
|
-
.h-fit {
|
|
1406
|
-
height: -moz-fit-content;
|
|
1407
|
-
height: fit-content;
|
|
1408
|
-
}
|
|
1409
|
-
|
|
1410
1437
|
.h-full {
|
|
1411
1438
|
height: 100%;
|
|
1412
1439
|
}
|
|
@@ -1431,15 +1458,30 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1431
1458
|
width: 70%;
|
|
1432
1459
|
}
|
|
1433
1460
|
|
|
1434
|
-
.w
|
|
1435
|
-
width:
|
|
1436
|
-
|
|
1461
|
+
.w-\[70px\] {
|
|
1462
|
+
width: 70px;
|
|
1463
|
+
}
|
|
1464
|
+
|
|
1465
|
+
.w-auto {
|
|
1466
|
+
width: auto;
|
|
1437
1467
|
}
|
|
1438
1468
|
|
|
1439
1469
|
.w-full {
|
|
1440
1470
|
width: 100%;
|
|
1441
1471
|
}
|
|
1442
1472
|
|
|
1473
|
+
.flex-1 {
|
|
1474
|
+
flex: 1 1 0%;
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1477
|
+
.flex-auto {
|
|
1478
|
+
flex: 1 1 auto;
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
.flex-none {
|
|
1482
|
+
flex: none;
|
|
1483
|
+
}
|
|
1484
|
+
|
|
1443
1485
|
.translate-x-\[100\%\] {
|
|
1444
1486
|
--tw-translate-x: 100%;
|
|
1445
1487
|
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));
|
|
@@ -1455,10 +1497,22 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1455
1497
|
cursor: pointer;
|
|
1456
1498
|
}
|
|
1457
1499
|
|
|
1500
|
+
.grid-rows-\[auto_1fr_auto\] {
|
|
1501
|
+
grid-template-rows: auto 1fr auto;
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1458
1504
|
.flex-col {
|
|
1459
1505
|
flex-direction: column;
|
|
1460
1506
|
}
|
|
1461
1507
|
|
|
1508
|
+
.place-content-center {
|
|
1509
|
+
place-content: center;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
.place-items-center {
|
|
1513
|
+
place-items: center;
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1462
1516
|
.items-center {
|
|
1463
1517
|
align-items: center;
|
|
1464
1518
|
}
|
|
@@ -1471,10 +1525,26 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1471
1525
|
justify-content: space-between;
|
|
1472
1526
|
}
|
|
1473
1527
|
|
|
1528
|
+
.gap-0 {
|
|
1529
|
+
gap: 0px;
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1474
1532
|
.gap-4 {
|
|
1475
1533
|
gap: 1rem;
|
|
1476
1534
|
}
|
|
1477
1535
|
|
|
1536
|
+
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
|
|
1537
|
+
--tw-space-y-reverse: 0;
|
|
1538
|
+
margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1539
|
+
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1542
|
+
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
1543
|
+
--tw-space-y-reverse: 0;
|
|
1544
|
+
margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1545
|
+
margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1478
1548
|
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
|
|
1479
1549
|
--tw-space-y-reverse: 0;
|
|
1480
1550
|
margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1489,6 +1559,10 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1489
1559
|
overflow-y: auto;
|
|
1490
1560
|
}
|
|
1491
1561
|
|
|
1562
|
+
.overflow-x-hidden {
|
|
1563
|
+
overflow-x: hidden;
|
|
1564
|
+
}
|
|
1565
|
+
|
|
1492
1566
|
.whitespace-pre-wrap {
|
|
1493
1567
|
white-space: pre-wrap;
|
|
1494
1568
|
}
|
|
@@ -1510,11 +1584,6 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1510
1584
|
background-color: rgb(var(--color-primary-50) / var(--tw-bg-opacity));
|
|
1511
1585
|
}
|
|
1512
1586
|
|
|
1513
|
-
.bg-primary-900 {
|
|
1514
|
-
--tw-bg-opacity: 1;
|
|
1515
|
-
background-color: rgb(var(--color-primary-900) / var(--tw-bg-opacity));
|
|
1516
|
-
}
|
|
1517
|
-
|
|
1518
1587
|
.bg-surface-200 {
|
|
1519
1588
|
--tw-bg-opacity: 1;
|
|
1520
1589
|
background-color: rgb(var(--color-surface-200) / var(--tw-bg-opacity));
|
|
@@ -1564,6 +1633,10 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1564
1633
|
line-height: 1rem;
|
|
1565
1634
|
}
|
|
1566
1635
|
|
|
1636
|
+
.font-bold {
|
|
1637
|
+
font-weight: 700;
|
|
1638
|
+
}
|
|
1639
|
+
|
|
1567
1640
|
.uppercase {
|
|
1568
1641
|
text-transform: uppercase;
|
|
1569
1642
|
}
|
|
@@ -1577,11 +1650,6 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1577
1650
|
color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
|
|
1578
1651
|
}
|
|
1579
1652
|
|
|
1580
|
-
.text-primary-50 {
|
|
1581
|
-
--tw-text-opacity: 1;
|
|
1582
|
-
color: rgb(var(--color-primary-50) / var(--tw-text-opacity));
|
|
1583
|
-
}
|
|
1584
|
-
|
|
1585
1653
|
.text-primary-900 {
|
|
1586
1654
|
--tw-text-opacity: 1;
|
|
1587
1655
|
color: rgb(var(--color-primary-900) / var(--tw-text-opacity));
|
|
@@ -1630,10 +1698,6 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1630
1698
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1631
1699
|
}
|
|
1632
1700
|
|
|
1633
|
-
.ring-primary-500\/30 {
|
|
1634
|
-
--tw-ring-color: rgb(var(--color-primary-500) / 0.3);
|
|
1635
|
-
}
|
|
1636
|
-
|
|
1637
1701
|
.ring-surface-500\/30 {
|
|
1638
1702
|
--tw-ring-color: rgb(var(--color-surface-500) / 0.3);
|
|
1639
1703
|
}
|
|
@@ -1701,6 +1765,12 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1701
1765
|
background-color: rgb(var(--color-secondary-900) / 0.7);
|
|
1702
1766
|
}
|
|
1703
1767
|
|
|
1768
|
+
.bg-secondary-active-token {
|
|
1769
|
+
background-color: rgb(var(--color-secondary-500)) !important;
|
|
1770
|
+
color: rgb(var(--on-secondary));
|
|
1771
|
+
fill: rgb(var(--on-secondary));
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1704
1774
|
.dark .bg-secondary-50-900-token {
|
|
1705
1775
|
background-color: rgb(var(--color-secondary-900));
|
|
1706
1776
|
}
|
|
@@ -1961,6 +2031,10 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
1961
2031
|
background-color: rgb(var(--color-surface-400));
|
|
1962
2032
|
}
|
|
1963
2033
|
|
|
2034
|
+
.border-token {
|
|
2035
|
+
border-width: var(--theme-border-base);
|
|
2036
|
+
}
|
|
2037
|
+
|
|
1964
2038
|
.dark .border-primary-50-900-token {
|
|
1965
2039
|
border-color: rgb(var(--color-primary-900));
|
|
1966
2040
|
}
|
|
@@ -2839,6 +2913,16 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
2839
2913
|
color: rgb(var(--color-primary-900) / var(--tw-text-opacity));
|
|
2840
2914
|
}
|
|
2841
2915
|
|
|
2916
|
+
.hover\:bg-secondary-hover-token:hover:hover {
|
|
2917
|
+
background-color: rgb(var(--color-secondary-500) / 0.1);
|
|
2918
|
+
}
|
|
2919
|
+
|
|
2920
|
+
@media (min-width: 640px) {
|
|
2921
|
+
.sm\:w-20 {
|
|
2922
|
+
width: 5rem;
|
|
2923
|
+
}
|
|
2924
|
+
}
|
|
2925
|
+
|
|
2842
2926
|
@media (min-width: 1024px) {
|
|
2843
2927
|
.lg\:max-h-\[500px\] {
|
|
2844
2928
|
max-height: 500px;
|
|
@@ -2936,6 +3020,129 @@ input[type='file']:not(.file-dropzone-input)::file-selector-button {
|
|
|
2936
3020
|
|
|
2937
3021
|
/* A canned set of reusabled variant styles. */
|
|
2938
3022
|
|
|
3023
|
+
/* Imports all Transitions */
|
|
3024
|
+
|
|
3025
|
+
.fade-150-enter-active,
|
|
3026
|
+
.fade-150-leave-active {
|
|
3027
|
+
transition: opacity 150ms;
|
|
3028
|
+
}
|
|
3029
|
+
|
|
3030
|
+
.fade-300-enter-active,
|
|
3031
|
+
.fade-300-leave-active {
|
|
3032
|
+
transition: opacity 300ms;
|
|
3033
|
+
}
|
|
3034
|
+
|
|
3035
|
+
.fade-150-enter-from,
|
|
3036
|
+
.fade-150-leave-to,
|
|
3037
|
+
.fade-300-enter-from,
|
|
3038
|
+
.fade-300-leave-to {
|
|
3039
|
+
opacity: 0;
|
|
3040
|
+
}
|
|
3041
|
+
|
|
3042
|
+
.slide-left-150-enter-active {
|
|
3043
|
+
animation: slide-left 150ms;
|
|
3044
|
+
}
|
|
3045
|
+
|
|
3046
|
+
.slide-left-150-leave-active {
|
|
3047
|
+
animation: slide-left 150ms reverse;
|
|
3048
|
+
}
|
|
3049
|
+
|
|
3050
|
+
.slide-left-300-enter-active {
|
|
3051
|
+
animation: slide-left 300ms;
|
|
3052
|
+
}
|
|
3053
|
+
|
|
3054
|
+
.slide-left-300-leave-active {
|
|
3055
|
+
animation: slide-left 300ms reverse;
|
|
3056
|
+
}
|
|
3057
|
+
|
|
3058
|
+
@keyframes slide-left {
|
|
3059
|
+
0% {
|
|
3060
|
+
transform: translateX(-100%);
|
|
3061
|
+
}
|
|
3062
|
+
|
|
3063
|
+
100% {
|
|
3064
|
+
transform: translateX(0);
|
|
3065
|
+
}
|
|
3066
|
+
}
|
|
3067
|
+
|
|
3068
|
+
.slide-top-150-enter-active {
|
|
3069
|
+
animation: slide-top 150ms;
|
|
3070
|
+
}
|
|
3071
|
+
|
|
3072
|
+
.slide-top-150-leave-active {
|
|
3073
|
+
animation: slide-top 150ms reverse;
|
|
3074
|
+
}
|
|
3075
|
+
|
|
3076
|
+
.slide-top-300-enter-active {
|
|
3077
|
+
animation: slide-top 300ms;
|
|
3078
|
+
}
|
|
3079
|
+
|
|
3080
|
+
.slide-top-300-leave-active {
|
|
3081
|
+
animation: slide-top 300ms reverse;
|
|
3082
|
+
}
|
|
3083
|
+
|
|
3084
|
+
@keyframes slide-top {
|
|
3085
|
+
0% {
|
|
3086
|
+
transform: translateY(-100%);
|
|
3087
|
+
}
|
|
3088
|
+
|
|
3089
|
+
100% {
|
|
3090
|
+
transform: translateY(0);
|
|
3091
|
+
}
|
|
3092
|
+
}
|
|
3093
|
+
|
|
3094
|
+
.slide-right-150-enter-active {
|
|
3095
|
+
animation: slide-right 150ms;
|
|
3096
|
+
}
|
|
3097
|
+
|
|
3098
|
+
.slide-right-150-leave-active {
|
|
3099
|
+
animation: slide-right 150ms reverse;
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3102
|
+
.slide-right-300-enter-active {
|
|
3103
|
+
animation: slide-right 300ms;
|
|
3104
|
+
}
|
|
3105
|
+
|
|
3106
|
+
.slide-right-300-leave-active {
|
|
3107
|
+
animation: slide-right 300ms reverse;
|
|
3108
|
+
}
|
|
3109
|
+
|
|
3110
|
+
@keyframes slide-right {
|
|
3111
|
+
0% {
|
|
3112
|
+
transform: translateX(100%);
|
|
3113
|
+
}
|
|
3114
|
+
|
|
3115
|
+
100% {
|
|
3116
|
+
transform: translateX(0);
|
|
3117
|
+
}
|
|
3118
|
+
}
|
|
3119
|
+
|
|
3120
|
+
.slide-bottom-150-enter-active {
|
|
3121
|
+
animation: slide-bottom 150ms;
|
|
3122
|
+
}
|
|
3123
|
+
|
|
3124
|
+
.slide-bottom-150-leave-active {
|
|
3125
|
+
animation: slide-bottom 150ms reverse;
|
|
3126
|
+
}
|
|
3127
|
+
|
|
3128
|
+
.slide-bottom-300-enter-active {
|
|
3129
|
+
animation: slide-bottom 300ms;
|
|
3130
|
+
}
|
|
3131
|
+
|
|
3132
|
+
.slide-bottom-300-leave-active {
|
|
3133
|
+
animation: slide-bottom 300ms reverse;
|
|
3134
|
+
}
|
|
3135
|
+
|
|
3136
|
+
@keyframes slide-bottom {
|
|
3137
|
+
0% {
|
|
3138
|
+
transform: translateY(100%);
|
|
3139
|
+
}
|
|
3140
|
+
|
|
3141
|
+
100% {
|
|
3142
|
+
transform: translateY(0);
|
|
3143
|
+
}
|
|
3144
|
+
}
|
|
3145
|
+
|
|
2939
3146
|
/* Imports all Component Styles */
|
|
2940
3147
|
|
|
2941
3148
|
@font-face{
|
|
@@ -3245,10 +3452,18 @@ img,video{
|
|
|
3245
3452
|
--tw-backdrop-sepia:
|
|
3246
3453
|
}
|
|
3247
3454
|
|
|
3455
|
+
.fixed{
|
|
3456
|
+
position:fixed
|
|
3457
|
+
}
|
|
3458
|
+
|
|
3248
3459
|
.absolute{
|
|
3249
3460
|
position:absolute
|
|
3250
3461
|
}
|
|
3251
3462
|
|
|
3463
|
+
.z-10{
|
|
3464
|
+
z-index:10
|
|
3465
|
+
}
|
|
3466
|
+
|
|
3252
3467
|
.-m-4{
|
|
3253
3468
|
margin:-1rem
|
|
3254
3469
|
}
|
|
@@ -3257,6 +3472,10 @@ img,video{
|
|
|
3257
3472
|
display:flex
|
|
3258
3473
|
}
|
|
3259
3474
|
|
|
3475
|
+
.grid{
|
|
3476
|
+
display:grid
|
|
3477
|
+
}
|
|
3478
|
+
|
|
3260
3479
|
.aspect-square{
|
|
3261
3480
|
aspect-ratio:1 / 1
|
|
3262
3481
|
}
|
|
@@ -3265,11 +3484,6 @@ img,video{
|
|
|
3265
3484
|
height:1.5rem
|
|
3266
3485
|
}
|
|
3267
3486
|
|
|
3268
|
-
.h-fit{
|
|
3269
|
-
height:-moz-fit-content;
|
|
3270
|
-
height:fit-content
|
|
3271
|
-
}
|
|
3272
|
-
|
|
3273
3487
|
.h-full{
|
|
3274
3488
|
height:100%
|
|
3275
3489
|
}
|
|
@@ -3294,15 +3508,30 @@ img,video{
|
|
|
3294
3508
|
width:70%
|
|
3295
3509
|
}
|
|
3296
3510
|
|
|
3297
|
-
.w
|
|
3298
|
-
width
|
|
3299
|
-
|
|
3511
|
+
.w-\[70px\]{
|
|
3512
|
+
width:70px
|
|
3513
|
+
}
|
|
3514
|
+
|
|
3515
|
+
.w-auto{
|
|
3516
|
+
width:auto
|
|
3300
3517
|
}
|
|
3301
3518
|
|
|
3302
3519
|
.w-full{
|
|
3303
3520
|
width:100%
|
|
3304
3521
|
}
|
|
3305
3522
|
|
|
3523
|
+
.flex-1{
|
|
3524
|
+
flex:1 1 0%
|
|
3525
|
+
}
|
|
3526
|
+
|
|
3527
|
+
.flex-auto{
|
|
3528
|
+
flex:1 1 auto
|
|
3529
|
+
}
|
|
3530
|
+
|
|
3531
|
+
.flex-none{
|
|
3532
|
+
flex:none
|
|
3533
|
+
}
|
|
3534
|
+
|
|
3306
3535
|
.translate-x-\[100\%\]{
|
|
3307
3536
|
--tw-translate-x: 100%;
|
|
3308
3537
|
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))
|
|
@@ -3318,10 +3547,22 @@ img,video{
|
|
|
3318
3547
|
cursor:pointer
|
|
3319
3548
|
}
|
|
3320
3549
|
|
|
3550
|
+
.grid-rows-\[auto_1fr_auto\]{
|
|
3551
|
+
grid-template-rows:auto 1fr auto
|
|
3552
|
+
}
|
|
3553
|
+
|
|
3321
3554
|
.flex-col{
|
|
3322
3555
|
flex-direction:column
|
|
3323
3556
|
}
|
|
3324
3557
|
|
|
3558
|
+
.place-content-center{
|
|
3559
|
+
place-content:center
|
|
3560
|
+
}
|
|
3561
|
+
|
|
3562
|
+
.place-items-center{
|
|
3563
|
+
place-items:center
|
|
3564
|
+
}
|
|
3565
|
+
|
|
3325
3566
|
.items-center{
|
|
3326
3567
|
align-items:center
|
|
3327
3568
|
}
|
|
@@ -3334,10 +3575,26 @@ img,video{
|
|
|
3334
3575
|
justify-content:space-between
|
|
3335
3576
|
}
|
|
3336
3577
|
|
|
3578
|
+
.gap-0{
|
|
3579
|
+
gap:0px
|
|
3580
|
+
}
|
|
3581
|
+
|
|
3337
3582
|
.gap-4{
|
|
3338
3583
|
gap:1rem
|
|
3339
3584
|
}
|
|
3340
3585
|
|
|
3586
|
+
.space-y-1>:not([hidden])~:not([hidden]){
|
|
3587
|
+
--tw-space-y-reverse: 0;
|
|
3588
|
+
margin-top:calc(.25rem * calc(1 - var(--tw-space-y-reverse)));
|
|
3589
|
+
margin-bottom:calc(.25rem * var(--tw-space-y-reverse))
|
|
3590
|
+
}
|
|
3591
|
+
|
|
3592
|
+
.space-y-1\.5>:not([hidden])~:not([hidden]){
|
|
3593
|
+
--tw-space-y-reverse: 0;
|
|
3594
|
+
margin-top:calc(.375rem * calc(1 - var(--tw-space-y-reverse)));
|
|
3595
|
+
margin-bottom:calc(.375rem * var(--tw-space-y-reverse))
|
|
3596
|
+
}
|
|
3597
|
+
|
|
3341
3598
|
.space-y-4>:not([hidden])~:not([hidden]){
|
|
3342
3599
|
--tw-space-y-reverse: 0;
|
|
3343
3600
|
margin-top:calc(1rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -3352,6 +3609,10 @@ img,video{
|
|
|
3352
3609
|
overflow-y:auto
|
|
3353
3610
|
}
|
|
3354
3611
|
|
|
3612
|
+
.overflow-x-hidden{
|
|
3613
|
+
overflow-x:hidden
|
|
3614
|
+
}
|
|
3615
|
+
|
|
3355
3616
|
.whitespace-pre-wrap{
|
|
3356
3617
|
white-space:pre-wrap
|
|
3357
3618
|
}
|
|
@@ -3373,11 +3634,6 @@ img,video{
|
|
|
3373
3634
|
background-color:rgb(var(--color-primary-50) / var(--tw-bg-opacity))
|
|
3374
3635
|
}
|
|
3375
3636
|
|
|
3376
|
-
.bg-primary-900{
|
|
3377
|
-
--tw-bg-opacity: 1;
|
|
3378
|
-
background-color:rgb(var(--color-primary-900) / var(--tw-bg-opacity))
|
|
3379
|
-
}
|
|
3380
|
-
|
|
3381
3637
|
.bg-surface-200{
|
|
3382
3638
|
--tw-bg-opacity: 1;
|
|
3383
3639
|
background-color:rgb(var(--color-surface-200) / var(--tw-bg-opacity))
|
|
@@ -3427,6 +3683,10 @@ img,video{
|
|
|
3427
3683
|
line-height:1rem
|
|
3428
3684
|
}
|
|
3429
3685
|
|
|
3686
|
+
.font-bold{
|
|
3687
|
+
font-weight:700
|
|
3688
|
+
}
|
|
3689
|
+
|
|
3430
3690
|
.uppercase{
|
|
3431
3691
|
text-transform:uppercase
|
|
3432
3692
|
}
|
|
@@ -3440,11 +3700,6 @@ img,video{
|
|
|
3440
3700
|
color:rgb(255 255 255 / var(--tw-text-opacity))!important
|
|
3441
3701
|
}
|
|
3442
3702
|
|
|
3443
|
-
.text-primary-50{
|
|
3444
|
-
--tw-text-opacity: 1;
|
|
3445
|
-
color:rgb(var(--color-primary-50) / var(--tw-text-opacity))
|
|
3446
|
-
}
|
|
3447
|
-
|
|
3448
3703
|
.text-primary-900{
|
|
3449
3704
|
--tw-text-opacity: 1;
|
|
3450
3705
|
color:rgb(var(--color-primary-900) / var(--tw-text-opacity))
|
|
@@ -3493,10 +3748,6 @@ img,video{
|
|
|
3493
3748
|
box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)
|
|
3494
3749
|
}
|
|
3495
3750
|
|
|
3496
|
-
.ring-primary-500\/30{
|
|
3497
|
-
--tw-ring-color: rgb(var(--color-primary-500) / .3)
|
|
3498
|
-
}
|
|
3499
|
-
|
|
3500
3751
|
.ring-surface-500\/30{
|
|
3501
3752
|
--tw-ring-color: rgb(var(--color-surface-500) / .3)
|
|
3502
3753
|
}
|
|
@@ -3564,6 +3815,12 @@ img,video{
|
|
|
3564
3815
|
background-color:rgb(var(--color-secondary-900) / .7)
|
|
3565
3816
|
}
|
|
3566
3817
|
|
|
3818
|
+
.bg-secondary-active-token{
|
|
3819
|
+
background-color:rgb(var(--color-secondary-500))!important;
|
|
3820
|
+
color:rgb(var(--on-secondary));
|
|
3821
|
+
fill:rgb(var(--on-secondary))
|
|
3822
|
+
}
|
|
3823
|
+
|
|
3567
3824
|
.dark .bg-secondary-50-900-token{
|
|
3568
3825
|
background-color:rgb(var(--color-secondary-900))
|
|
3569
3826
|
}
|
|
@@ -3824,6 +4081,10 @@ img,video{
|
|
|
3824
4081
|
background-color:rgb(var(--color-surface-400))
|
|
3825
4082
|
}
|
|
3826
4083
|
|
|
4084
|
+
.border-token{
|
|
4085
|
+
border-width:var(--theme-border-base)
|
|
4086
|
+
}
|
|
4087
|
+
|
|
3827
4088
|
.dark .border-primary-50-900-token{
|
|
3828
4089
|
border-color:rgb(var(--color-primary-900))
|
|
3829
4090
|
}
|
|
@@ -4702,18 +4963,22 @@ img,video{
|
|
|
4702
4963
|
color:rgb(var(--color-primary-900) / var(--tw-text-opacity))
|
|
4703
4964
|
}
|
|
4704
4965
|
|
|
4966
|
+
.hover\:bg-secondary-hover-token:hover:hover{
|
|
4967
|
+
background-color:rgb(var(--color-secondary-500) / .1)
|
|
4968
|
+
}
|
|
4969
|
+
|
|
4970
|
+
@media (min-width: 640px){
|
|
4971
|
+
.sm\:w-20{
|
|
4972
|
+
width:5rem
|
|
4973
|
+
}
|
|
4974
|
+
}
|
|
4975
|
+
|
|
4705
4976
|
@media (min-width: 1024px){
|
|
4706
4977
|
.lg\:max-h-\[500px\]{
|
|
4707
4978
|
max-height:500px
|
|
4708
4979
|
}
|
|
4709
4980
|
}
|
|
4710
4981
|
|
|
4711
|
-
.cc-theme-switcher__popup[data-v-3283243a]{
|
|
4712
|
-
position:absolute;
|
|
4713
|
-
z-index:1;
|
|
4714
|
-
margin-top:.25rem
|
|
4715
|
-
}
|
|
4716
|
-
|
|
4717
4982
|
pre code.hljs{
|
|
4718
4983
|
display:block;
|
|
4719
4984
|
overflow-x:auto;
|
|
@@ -4799,4 +5064,10 @@ code.hljs{
|
|
|
4799
5064
|
.hljs-deletion{
|
|
4800
5065
|
color:#ffdcd7;
|
|
4801
5066
|
background-color:#67060c
|
|
4802
|
-
}
|
|
5067
|
+
}
|
|
5068
|
+
|
|
5069
|
+
.cc-theme-switcher__popup[data-v-3283243a]{
|
|
5070
|
+
position:absolute;
|
|
5071
|
+
z-index:1;
|
|
5072
|
+
margin-top:.25rem
|
|
5073
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,86 +1,20 @@
|
|
|
1
|
-
import { CssClasses } from "@/index";
|
|
2
1
|
declare const _default: import("vue").DefineComponent<{
|
|
3
|
-
|
|
4
|
-
type: () =>
|
|
5
|
-
default: string;
|
|
6
|
-
};
|
|
7
|
-
bgDark: {
|
|
8
|
-
type: () => CssClasses;
|
|
9
|
-
default: string;
|
|
10
|
-
};
|
|
11
|
-
textOnLight: {
|
|
12
|
-
type: () => CssClasses;
|
|
13
|
-
default: string;
|
|
14
|
-
};
|
|
15
|
-
textOnDark: {
|
|
16
|
-
type: () => CssClasses;
|
|
17
|
-
default: string;
|
|
18
|
-
};
|
|
19
|
-
width: {
|
|
20
|
-
type: () => CssClasses;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
height: {
|
|
24
|
-
type: () => CssClasses;
|
|
25
|
-
default: string;
|
|
26
|
-
};
|
|
27
|
-
ring: {
|
|
28
|
-
type: () => CssClasses;
|
|
29
|
-
default: string;
|
|
30
|
-
};
|
|
31
|
-
rounded: {
|
|
32
|
-
type: () => CssClasses;
|
|
2
|
+
tag: {
|
|
3
|
+
type: () => string;
|
|
33
4
|
default: string;
|
|
34
5
|
};
|
|
35
6
|
msg: {
|
|
36
7
|
type: StringConstructor;
|
|
37
8
|
};
|
|
38
|
-
}, {
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
bgLight: {
|
|
42
|
-
type: () => CssClasses;
|
|
43
|
-
default: string;
|
|
44
|
-
};
|
|
45
|
-
bgDark: {
|
|
46
|
-
type: () => CssClasses;
|
|
47
|
-
default: string;
|
|
48
|
-
};
|
|
49
|
-
textOnLight: {
|
|
50
|
-
type: () => CssClasses;
|
|
51
|
-
default: string;
|
|
52
|
-
};
|
|
53
|
-
textOnDark: {
|
|
54
|
-
type: () => CssClasses;
|
|
55
|
-
default: string;
|
|
56
|
-
};
|
|
57
|
-
width: {
|
|
58
|
-
type: () => CssClasses;
|
|
59
|
-
default: string;
|
|
60
|
-
};
|
|
61
|
-
height: {
|
|
62
|
-
type: () => CssClasses;
|
|
63
|
-
default: string;
|
|
64
|
-
};
|
|
65
|
-
ring: {
|
|
66
|
-
type: () => CssClasses;
|
|
67
|
-
default: string;
|
|
68
|
-
};
|
|
69
|
-
rounded: {
|
|
70
|
-
type: () => CssClasses;
|
|
9
|
+
}, () => void, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
+
tag: {
|
|
11
|
+
type: () => string;
|
|
71
12
|
default: string;
|
|
72
13
|
};
|
|
73
14
|
msg: {
|
|
74
15
|
type: StringConstructor;
|
|
75
16
|
};
|
|
76
17
|
}>>, {
|
|
77
|
-
|
|
78
|
-
bgDark: string;
|
|
79
|
-
textOnLight: string;
|
|
80
|
-
textOnDark: string;
|
|
81
|
-
width: string;
|
|
82
|
-
height: string;
|
|
83
|
-
ring: string;
|
|
84
|
-
rounded: string;
|
|
18
|
+
tag: string;
|
|
85
19
|
}>;
|
|
86
20
|
export default _default;
|