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.
@@ -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-BKZQfaOu.js"></script>
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-CDWObHaG.css">
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-2xl rounded-br-md',
216
+ 'px-3.5 py-2.5 rounded-lg',
217
217
  isQuery
218
- ? 'bg-info/10 border border-info/15'
219
- : 'bg-accent/10 border border-accent/15',
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-xl bg-accent/[0.06] border border-accent/10 overflow-hidden',
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="bg-surface-2"
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>