@chronoter/main 0.1.10 → 0.2.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/cli.js +99 -22
- package/dist/index.js +98 -21
- package/dist/server/client/main.css +209 -11
- package/dist/server/client/main.js +584 -1728
- package/package.json +5 -1
|
@@ -103,6 +103,8 @@
|
|
|
103
103
|
--color-sidebar-accent-foreground: oklch(0.205 0 0);
|
|
104
104
|
--color-sidebar-border: oklch(0.922 0 0);
|
|
105
105
|
--color-sidebar-ring: oklch(0.708 0 0);
|
|
106
|
+
--color-sidebar-active: oklch(0.95 0.02 264);
|
|
107
|
+
--color-sidebar-active-foreground: oklch(58.42% 0.2274 263.02);
|
|
106
108
|
}
|
|
107
109
|
}
|
|
108
110
|
@layer base {
|
|
@@ -378,6 +380,9 @@
|
|
|
378
380
|
.top-4 {
|
|
379
381
|
top: calc(var(--spacing) * 4);
|
|
380
382
|
}
|
|
383
|
+
.top-20 {
|
|
384
|
+
top: calc(var(--spacing) * 20);
|
|
385
|
+
}
|
|
381
386
|
.top-\[1px\] {
|
|
382
387
|
top: 1px;
|
|
383
388
|
}
|
|
@@ -979,6 +984,9 @@
|
|
|
979
984
|
.block {
|
|
980
985
|
display: block;
|
|
981
986
|
}
|
|
987
|
+
.contents {
|
|
988
|
+
display: contents;
|
|
989
|
+
}
|
|
982
990
|
.flex {
|
|
983
991
|
display: flex;
|
|
984
992
|
}
|
|
@@ -1142,6 +1150,9 @@
|
|
|
1142
1150
|
.max-h-\[300px\] {
|
|
1143
1151
|
max-height: 300px;
|
|
1144
1152
|
}
|
|
1153
|
+
.max-h-\[calc\(100vh-5rem\)\] {
|
|
1154
|
+
max-height: calc(100vh - 5rem);
|
|
1155
|
+
}
|
|
1145
1156
|
.min-h-0 {
|
|
1146
1157
|
min-height: calc(var(--spacing) * 0);
|
|
1147
1158
|
}
|
|
@@ -1199,8 +1210,17 @@
|
|
|
1199
1210
|
.w-16 {
|
|
1200
1211
|
width: calc(var(--spacing) * 16);
|
|
1201
1212
|
}
|
|
1202
|
-
.w-
|
|
1203
|
-
width: calc(var(--spacing) *
|
|
1213
|
+
.w-24 {
|
|
1214
|
+
width: calc(var(--spacing) * 24);
|
|
1215
|
+
}
|
|
1216
|
+
.w-32 {
|
|
1217
|
+
width: calc(var(--spacing) * 32);
|
|
1218
|
+
}
|
|
1219
|
+
.w-40 {
|
|
1220
|
+
width: calc(var(--spacing) * 40);
|
|
1221
|
+
}
|
|
1222
|
+
.w-48 {
|
|
1223
|
+
width: calc(var(--spacing) * 48);
|
|
1204
1224
|
}
|
|
1205
1225
|
.w-64 {
|
|
1206
1226
|
width: calc(var(--spacing) * 64);
|
|
@@ -1492,9 +1512,19 @@
|
|
|
1492
1512
|
.gap-7 {
|
|
1493
1513
|
gap: calc(var(--spacing) * 7);
|
|
1494
1514
|
}
|
|
1515
|
+
.gap-8 {
|
|
1516
|
+
gap: calc(var(--spacing) * 8);
|
|
1517
|
+
}
|
|
1495
1518
|
.gap-\[--spacing\(var\(--gap\)\)\] {
|
|
1496
1519
|
gap: calc(var(--spacing) * var(--gap));
|
|
1497
1520
|
}
|
|
1521
|
+
.space-y-1 {
|
|
1522
|
+
:where(& > :not(:last-child)) {
|
|
1523
|
+
--tw-space-y-reverse: 0;
|
|
1524
|
+
margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
|
|
1525
|
+
margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
|
|
1526
|
+
}
|
|
1527
|
+
}
|
|
1498
1528
|
.space-y-2 {
|
|
1499
1529
|
:where(& > :not(:last-child)) {
|
|
1500
1530
|
--tw-space-y-reverse: 0;
|
|
@@ -1502,6 +1532,13 @@
|
|
|
1502
1532
|
margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
1503
1533
|
}
|
|
1504
1534
|
}
|
|
1535
|
+
.space-y-3 {
|
|
1536
|
+
:where(& > :not(:last-child)) {
|
|
1537
|
+
--tw-space-y-reverse: 0;
|
|
1538
|
+
margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
|
|
1539
|
+
margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
|
|
1540
|
+
}
|
|
1541
|
+
}
|
|
1505
1542
|
.gap-y-0\.5 {
|
|
1506
1543
|
row-gap: calc(var(--spacing) * 0.5);
|
|
1507
1544
|
}
|
|
@@ -1609,6 +1646,10 @@
|
|
|
1609
1646
|
border-left-style: var(--tw-border-style);
|
|
1610
1647
|
border-left-width: 1px;
|
|
1611
1648
|
}
|
|
1649
|
+
.border-l-2 {
|
|
1650
|
+
border-left-style: var(--tw-border-style);
|
|
1651
|
+
border-left-width: 2px;
|
|
1652
|
+
}
|
|
1612
1653
|
.border-dashed {
|
|
1613
1654
|
--tw-border-style: dashed;
|
|
1614
1655
|
border-style: dashed;
|
|
@@ -1829,6 +1870,9 @@
|
|
|
1829
1870
|
.pl-4 {
|
|
1830
1871
|
padding-left: calc(var(--spacing) * 4);
|
|
1831
1872
|
}
|
|
1873
|
+
.pl-7 {
|
|
1874
|
+
padding-left: calc(var(--spacing) * 7);
|
|
1875
|
+
}
|
|
1832
1876
|
.pl-8 {
|
|
1833
1877
|
padding-left: calc(var(--spacing) * 8);
|
|
1834
1878
|
}
|
|
@@ -1841,6 +1885,9 @@
|
|
|
1841
1885
|
.align-middle {
|
|
1842
1886
|
vertical-align: middle;
|
|
1843
1887
|
}
|
|
1888
|
+
.font-mono {
|
|
1889
|
+
font-family: var(--font-mono);
|
|
1890
|
+
}
|
|
1844
1891
|
.font-sans {
|
|
1845
1892
|
font-family: var(--font-sans);
|
|
1846
1893
|
}
|
|
@@ -2792,6 +2839,16 @@
|
|
|
2792
2839
|
border-bottom-width: 0px;
|
|
2793
2840
|
}
|
|
2794
2841
|
}
|
|
2842
|
+
.hover\:border-muted-foreground\/40 {
|
|
2843
|
+
&:hover {
|
|
2844
|
+
@media (hover: hover) {
|
|
2845
|
+
border-color: color-mix(in srgb, oklch(56.41% 0.0194 285.88) 40%, transparent);
|
|
2846
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2847
|
+
border-color: color-mix(in oklab, var(--color-muted-foreground) 40%, transparent);
|
|
2848
|
+
}
|
|
2849
|
+
}
|
|
2850
|
+
}
|
|
2851
|
+
}
|
|
2795
2852
|
.hover\:bg-accent {
|
|
2796
2853
|
&:hover {
|
|
2797
2854
|
@media (hover: hover) {
|
|
@@ -3400,9 +3457,9 @@
|
|
|
3400
3457
|
}
|
|
3401
3458
|
}
|
|
3402
3459
|
}
|
|
3403
|
-
.data-\[active\=true\]\:bg-sidebar-
|
|
3460
|
+
.data-\[active\=true\]\:bg-sidebar-active {
|
|
3404
3461
|
&[data-active=true] {
|
|
3405
|
-
background-color: var(--color-sidebar-
|
|
3462
|
+
background-color: var(--color-sidebar-active);
|
|
3406
3463
|
}
|
|
3407
3464
|
}
|
|
3408
3465
|
.data-\[active\=true\]\:font-medium {
|
|
@@ -3416,9 +3473,9 @@
|
|
|
3416
3473
|
color: var(--color-accent-foreground);
|
|
3417
3474
|
}
|
|
3418
3475
|
}
|
|
3419
|
-
.data-\[active\=true\]\:text-sidebar-
|
|
3476
|
+
.data-\[active\=true\]\:text-sidebar-active-foreground {
|
|
3420
3477
|
&[data-active=true] {
|
|
3421
|
-
color: var(--color-sidebar-
|
|
3478
|
+
color: var(--color-sidebar-active-foreground);
|
|
3422
3479
|
}
|
|
3423
3480
|
}
|
|
3424
3481
|
.data-\[active\=true\]\:hover\:bg-accent {
|
|
@@ -4212,6 +4269,11 @@
|
|
|
4212
4269
|
top: calc(var(--spacing) * 16);
|
|
4213
4270
|
}
|
|
4214
4271
|
}
|
|
4272
|
+
.md\:top-\[5\.5rem\] {
|
|
4273
|
+
@media (width >= 48rem) {
|
|
4274
|
+
top: 5.5rem;
|
|
4275
|
+
}
|
|
4276
|
+
}
|
|
4215
4277
|
.md\:block {
|
|
4216
4278
|
@media (width >= 48rem) {
|
|
4217
4279
|
display: block;
|
|
@@ -4232,6 +4294,11 @@
|
|
|
4232
4294
|
height: calc(100svh - 4rem);
|
|
4233
4295
|
}
|
|
4234
4296
|
}
|
|
4297
|
+
.md\:max-h-\[calc\(100vh-5\.5rem\)\] {
|
|
4298
|
+
@media (width >= 48rem) {
|
|
4299
|
+
max-height: calc(100vh - 5.5rem);
|
|
4300
|
+
}
|
|
4301
|
+
}
|
|
4235
4302
|
.md\:w-\[var\(--radix-navigation-menu-viewport-width\)\] {
|
|
4236
4303
|
@media (width >= 48rem) {
|
|
4237
4304
|
width: var(--radix-navigation-menu-viewport-width);
|
|
@@ -4334,11 +4401,26 @@
|
|
|
4334
4401
|
}
|
|
4335
4402
|
}
|
|
4336
4403
|
}
|
|
4404
|
+
.lg\:top-24 {
|
|
4405
|
+
@media (width >= 64rem) {
|
|
4406
|
+
top: calc(var(--spacing) * 24);
|
|
4407
|
+
}
|
|
4408
|
+
}
|
|
4409
|
+
.lg\:max-h-\[calc\(100vh-6rem\)\] {
|
|
4410
|
+
@media (width >= 64rem) {
|
|
4411
|
+
max-height: calc(100vh - 6rem);
|
|
4412
|
+
}
|
|
4413
|
+
}
|
|
4337
4414
|
.lg\:p-8 {
|
|
4338
4415
|
@media (width >= 64rem) {
|
|
4339
4416
|
padding: calc(var(--spacing) * 8);
|
|
4340
4417
|
}
|
|
4341
4418
|
}
|
|
4419
|
+
.xl\:block {
|
|
4420
|
+
@media (width >= 80rem) {
|
|
4421
|
+
display: block;
|
|
4422
|
+
}
|
|
4423
|
+
}
|
|
4342
4424
|
.\@md\/field-group\:flex-row {
|
|
4343
4425
|
@container field-group (width >= 28rem) {
|
|
4344
4426
|
flex-direction: row;
|
|
@@ -5270,14 +5352,130 @@
|
|
|
5270
5352
|
--color-sidebar-accent-foreground: oklch(0.985 0 0);
|
|
5271
5353
|
--color-sidebar-border: oklch(1 0 0 / 10%);
|
|
5272
5354
|
--color-sidebar-ring: oklch(0.439 0 0);
|
|
5355
|
+
--color-sidebar-active: oklch(0.30 0.05 264);
|
|
5356
|
+
--color-sidebar-active-foreground: oklch(67.17% 0.2174 263.71);
|
|
5357
|
+
}
|
|
5358
|
+
}
|
|
5359
|
+
@layer base {
|
|
5360
|
+
* {
|
|
5361
|
+
border-color: var(--color-border);
|
|
5362
|
+
}
|
|
5363
|
+
body {
|
|
5364
|
+
background-color: var(--color-background);
|
|
5365
|
+
color: var(--color-foreground);
|
|
5273
5366
|
}
|
|
5274
5367
|
}
|
|
5275
|
-
|
|
5276
|
-
|
|
5368
|
+
.theme-blue {
|
|
5369
|
+
--color-primary: oklch(58.42% 0.2274 263.02);
|
|
5370
|
+
--color-primary-foreground: oklch(98.04% 0.0058 264.53);
|
|
5371
|
+
--color-ring: oklch(58.42% 0.2274 263.02);
|
|
5372
|
+
--color-sidebar-active: oklch(0.95 0.02 264);
|
|
5373
|
+
--color-sidebar-active-foreground: oklch(58.42% 0.2274 263.02);
|
|
5374
|
+
}
|
|
5375
|
+
.theme-blue:where(.dark, .dark *) {
|
|
5376
|
+
--color-primary: oklch(67.17% 0.2174 263.71);
|
|
5377
|
+
--color-primary-foreground: oklch(20.09% 0.0211 285.88);
|
|
5378
|
+
--color-ring: oklch(54.89% 0.2068 263.71);
|
|
5379
|
+
--color-sidebar-active: oklch(0.30 0.05 264);
|
|
5380
|
+
--color-sidebar-active-foreground: oklch(67.17% 0.2174 263.71);
|
|
5381
|
+
}
|
|
5382
|
+
.theme-violet {
|
|
5383
|
+
--color-primary: oklch(58.42% 0.22 285);
|
|
5384
|
+
--color-primary-foreground: oklch(98.04% 0.0058 285);
|
|
5385
|
+
--color-ring: oklch(58.42% 0.22 285);
|
|
5386
|
+
--color-sidebar-active: oklch(0.95 0.02 285);
|
|
5387
|
+
--color-sidebar-active-foreground: oklch(58.42% 0.22 285);
|
|
5388
|
+
}
|
|
5389
|
+
.theme-violet:where(.dark, .dark *) {
|
|
5390
|
+
--color-primary: oklch(67.17% 0.20 285);
|
|
5391
|
+
--color-primary-foreground: oklch(20.09% 0.02 285);
|
|
5392
|
+
--color-ring: oklch(54.89% 0.19 285);
|
|
5393
|
+
--color-sidebar-active: oklch(0.30 0.05 285);
|
|
5394
|
+
--color-sidebar-active-foreground: oklch(67.17% 0.20 285);
|
|
5395
|
+
}
|
|
5396
|
+
.theme-slate {
|
|
5397
|
+
--color-primary: oklch(45% 0.03 250);
|
|
5398
|
+
--color-primary-foreground: oklch(98% 0.005 250);
|
|
5399
|
+
--color-ring: oklch(45% 0.03 250);
|
|
5400
|
+
--color-sidebar-active: oklch(0.95 0.01 250);
|
|
5401
|
+
--color-sidebar-active-foreground: oklch(45% 0.03 250);
|
|
5402
|
+
}
|
|
5403
|
+
.theme-slate:where(.dark, .dark *) {
|
|
5404
|
+
--color-primary: oklch(70% 0.03 250);
|
|
5405
|
+
--color-primary-foreground: oklch(20% 0.02 250);
|
|
5406
|
+
--color-ring: oklch(55% 0.03 250);
|
|
5407
|
+
--color-sidebar-active: oklch(0.30 0.02 250);
|
|
5408
|
+
--color-sidebar-active-foreground: oklch(70% 0.03 250);
|
|
5409
|
+
}
|
|
5410
|
+
.theme-green {
|
|
5411
|
+
--color-primary: oklch(60% 0.18 150);
|
|
5412
|
+
--color-primary-foreground: oklch(98% 0.01 150);
|
|
5413
|
+
--color-ring: oklch(60% 0.18 150);
|
|
5414
|
+
--color-sidebar-active: oklch(0.95 0.03 150);
|
|
5415
|
+
--color-sidebar-active-foreground: oklch(60% 0.18 150);
|
|
5416
|
+
}
|
|
5417
|
+
.theme-green:where(.dark, .dark *) {
|
|
5418
|
+
--color-primary: oklch(70% 0.17 150);
|
|
5419
|
+
--color-primary-foreground: oklch(20% 0.02 150);
|
|
5420
|
+
--color-ring: oklch(55% 0.16 150);
|
|
5421
|
+
--color-sidebar-active: oklch(0.30 0.05 150);
|
|
5422
|
+
--color-sidebar-active-foreground: oklch(70% 0.17 150);
|
|
5423
|
+
}
|
|
5424
|
+
.theme-orange {
|
|
5425
|
+
--color-primary: oklch(65% 0.18 50);
|
|
5426
|
+
--color-primary-foreground: oklch(98% 0.01 50);
|
|
5427
|
+
--color-ring: oklch(65% 0.18 50);
|
|
5428
|
+
--color-sidebar-active: oklch(0.95 0.03 50);
|
|
5429
|
+
--color-sidebar-active-foreground: oklch(65% 0.18 50);
|
|
5430
|
+
}
|
|
5431
|
+
.theme-orange:where(.dark, .dark *) {
|
|
5432
|
+
--color-primary: oklch(72% 0.17 50);
|
|
5433
|
+
--color-primary-foreground: oklch(20% 0.02 50);
|
|
5434
|
+
--color-ring: oklch(58% 0.16 50);
|
|
5435
|
+
--color-sidebar-active: oklch(0.30 0.05 50);
|
|
5436
|
+
--color-sidebar-active-foreground: oklch(72% 0.17 50);
|
|
5437
|
+
}
|
|
5438
|
+
.theme-red {
|
|
5439
|
+
--color-primary: oklch(60% 0.22 25);
|
|
5440
|
+
--color-primary-foreground: oklch(98% 0.01 25);
|
|
5441
|
+
--color-ring: oklch(60% 0.22 25);
|
|
5442
|
+
--color-sidebar-active: oklch(0.95 0.03 25);
|
|
5443
|
+
--color-sidebar-active-foreground: oklch(60% 0.22 25);
|
|
5444
|
+
}
|
|
5445
|
+
.theme-red:where(.dark, .dark *) {
|
|
5446
|
+
--color-primary: oklch(68% 0.20 25);
|
|
5447
|
+
--color-primary-foreground: oklch(20% 0.02 25);
|
|
5448
|
+
--color-ring: oklch(55% 0.19 25);
|
|
5449
|
+
--color-sidebar-active: oklch(0.30 0.05 25);
|
|
5450
|
+
--color-sidebar-active-foreground: oklch(68% 0.20 25);
|
|
5451
|
+
}
|
|
5452
|
+
.theme-rose {
|
|
5453
|
+
--color-primary: oklch(60% 0.20 350);
|
|
5454
|
+
--color-primary-foreground: oklch(98% 0.01 350);
|
|
5455
|
+
--color-ring: oklch(60% 0.20 350);
|
|
5456
|
+
--color-sidebar-active: oklch(0.95 0.03 350);
|
|
5457
|
+
--color-sidebar-active-foreground: oklch(60% 0.20 350);
|
|
5458
|
+
}
|
|
5459
|
+
.theme-rose:where(.dark, .dark *) {
|
|
5460
|
+
--color-primary: oklch(68% 0.18 350);
|
|
5461
|
+
--color-primary-foreground: oklch(20% 0.02 350);
|
|
5462
|
+
--color-ring: oklch(55% 0.17 350);
|
|
5463
|
+
--color-sidebar-active: oklch(0.30 0.05 350);
|
|
5464
|
+
--color-sidebar-active-foreground: oklch(68% 0.18 350);
|
|
5465
|
+
}
|
|
5466
|
+
.theme-zinc {
|
|
5467
|
+
--color-primary: oklch(50% 0 0);
|
|
5468
|
+
--color-primary-foreground: oklch(98% 0 0);
|
|
5469
|
+
--color-ring: oklch(50% 0 0);
|
|
5470
|
+
--color-sidebar-active: oklch(0.95 0 0);
|
|
5471
|
+
--color-sidebar-active-foreground: oklch(50% 0 0);
|
|
5277
5472
|
}
|
|
5278
|
-
|
|
5279
|
-
|
|
5280
|
-
color:
|
|
5473
|
+
.theme-zinc:where(.dark, .dark *) {
|
|
5474
|
+
--color-primary: oklch(70% 0 0);
|
|
5475
|
+
--color-primary-foreground: oklch(20% 0 0);
|
|
5476
|
+
--color-ring: oklch(55% 0 0);
|
|
5477
|
+
--color-sidebar-active: oklch(0.30 0 0);
|
|
5478
|
+
--color-sidebar-active-foreground: oklch(70% 0 0);
|
|
5281
5479
|
}
|
|
5282
5480
|
@property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
|
|
5283
5481
|
@property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
|