groove-dev 0.22.9 → 0.22.10
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/gui/dist/assets/index-CCGYUyEa.css +1 -0
- package/node_modules/@groove-dev/gui/dist/assets/index-CMvht38D.js +574 -0
- package/node_modules/@groove-dev/gui/dist/index.html +2 -2
- package/node_modules/@groove-dev/gui/src/components/agents/agent-feed.jsx +4 -4
- package/node_modules/@groove-dev/gui/src/views/agents.jsx +8 -1
- package/package.json +1 -1
- package/packages/gui/dist/assets/index-CCGYUyEa.css +1 -0
- package/packages/gui/dist/assets/index-CMvht38D.js +574 -0
- package/packages/gui/dist/index.html +2 -2
- package/packages/gui/src/components/agents/agent-feed.jsx +4 -4
- package/packages/gui/src/views/agents.jsx +8 -1
- package/node_modules/@groove-dev/gui/dist/assets/index-BKZQfaOu.js +0 -574
- package/node_modules/@groove-dev/gui/dist/assets/index-CDWObHaG.css +0 -1
- package/packages/gui/dist/assets/index-BKZQfaOu.js +0 -574
- package/packages/gui/dist/assets/index-CDWObHaG.css +0 -1
|
@@ -5,12 +5,12 @@
|
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<link rel="icon" type="image/png" href="/favicon.png" />
|
|
7
7
|
<title>Groove GUI</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-CMvht38D.js"></script>
|
|
9
9
|
<link rel="modulepreload" crossorigin href="/assets/vendor-C0HXlhrU.js">
|
|
10
10
|
<link rel="modulepreload" crossorigin href="/assets/reactflow-BQPfi37R.js">
|
|
11
11
|
<link rel="modulepreload" crossorigin href="/assets/codemirror-BBL3i_JW.js">
|
|
12
12
|
<link rel="modulepreload" crossorigin href="/assets/xterm--7_ns2zW.js">
|
|
13
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
13
|
+
<link rel="stylesheet" crossorigin href="/assets/index-CCGYUyEa.css">
|
|
14
14
|
</head>
|
|
15
15
|
<body>
|
|
16
16
|
<div id="root"></div>
|
|
@@ -213,10 +213,10 @@ function UserMessage({ msg }) {
|
|
|
213
213
|
</div>
|
|
214
214
|
)}
|
|
215
215
|
<div className={cn(
|
|
216
|
-
'px-3.5 py-2.5 rounded-
|
|
216
|
+
'px-3.5 py-2.5 rounded-lg',
|
|
217
217
|
isQuery
|
|
218
|
-
? 'bg-info/
|
|
219
|
-
: 'bg-accent/
|
|
218
|
+
? 'bg-info/15 text-info'
|
|
219
|
+
: 'bg-accent/15 text-accent',
|
|
220
220
|
)}>
|
|
221
221
|
<div className="text-[12px] font-sans whitespace-pre-wrap break-words leading-relaxed text-text-0">
|
|
222
222
|
<FormattedText text={msg.text} />
|
|
@@ -242,7 +242,7 @@ function AgentMessage({ msg, agent }) {
|
|
|
242
242
|
<span className="text-2xs text-text-4 font-sans">{agent?.role}</span>
|
|
243
243
|
</div>
|
|
244
244
|
<div className={cn(
|
|
245
|
-
'ml-7 px-3.5 py-3 rounded-
|
|
245
|
+
'ml-7 px-3.5 py-3 rounded-lg bg-accent/15 overflow-hidden',
|
|
246
246
|
collapsed && 'max-h-[200px] relative',
|
|
247
247
|
)}>
|
|
248
248
|
<StructuredMessage text={collapsed ? msg.text.slice(0, 600) : msg.text} />
|
|
@@ -326,6 +326,13 @@ function AgentTreeInner() {
|
|
|
326
326
|
savePositions(saved);
|
|
327
327
|
}, [agents]);
|
|
328
328
|
|
|
329
|
+
// Suppress CSS transitions on initial render to prevent node fly-in
|
|
330
|
+
const [ready, setReady] = useState(false);
|
|
331
|
+
useEffect(() => {
|
|
332
|
+
const timer = setTimeout(() => setReady(true), 300);
|
|
333
|
+
return () => clearTimeout(timer);
|
|
334
|
+
}, []);
|
|
335
|
+
|
|
329
336
|
return (
|
|
330
337
|
<ReactFlow
|
|
331
338
|
nodes={nodes}
|
|
@@ -341,7 +348,7 @@ function AgentTreeInner() {
|
|
|
341
348
|
proOptions={{ hideAttribution: true }}
|
|
342
349
|
minZoom={0.2}
|
|
343
350
|
maxZoom={1.5}
|
|
344
|
-
className=
|
|
351
|
+
className={cn('bg-surface-2', !ready && '[&_.react-flow__node]:!transition-none')}
|
|
345
352
|
>
|
|
346
353
|
<Background color="rgba(97,175,239,0.03)" gap={24} size={1} />
|
|
347
354
|
</ReactFlow>
|