groove-dev 0.27.142 → 0.27.144
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/node_modules/@groove-dev/cli/package.json +1 -1
- package/node_modules/@groove-dev/daemon/package.json +1 -1
- package/node_modules/@groove-dev/daemon/src/api.js +1086 -6532
- package/node_modules/@groove-dev/daemon/src/gateways/manager.js +35 -1
- package/node_modules/@groove-dev/daemon/src/index.js +3 -0
- package/node_modules/@groove-dev/daemon/src/journalist.js +23 -13
- package/node_modules/@groove-dev/daemon/src/mlx-server.js +365 -0
- package/node_modules/@groove-dev/daemon/src/model-lab.js +308 -12
- package/node_modules/@groove-dev/daemon/src/pm.js +1 -1
- package/node_modules/@groove-dev/daemon/src/process.js +2 -2
- package/node_modules/@groove-dev/daemon/src/providers/local.js +36 -8
- package/node_modules/@groove-dev/daemon/src/registry.js +21 -5
- package/node_modules/@groove-dev/daemon/src/routes/agents.js +889 -0
- package/node_modules/@groove-dev/daemon/src/routes/coordination.js +318 -0
- package/node_modules/@groove-dev/daemon/src/routes/files.js +751 -0
- package/node_modules/@groove-dev/daemon/src/routes/integrations.js +485 -0
- package/node_modules/@groove-dev/daemon/src/routes/network.js +1784 -0
- package/node_modules/@groove-dev/daemon/src/routes/providers.js +755 -0
- package/node_modules/@groove-dev/daemon/src/routes/schedules.js +110 -0
- package/node_modules/@groove-dev/daemon/src/routes/teams.js +650 -0
- package/node_modules/@groove-dev/daemon/src/scheduler.js +456 -24
- package/node_modules/@groove-dev/daemon/src/teams.js +1 -1
- package/node_modules/@groove-dev/daemon/src/validate.js +38 -1
- package/node_modules/@groove-dev/daemon/templates/mlx-setup.json +12 -0
- package/node_modules/@groove-dev/daemon/templates/tgi-setup.json +1 -1
- package/node_modules/@groove-dev/daemon/templates/vllm-setup.json +1 -1
- package/node_modules/@groove-dev/daemon/test/introducer.test.js +3 -3
- package/node_modules/@groove-dev/daemon/test/journalist.test.js +7 -10
- package/node_modules/@groove-dev/daemon/test/registry.test.js +38 -0
- package/node_modules/@groove-dev/gui/dist/assets/index-BcoF6_eF.js +1012 -0
- package/node_modules/@groove-dev/gui/dist/assets/index-Dd7qhiEd.css +1 -0
- package/node_modules/@groove-dev/gui/dist/index.html +2 -2
- package/node_modules/@groove-dev/gui/package.json +1 -1
- package/{packages/gui/src/app.jsx → node_modules/@groove-dev/gui/src/App.jsx} +0 -2
- package/node_modules/@groove-dev/gui/src/app.css +35 -0
- package/node_modules/@groove-dev/gui/src/components/agents/agent-config.jsx +1 -128
- package/node_modules/@groove-dev/gui/src/components/agents/agent-feed.jsx +144 -31
- package/node_modules/@groove-dev/gui/src/components/agents/agent-node.jsx +8 -13
- package/node_modules/@groove-dev/gui/src/components/agents/code-review.jsx +159 -122
- package/node_modules/@groove-dev/gui/src/components/agents/diff-viewer.jsx +23 -23
- package/node_modules/@groove-dev/gui/src/components/agents/journalist-panel.jsx +1 -1
- package/node_modules/@groove-dev/gui/src/components/agents/spawn-wizard.jsx +2 -135
- package/node_modules/@groove-dev/gui/src/components/automations/automation-card.jsx +274 -0
- package/node_modules/@groove-dev/gui/src/components/automations/automation-wizard.jsx +1136 -0
- package/node_modules/@groove-dev/gui/src/components/dashboard/activity-feed.jsx +3 -3
- package/node_modules/@groove-dev/gui/src/components/dashboard/cache-ring.jsx +5 -5
- package/node_modules/@groove-dev/gui/src/components/dashboard/context-gauges.jsx +6 -8
- package/node_modules/@groove-dev/gui/src/components/dashboard/fleet-panel.jsx +8 -14
- package/node_modules/@groove-dev/gui/src/components/dashboard/intel-panel.jsx +238 -656
- package/node_modules/@groove-dev/gui/src/components/dashboard/kpi-card.jsx +3 -3
- package/node_modules/@groove-dev/gui/src/components/dashboard/routing-chart.jsx +3 -3
- package/node_modules/@groove-dev/gui/src/components/dashboard/team-burn-panel.jsx +1 -1
- package/node_modules/@groove-dev/gui/src/components/dashboard/token-chart.jsx +4 -4
- package/node_modules/@groove-dev/gui/src/components/editor/selection-menu.jsx +2 -0
- package/node_modules/@groove-dev/gui/src/components/lab/lab-assistant.jsx +316 -82
- package/node_modules/@groove-dev/gui/src/components/lab/metrics-panel.jsx +187 -32
- package/node_modules/@groove-dev/gui/src/components/lab/parameter-panel.jsx +195 -14
- package/node_modules/@groove-dev/gui/src/components/lab/runtime-config.jsx +286 -102
- package/node_modules/@groove-dev/gui/src/components/layout/activity-bar.jsx +2 -4
- package/node_modules/@groove-dev/gui/src/components/layout/terminal-panel.jsx +4 -2
- package/node_modules/@groove-dev/gui/src/components/layout/welcome-splash.jsx +137 -108
- package/node_modules/@groove-dev/gui/src/components/network/network-health.jsx +2 -2
- package/node_modules/@groove-dev/gui/src/components/network/performance-dashboard.jsx +4 -4
- package/node_modules/@groove-dev/gui/src/components/settings/ssh-wizard.jsx +81 -99
- package/node_modules/@groove-dev/gui/src/components/ui/sheet.jsx +5 -2
- package/node_modules/@groove-dev/gui/src/lib/cron.js +64 -0
- package/node_modules/@groove-dev/gui/src/lib/status.js +24 -24
- package/node_modules/@groove-dev/gui/src/lib/theme-hex.js +1 -0
- package/node_modules/@groove-dev/gui/src/stores/groove.js +34 -3144
- package/node_modules/@groove-dev/gui/src/stores/helpers.js +10 -0
- package/node_modules/@groove-dev/gui/src/stores/slices/agents-slice.js +452 -0
- package/node_modules/@groove-dev/gui/src/stores/slices/automations-slice.js +96 -0
- package/node_modules/@groove-dev/gui/src/stores/slices/chat-slice.js +227 -0
- package/node_modules/@groove-dev/gui/src/stores/slices/editor-slice.js +285 -0
- package/node_modules/@groove-dev/gui/src/stores/slices/marketplace-slice.js +461 -0
- package/node_modules/@groove-dev/gui/src/stores/slices/network-slice.js +361 -0
- package/node_modules/@groove-dev/gui/src/stores/slices/preview-slice.js +109 -0
- package/node_modules/@groove-dev/gui/src/stores/slices/providers-slice.js +897 -0
- package/node_modules/@groove-dev/gui/src/stores/slices/teams-slice.js +413 -0
- package/node_modules/@groove-dev/gui/src/stores/slices/ui-slice.js +98 -0
- package/node_modules/@groove-dev/gui/src/views/agents.jsx +5 -5
- package/node_modules/@groove-dev/gui/src/views/dashboard.jsx +12 -13
- package/node_modules/@groove-dev/gui/src/views/marketplace.jsx +191 -3
- package/node_modules/@groove-dev/gui/src/views/model-lab.jsx +17 -6
- package/node_modules/@groove-dev/gui/src/views/models.jsx +410 -509
- package/node_modules/@groove-dev/gui/src/views/network.jsx +3 -3
- package/node_modules/@groove-dev/gui/src/views/settings.jsx +81 -94
- package/node_modules/@groove-dev/gui/src/views/teams.jsx +40 -483
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/daemon/src/api.js +1086 -6532
- package/packages/daemon/src/gateways/manager.js +35 -1
- package/packages/daemon/src/index.js +3 -0
- package/packages/daemon/src/journalist.js +23 -13
- package/packages/daemon/src/mlx-server.js +365 -0
- package/packages/daemon/src/model-lab.js +308 -12
- package/packages/daemon/src/pm.js +1 -1
- package/packages/daemon/src/process.js +2 -2
- package/packages/daemon/src/providers/local.js +36 -8
- package/packages/daemon/src/registry.js +21 -5
- package/packages/daemon/src/routes/agents.js +889 -0
- package/packages/daemon/src/routes/coordination.js +318 -0
- package/packages/daemon/src/routes/files.js +751 -0
- package/packages/daemon/src/routes/integrations.js +485 -0
- package/packages/daemon/src/routes/network.js +1784 -0
- package/packages/daemon/src/routes/providers.js +755 -0
- package/packages/daemon/src/routes/schedules.js +110 -0
- package/packages/daemon/src/routes/teams.js +650 -0
- package/packages/daemon/src/scheduler.js +456 -24
- package/packages/daemon/src/teams.js +1 -1
- package/packages/daemon/src/validate.js +38 -1
- package/packages/daemon/templates/mlx-setup.json +12 -0
- package/packages/daemon/templates/tgi-setup.json +1 -1
- package/packages/daemon/templates/vllm-setup.json +1 -1
- package/packages/gui/dist/assets/index-BcoF6_eF.js +1012 -0
- package/packages/gui/dist/assets/index-Dd7qhiEd.css +1 -0
- package/packages/gui/dist/index.html +2 -2
- package/packages/gui/package.json +1 -1
- package/{node_modules/@groove-dev/gui/src/app.jsx → packages/gui/src/App.jsx} +0 -2
- package/packages/gui/src/app.css +35 -0
- package/packages/gui/src/components/agents/agent-config.jsx +1 -128
- package/packages/gui/src/components/agents/agent-feed.jsx +144 -31
- package/packages/gui/src/components/agents/agent-node.jsx +8 -13
- package/packages/gui/src/components/agents/code-review.jsx +159 -122
- package/packages/gui/src/components/agents/diff-viewer.jsx +23 -23
- package/packages/gui/src/components/agents/journalist-panel.jsx +1 -1
- package/packages/gui/src/components/agents/spawn-wizard.jsx +2 -135
- package/packages/gui/src/components/automations/automation-card.jsx +274 -0
- package/packages/gui/src/components/automations/automation-wizard.jsx +1136 -0
- package/packages/gui/src/components/dashboard/activity-feed.jsx +3 -3
- package/packages/gui/src/components/dashboard/cache-ring.jsx +5 -5
- package/packages/gui/src/components/dashboard/context-gauges.jsx +6 -8
- package/packages/gui/src/components/dashboard/fleet-panel.jsx +8 -14
- package/packages/gui/src/components/dashboard/intel-panel.jsx +238 -656
- package/packages/gui/src/components/dashboard/kpi-card.jsx +3 -3
- package/packages/gui/src/components/dashboard/routing-chart.jsx +3 -3
- package/packages/gui/src/components/dashboard/team-burn-panel.jsx +1 -1
- package/packages/gui/src/components/dashboard/token-chart.jsx +4 -4
- package/packages/gui/src/components/editor/selection-menu.jsx +2 -0
- package/packages/gui/src/components/lab/lab-assistant.jsx +316 -82
- package/packages/gui/src/components/lab/metrics-panel.jsx +187 -32
- package/packages/gui/src/components/lab/parameter-panel.jsx +195 -14
- package/packages/gui/src/components/lab/runtime-config.jsx +286 -102
- package/packages/gui/src/components/layout/activity-bar.jsx +2 -4
- package/packages/gui/src/components/layout/terminal-panel.jsx +4 -2
- package/packages/gui/src/components/layout/welcome-splash.jsx +137 -108
- package/packages/gui/src/components/network/network-health.jsx +2 -2
- package/packages/gui/src/components/network/performance-dashboard.jsx +4 -4
- package/packages/gui/src/components/settings/ssh-wizard.jsx +81 -99
- package/packages/gui/src/components/ui/sheet.jsx +5 -2
- package/packages/gui/src/lib/cron.js +64 -0
- package/packages/gui/src/lib/status.js +24 -24
- package/packages/gui/src/lib/theme-hex.js +1 -0
- package/packages/gui/src/stores/groove.js +34 -3144
- package/packages/gui/src/stores/helpers.js +10 -0
- package/packages/gui/src/stores/slices/agents-slice.js +452 -0
- package/packages/gui/src/stores/slices/automations-slice.js +96 -0
- package/packages/gui/src/stores/slices/chat-slice.js +227 -0
- package/packages/gui/src/stores/slices/editor-slice.js +285 -0
- package/packages/gui/src/stores/slices/marketplace-slice.js +461 -0
- package/packages/gui/src/stores/slices/network-slice.js +361 -0
- package/packages/gui/src/stores/slices/preview-slice.js +109 -0
- package/packages/gui/src/stores/slices/providers-slice.js +897 -0
- package/packages/gui/src/stores/slices/teams-slice.js +413 -0
- package/packages/gui/src/stores/slices/ui-slice.js +98 -0
- package/packages/gui/src/views/agents.jsx +5 -5
- package/packages/gui/src/views/dashboard.jsx +12 -13
- package/packages/gui/src/views/marketplace.jsx +191 -3
- package/packages/gui/src/views/model-lab.jsx +17 -6
- package/packages/gui/src/views/models.jsx +410 -509
- package/packages/gui/src/views/network.jsx +3 -3
- package/packages/gui/src/views/settings.jsx +81 -94
- package/packages/gui/src/views/teams.jsx +40 -483
- package/SECURITY_SWEEP.md +0 -228
- package/TRAINING_DATA_v4.md +0 -6
- package/node_modules/@groove-dev/gui/dist/assets/index-Bjd91ufV.js +0 -984
- package/node_modules/@groove-dev/gui/dist/assets/index-BqdwIFn4.css +0 -1
- package/node_modules/@groove-dev/gui/src/components/agents/agent-chat.jsx +0 -322
- package/node_modules/@groove-dev/gui/src/views/preview.jsx +0 -6
- package/node_modules/@groove-dev/gui/src/views/subscription-panel.jsx +0 -327
- package/packages/gui/dist/assets/index-Bjd91ufV.js +0 -984
- package/packages/gui/dist/assets/index-BqdwIFn4.css +0 -1
- package/packages/gui/src/components/agents/agent-chat.jsx +0 -322
- package/packages/gui/src/views/preview.jsx +0 -6
- package/packages/gui/src/views/subscription-panel.jsx +0 -327
- package/test.py +0 -571
|
@@ -13,11 +13,11 @@ const ICONS = {
|
|
|
13
13
|
};
|
|
14
14
|
|
|
15
15
|
const ICON_COLORS = {
|
|
16
|
-
spawn: 'text-
|
|
17
|
-
complete: 'text-
|
|
16
|
+
spawn: 'text-text-2',
|
|
17
|
+
complete: 'text-text-2',
|
|
18
18
|
crash: 'text-danger',
|
|
19
19
|
kill: 'text-text-3',
|
|
20
|
-
rotate: 'text-
|
|
20
|
+
rotate: 'text-text-2',
|
|
21
21
|
error: 'text-danger',
|
|
22
22
|
};
|
|
23
23
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// FSL-1.1-Apache-2.0 — see LICENSE
|
|
2
2
|
import { useRef, useEffect, memo } from 'react';
|
|
3
|
-
import { HEX } from '../../lib/theme-hex';
|
|
3
|
+
import { HEX, hexAlpha } from '../../lib/theme-hex';
|
|
4
4
|
import { fmtNum } from '../../lib/format';
|
|
5
5
|
|
|
6
6
|
const CacheRing = memo(function CacheRing({ cacheRead = 0, cacheCreation = 0, totalInput = 0, size = 140 }) {
|
|
@@ -47,7 +47,7 @@ const CacheRing = memo(function CacheRing({ cacheRead = 0, cacheCreation = 0, to
|
|
|
47
47
|
const segEnd = startAngle + sweep * readPct;
|
|
48
48
|
ctx.beginPath();
|
|
49
49
|
ctx.arc(cx, cy, radius, startAngle, segEnd);
|
|
50
|
-
ctx.strokeStyle = HEX.
|
|
50
|
+
ctx.strokeStyle = HEX.text0;
|
|
51
51
|
ctx.lineWidth = strokeWidth;
|
|
52
52
|
ctx.lineCap = 'round';
|
|
53
53
|
ctx.stroke();
|
|
@@ -58,7 +58,7 @@ const CacheRing = memo(function CacheRing({ cacheRead = 0, cacheCreation = 0, to
|
|
|
58
58
|
const segEnd = segStart + sweep * createPct;
|
|
59
59
|
ctx.beginPath();
|
|
60
60
|
ctx.arc(cx, cy, radius, segStart, segEnd);
|
|
61
|
-
ctx.strokeStyle = HEX.
|
|
61
|
+
ctx.strokeStyle = HEX.text3;
|
|
62
62
|
ctx.lineWidth = strokeWidth;
|
|
63
63
|
ctx.lineCap = 'butt';
|
|
64
64
|
ctx.stroke();
|
|
@@ -85,8 +85,8 @@ const CacheRing = memo(function CacheRing({ cacheRead = 0, cacheCreation = 0, to
|
|
|
85
85
|
style={{ width: size, height: size }}
|
|
86
86
|
/>
|
|
87
87
|
<div className="w-full mt-3 space-y-1.5 max-w-[160px]">
|
|
88
|
-
<StatRow color={HEX.
|
|
89
|
-
<StatRow color={HEX.
|
|
88
|
+
<StatRow color={HEX.text0} label="Read" value={fmtNum(cacheRead)} />
|
|
89
|
+
<StatRow color={HEX.text3} label="Create" value={fmtNum(cacheCreation)} />
|
|
90
90
|
<StatRow color={HEX.surface5} label="Miss" value={fmtNum(Math.max(totalInput - cacheRead - cacheCreation, 0))} />
|
|
91
91
|
</div>
|
|
92
92
|
</div>
|
|
@@ -8,10 +8,8 @@ const RADIUS = (SIZE - STROKE) / 2;
|
|
|
8
8
|
const CIRCUMFERENCE = 2 * Math.PI * RADIUS;
|
|
9
9
|
const START_ANGLE = -90;
|
|
10
10
|
|
|
11
|
-
function gaugeColor(
|
|
12
|
-
|
|
13
|
-
if (pct > 60) return HEX.warning;
|
|
14
|
-
return HEX.success;
|
|
11
|
+
function gaugeColor() {
|
|
12
|
+
return HEX.text1;
|
|
15
13
|
}
|
|
16
14
|
|
|
17
15
|
function MiniGauge({ name, pct, threshold }) {
|
|
@@ -44,7 +42,7 @@ function MiniGauge({ name, pct, threshold }) {
|
|
|
44
42
|
fill="none" strokeWidth={1}
|
|
45
43
|
strokeLinecap="butt"
|
|
46
44
|
style={{
|
|
47
|
-
stroke: HEX.
|
|
45
|
+
stroke: HEX.text3,
|
|
48
46
|
strokeDasharray: `1 ${CIRCUMFERENCE - 1}`,
|
|
49
47
|
strokeDashoffset: -(threshold / 100) * CIRCUMFERENCE,
|
|
50
48
|
}}
|
|
@@ -68,11 +66,11 @@ function MiniGauge({ name, pct, threshold }) {
|
|
|
68
66
|
function FleetSummary({ zones }) {
|
|
69
67
|
return (
|
|
70
68
|
<div className="flex items-center gap-2 text-2xs font-mono">
|
|
71
|
-
<span className="text-
|
|
69
|
+
<span className="text-text-2">{zones.healthy}</span>
|
|
72
70
|
<span className="text-text-4">/</span>
|
|
73
|
-
<span className="text-
|
|
71
|
+
<span className="text-text-2">{zones.warning}</span>
|
|
74
72
|
<span className="text-text-4">/</span>
|
|
75
|
-
<span className="text-
|
|
73
|
+
<span className="text-text-2">{zones.critical}</span>
|
|
76
74
|
</div>
|
|
77
75
|
);
|
|
78
76
|
}
|
|
@@ -20,15 +20,15 @@ function shortModel(id) {
|
|
|
20
20
|
const AgentRow = memo(function AgentRow({ agent, isRotating }) {
|
|
21
21
|
const isAlive = agent.status === 'running' || agent.status === 'starting';
|
|
22
22
|
const contextPct = Math.round((agent.contextUsage || 0) * 100);
|
|
23
|
-
const sColor = isRotating ?
|
|
23
|
+
const sColor = isRotating ? HEX.accent : statusColor(agent.status);
|
|
24
24
|
const quality = agent.quality;
|
|
25
25
|
const successRate = quality?.toolSuccessRate != null ? Math.round(quality.toolSuccessRate * 100) : null;
|
|
26
26
|
const thresholdPct = agent.rotationThreshold ? Math.round(agent.rotationThreshold * 100) : null;
|
|
27
27
|
const rc = roleColor(agent.role);
|
|
28
|
-
const barColor =
|
|
28
|
+
const barColor = HEX.text1;
|
|
29
29
|
|
|
30
30
|
return (
|
|
31
|
-
<div className="px-3 pl-6 py-2 hover:bg-
|
|
31
|
+
<div className="px-3 pl-6 py-2 hover:bg-surface-4 transition-colors space-y-1.5">
|
|
32
32
|
{/* Top row */}
|
|
33
33
|
<div className="flex items-center gap-2 min-w-0">
|
|
34
34
|
{/* Status dot */}
|
|
@@ -64,13 +64,7 @@ const AgentRow = memo(function AgentRow({ agent, isRotating }) {
|
|
|
64
64
|
|
|
65
65
|
{/* Quality badge */}
|
|
66
66
|
{successRate != null && (
|
|
67
|
-
<span
|
|
68
|
-
className="text-2xs font-mono font-bold px-1 py-px rounded-sm flex-shrink-0"
|
|
69
|
-
style={{
|
|
70
|
-
color: successRate >= 90 ? '#4ae168' : successRate >= 70 ? '#e5c07b' : '#e06c75',
|
|
71
|
-
background: successRate >= 90 ? 'rgba(74,225,104,0.1)' : successRate >= 70 ? 'rgba(229,192,123,0.1)' : 'rgba(224,108,117,0.1)',
|
|
72
|
-
}}
|
|
73
|
-
>
|
|
67
|
+
<span className="text-2xs font-mono font-bold px-1 py-px rounded-sm flex-shrink-0 text-text-1 bg-surface-4">
|
|
74
68
|
{successRate}%
|
|
75
69
|
</span>
|
|
76
70
|
)}
|
|
@@ -95,7 +89,7 @@ const AgentRow = memo(function AgentRow({ agent, isRotating }) {
|
|
|
95
89
|
<div className="flex items-center gap-2">
|
|
96
90
|
<div
|
|
97
91
|
className="relative flex-1 h-0.5 rounded-sm overflow-visible"
|
|
98
|
-
style={{ background: hexAlpha(HEX.
|
|
92
|
+
style={{ background: hexAlpha(HEX.text4, 0.2) }}
|
|
99
93
|
>
|
|
100
94
|
<div
|
|
101
95
|
className="absolute inset-y-0 left-0 rounded-sm transition-all duration-700"
|
|
@@ -104,7 +98,7 @@ const AgentRow = memo(function AgentRow({ agent, isRotating }) {
|
|
|
104
98
|
{thresholdPct && (
|
|
105
99
|
<div
|
|
106
100
|
className="absolute top-[-1px] w-px h-[4px]"
|
|
107
|
-
style={{ left: `${thresholdPct}%`, background: HEX.
|
|
101
|
+
style={{ left: `${thresholdPct}%`, background: HEX.text3 }}
|
|
108
102
|
title={`Rotation at ${thresholdPct}%`}
|
|
109
103
|
/>
|
|
110
104
|
)}
|
|
@@ -126,7 +120,7 @@ function TeamSection({ team, members, rotatingSet }) {
|
|
|
126
120
|
<div>
|
|
127
121
|
<button
|
|
128
122
|
onClick={() => setExpanded((e) => !e)}
|
|
129
|
-
className="w-full flex items-center gap-2 px-3 py-1.5 text-left transition-colors hover:bg-
|
|
123
|
+
className="w-full flex items-center gap-2 px-3 py-1.5 text-left transition-colors hover:bg-surface-4 bg-surface-3"
|
|
130
124
|
style={{ borderLeft: isActive ? `2px solid ${HEX.accent}` : '2px solid transparent' }}
|
|
131
125
|
>
|
|
132
126
|
{expanded
|
|
@@ -142,7 +136,7 @@ function TeamSection({ team, members, rotatingSet }) {
|
|
|
142
136
|
)}
|
|
143
137
|
<span
|
|
144
138
|
className="text-2xs font-mono tabular-nums flex-shrink-0 ml-1.5"
|
|
145
|
-
style={{ color: isActive ? HEX.
|
|
139
|
+
style={{ color: isActive ? HEX.text1 : undefined }}
|
|
146
140
|
>
|
|
147
141
|
{runningCount}/{members.length}
|
|
148
142
|
</span>
|