@autocode-cli/autocode 0.0.33 → 0.0.35
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/server/dashboard.js +94 -18
- package/dist/server/dashboard.js.map +1 -1
- package/package.json +1 -1
package/dist/server/dashboard.js
CHANGED
|
@@ -589,46 +589,122 @@ function getStyles() {
|
|
|
589
589
|
}
|
|
590
590
|
.comments-header h3 { font-size: 14px; font-weight: 600; }
|
|
591
591
|
.comments-count {
|
|
592
|
-
background:
|
|
592
|
+
background: var(--accent);
|
|
593
|
+
color: #fff;
|
|
593
594
|
padding: 2px 8px;
|
|
594
595
|
border-radius: 10px;
|
|
595
|
-
font-size:
|
|
596
|
+
font-size: 11px;
|
|
597
|
+
font-weight: 600;
|
|
596
598
|
}
|
|
597
599
|
.comments-list {
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
max-height:
|
|
600
|
+
display: flex;
|
|
601
|
+
flex-direction: column;
|
|
602
|
+
gap: 10px;
|
|
603
|
+
max-height: 300px;
|
|
602
604
|
overflow-y: auto;
|
|
605
|
+
padding-right: 4px;
|
|
606
|
+
}
|
|
607
|
+
.comments-list::-webkit-scrollbar { width: 6px; }
|
|
608
|
+
.comments-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
|
|
609
|
+
.no-comments {
|
|
610
|
+
color: var(--muted);
|
|
611
|
+
font-size: 13px;
|
|
612
|
+
text-align: center;
|
|
613
|
+
padding: 24px;
|
|
614
|
+
background: var(--bg);
|
|
615
|
+
border-radius: 8px;
|
|
616
|
+
border: 1px dashed var(--border);
|
|
603
617
|
}
|
|
604
|
-
.no-comments { color: var(--muted); font-size: 13px; text-align: center; }
|
|
605
618
|
.comment {
|
|
606
|
-
|
|
607
|
-
border-
|
|
619
|
+
background: var(--bg);
|
|
620
|
+
border-radius: 8px;
|
|
621
|
+
border-left: 3px solid var(--accent);
|
|
622
|
+
padding: 12px 14px;
|
|
623
|
+
transition: all 0.2s ease;
|
|
624
|
+
}
|
|
625
|
+
.comment:hover {
|
|
626
|
+
border-left-color: var(--blue);
|
|
627
|
+
transform: translateX(2px);
|
|
608
628
|
}
|
|
609
|
-
.comment:last-child { border-bottom: none; }
|
|
610
629
|
.comment-meta {
|
|
611
630
|
display: flex;
|
|
631
|
+
align-items: center;
|
|
612
632
|
justify-content: space-between;
|
|
613
|
-
margin-bottom:
|
|
633
|
+
margin-bottom: 8px;
|
|
634
|
+
padding-bottom: 8px;
|
|
635
|
+
border-bottom: 1px solid var(--border);
|
|
614
636
|
}
|
|
615
637
|
.comment-column {
|
|
616
|
-
font-size:
|
|
638
|
+
font-size: 10px;
|
|
639
|
+
font-weight: 600;
|
|
640
|
+
text-transform: uppercase;
|
|
641
|
+
letter-spacing: 0.5px;
|
|
617
642
|
color: var(--blue);
|
|
618
|
-
padding:
|
|
619
|
-
background: rgba(77,171,247,0.
|
|
643
|
+
padding: 3px 8px;
|
|
644
|
+
background: rgba(77,171,247,0.15);
|
|
620
645
|
border-radius: 4px;
|
|
621
646
|
}
|
|
622
|
-
.comment-date {
|
|
623
|
-
|
|
624
|
-
|
|
647
|
+
.comment-date {
|
|
648
|
+
font-size: 11px;
|
|
649
|
+
color: var(--muted);
|
|
650
|
+
display: flex;
|
|
651
|
+
align-items: center;
|
|
652
|
+
gap: 4px;
|
|
653
|
+
}
|
|
654
|
+
.comment-date::before {
|
|
655
|
+
content: '🕐';
|
|
656
|
+
font-size: 10px;
|
|
657
|
+
}
|
|
658
|
+
.comment-text {
|
|
659
|
+
font-size: 13px;
|
|
660
|
+
line-height: 1.6;
|
|
661
|
+
color: var(--fg);
|
|
662
|
+
}
|
|
663
|
+
.comment-text h1, .comment-text h2, .comment-text h3, .comment-text h4 {
|
|
664
|
+
margin: 12px 0 6px;
|
|
665
|
+
font-weight: 600;
|
|
666
|
+
color: var(--fg);
|
|
667
|
+
}
|
|
668
|
+
.comment-text h1 { font-size: 16px; }
|
|
669
|
+
.comment-text h2 { font-size: 15px; }
|
|
670
|
+
.comment-text h3 { font-size: 14px; }
|
|
671
|
+
.comment-text p { margin: 6px 0; }
|
|
625
672
|
.comment-text code {
|
|
626
673
|
background: #21262d;
|
|
627
674
|
padding: 2px 6px;
|
|
628
675
|
border-radius: 4px;
|
|
629
676
|
font-size: 12px;
|
|
677
|
+
font-family: 'JetBrains Mono', monospace;
|
|
678
|
+
}
|
|
679
|
+
.comment-text pre {
|
|
680
|
+
background: #21262d;
|
|
681
|
+
padding: 10px 12px;
|
|
682
|
+
border-radius: 6px;
|
|
683
|
+
overflow-x: auto;
|
|
684
|
+
margin: 8px 0;
|
|
685
|
+
}
|
|
686
|
+
.comment-text pre code {
|
|
687
|
+
background: none;
|
|
688
|
+
padding: 0;
|
|
689
|
+
}
|
|
690
|
+
.comment-text ul, .comment-text ol {
|
|
691
|
+
margin: 6px 0 6px 20px;
|
|
692
|
+
}
|
|
693
|
+
.comment-text li { margin: 4px 0; }
|
|
694
|
+
.comment-text blockquote {
|
|
695
|
+
border-left: 3px solid var(--accent);
|
|
696
|
+
padding-left: 12px;
|
|
697
|
+
margin: 8px 0;
|
|
698
|
+
color: var(--muted);
|
|
699
|
+
font-style: italic;
|
|
700
|
+
}
|
|
701
|
+
.comment-text a {
|
|
702
|
+
color: var(--blue);
|
|
703
|
+
text-decoration: none;
|
|
630
704
|
}
|
|
631
|
-
.comment-text
|
|
705
|
+
.comment-text a:hover { text-decoration: underline; }
|
|
706
|
+
.comment-text strong { font-weight: 600; }
|
|
707
|
+
.comment-text em { font-style: italic; }
|
|
632
708
|
|
|
633
709
|
.add-comment { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
|
|
634
710
|
.add-comment textarea { min-height: 60px; }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dashboard.js","sourceRoot":"","sources":["../../src/server/dashboard.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AACzD,OAAO,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAG/C;;GAEG;AACH,MAAM,UAAU,iBAAiB;IAC/B,MAAM,MAAM,GAAG,SAAS,EAAE,CAAC;IAC3B,MAAM,OAAO,GAAG,WAAW,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IACzC,MAAM,OAAO,GAAG,UAAU,EAAE,CAAC;IAC7B,MAAM,OAAO,GAAG,kBAAkB,CAAC,OAAO,CAAC,CAAC;IAE5C,yCAAyC;IACzC,MAAM,WAAW,GAAG,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;IAC5C,MAAM,WAAW,GAAG,IAAI,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;IAC5C,MAAM,SAAS,GAAG,IAAI,IAAI,EAAE,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;IAErD,OAAO;;;;;;;MAOH,SAAS,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAuJ2B,SAAS;;;;sBAI/B,WAAW;sBACX,WAAW;MAC3B,SAAS,EAAE;;;QAGT,CAAC;AACT,CAAC;AAED;;GAEG;AACH,SAAS,UAAU,CAAC,IAAY;IAC9B,OAAO,IAAI;SACR,OAAO,CAAC,IAAI,EAAE,OAAO,CAAC;SACtB,OAAO,CAAC,IAAI,EAAE,MAAM,CAAC;SACrB,OAAO,CAAC,IAAI,EAAE,MAAM,CAAC;SACrB,OAAO,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;AAC7B,CAAC;AAED;;GAEG;AACH,SAAS,SAAS;IAChB,OAAO
|
|
1
|
+
{"version":3,"file":"dashboard.js","sourceRoot":"","sources":["../../src/server/dashboard.ts"],"names":[],"mappings":"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"}
|