feat: add render_mindmap a2ui tool with d3-hierarchy layout

This commit is contained in:
2026-03-01 22:09:17 +01:00
parent 3addd92728
commit 71d05a0fa5
13 changed files with 683 additions and 7 deletions

View File

@@ -430,3 +430,32 @@
flex-direction: column;
gap: 8px;
}
/* ---- Mindmap ---- */
.assistant-panel-mindmap {
display: flex;
flex-direction: column;
gap: 6px;
}
.assistant-panel-mindmap-title {
margin: 0;
font-weight: 600;
}
.assistant-panel-mindmap-svg {
width: 100%;
max-height: 400px;
}
.assistant-panel-mindmap-link {
stroke: var(--vscode-panel-border);
stroke-width: 1.5;
}
.assistant-panel-mindmap-label {
font-size: 12px;
fill: var(--vscode-foreground);
pointer-events: none;
}