@pennyfarthing/cyclist 9.2.0 → 9.3.0
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/main.d.ts +4 -0
- package/dist/main.d.ts.map +1 -1
- package/dist/main.js +7 -0
- package/dist/main.js.map +1 -1
- package/dist/public/css/react.css +1 -1
- package/dist/public/js/react/react.js +40 -36
- package/dist/websocket.d.ts.map +1 -1
- package/dist/websocket.js +5 -4
- package/dist/websocket.js.map +1 -1
- package/package.json +1 -1
- package/src/public/components/MessageView.tsx +3 -5
- package/src/public/components/ThemePalette/ThemePalette.css +2 -0
- package/src/public/components/ToolStack.tsx +23 -13
- package/src/public/components/panels/AuditLogPanel.tsx +140 -66
- package/src/public/components/panels/SettingsPanel.tsx +10 -10
- package/src/public/components/ui/switch.tsx +2 -2
- package/src/public/css/theme-system.css +25 -5
- package/src/public/styles/tailwind.css +192 -11
- package/src/public/utils/toolStackGrouper.ts +2 -2
|
@@ -91,8 +91,8 @@ export function groupToolsIntoStacks(messages: Message[]): ToolStackData[] {
|
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
// Handle remaining tools at end of messages
|
|
94
|
-
//
|
|
95
|
-
if (currentTools.length >=
|
|
94
|
+
// Same threshold as mid-stream: only stack 2+ tools (single tools render normally)
|
|
95
|
+
if (currentTools.length >= 2) {
|
|
96
96
|
const lastTool = currentTools[currentTools.length - 1];
|
|
97
97
|
stacks.push({
|
|
98
98
|
stackId: generateStableStackId(currentTools),
|