@compose-market/theme 0.0.97 → 0.0.99
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/agents/styles.d.ts +1 -1
- package/dist/agents/styles.d.ts.map +1 -1
- package/dist/agents/styles.js +76 -25
- package/dist/agents/styles.js.map +1 -1
- package/dist/css/agents.css +76 -25
- package/dist/css/shell.css +5 -4
- package/dist/css/workflows.css +112 -1
- package/dist/shell/styles.d.ts +1 -1
- package/dist/shell/styles.d.ts.map +1 -1
- package/dist/shell/styles.js +5 -4
- package/dist/shell/styles.js.map +1 -1
- package/dist/workflows/index.d.ts +10 -0
- package/dist/workflows/index.d.ts.map +1 -1
- package/dist/workflows/index.js +3 -0
- package/dist/workflows/index.js.map +1 -1
- package/dist/workflows/styles.d.ts +1 -1
- package/dist/workflows/styles.d.ts.map +1 -1
- package/dist/workflows/styles.js +112 -1
- package/dist/workflows/styles.js.map +1 -1
- package/package.json +1 -1
package/dist/workflows/styles.js
CHANGED
|
@@ -596,7 +596,118 @@ export const workflowStyles = /* css */ `
|
|
|
596
596
|
}
|
|
597
597
|
|
|
598
598
|
@media (min-width: 640px) {
|
|
599
|
-
|
|
599
|
+
.cm-workflow-card__agent-preview-model {
|
|
600
|
+
font-size: 12px;
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
/* Plan review shell */
|
|
605
|
+
.cm-plan-review {
|
|
606
|
+
display: flex;
|
|
607
|
+
flex-direction: column;
|
|
608
|
+
gap: 10px;
|
|
609
|
+
border: 1px solid hsl(var(--accent) / 0.34);
|
|
610
|
+
border-radius: 8px;
|
|
611
|
+
background: hsl(var(--card) / 0.96);
|
|
612
|
+
padding: 12px;
|
|
613
|
+
box-shadow: inset 0 0 0 1px hsl(var(--primary) / 0.05);
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
.cm-plan-review[data-state="approved"],
|
|
617
|
+
.cm-plan-review[data-state="completed"] {
|
|
618
|
+
border-color: hsl(var(--cm-tone-green, 142 76% 55%) / 0.42);
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.cm-plan-review[data-state="rejected"],
|
|
622
|
+
.cm-plan-review[data-state="failed"] {
|
|
623
|
+
border-color: hsl(0 84% 62% / 0.44);
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.cm-plan-review[data-state="changes_requested"] {
|
|
627
|
+
border-color: hsl(38 92% 55% / 0.5);
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.cm-plan-review__header {
|
|
631
|
+
display: flex;
|
|
632
|
+
align-items: flex-start;
|
|
633
|
+
justify-content: space-between;
|
|
634
|
+
gap: 12px;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.cm-plan-review__copy {
|
|
638
|
+
min-width: 0;
|
|
639
|
+
flex: 1;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.cm-plan-review__title-row {
|
|
643
|
+
display: flex;
|
|
644
|
+
align-items: center;
|
|
645
|
+
gap: 8px;
|
|
646
|
+
min-width: 0;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.cm-plan-review__title {
|
|
650
|
+
margin: 0;
|
|
651
|
+
color: hsl(var(--foreground));
|
|
652
|
+
font-size: 13px;
|
|
653
|
+
font-weight: 650;
|
|
654
|
+
line-height: 1.25;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.cm-plan-review__state {
|
|
658
|
+
border: 1px solid hsl(var(--accent) / 0.3);
|
|
659
|
+
border-radius: 4px;
|
|
660
|
+
padding: 2px 6px;
|
|
661
|
+
color: hsl(var(--accent));
|
|
662
|
+
background: hsl(var(--accent) / 0.08);
|
|
663
|
+
font-family: var(--font-mono, monospace);
|
|
664
|
+
font-size: 10px;
|
|
665
|
+
line-height: 1.2;
|
|
666
|
+
text-transform: uppercase;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.cm-plan-review__subtitle {
|
|
670
|
+
margin-top: 4px;
|
|
671
|
+
color: hsl(var(--muted-foreground));
|
|
672
|
+
font-size: 11px;
|
|
673
|
+
line-height: 1.35;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
.cm-plan-review__metadata {
|
|
677
|
+
display: flex;
|
|
678
|
+
flex-wrap: wrap;
|
|
679
|
+
justify-content: flex-end;
|
|
680
|
+
gap: 6px;
|
|
681
|
+
color: hsl(var(--muted-foreground));
|
|
682
|
+
font-family: var(--font-mono, monospace);
|
|
683
|
+
font-size: 10px;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
.cm-plan-review__body {
|
|
687
|
+
min-width: 0;
|
|
688
|
+
border-top: 1px solid hsl(var(--sidebar-border));
|
|
689
|
+
padding-top: 10px;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.cm-plan-review__actions {
|
|
693
|
+
display: flex;
|
|
694
|
+
flex-wrap: wrap;
|
|
695
|
+
gap: 8px;
|
|
696
|
+
justify-content: flex-end;
|
|
697
|
+
border-top: 1px solid hsl(var(--sidebar-border));
|
|
698
|
+
padding-top: 10px;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
@media (min-width: 640px) {
|
|
702
|
+
.cm-plan-review {
|
|
703
|
+
padding: 14px;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.cm-plan-review__title {
|
|
707
|
+
font-size: 14px;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
.cm-plan-review__subtitle {
|
|
600
711
|
font-size: 12px;
|
|
601
712
|
}
|
|
602
713
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../src/workflows/styles.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,SAAS,CAAC
|
|
1
|
+
{"version":3,"file":"styles.js","sourceRoot":"","sources":["../../src/workflows/styles.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyuBvC,CAAC"}
|