Skip to content
Draft
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
f0ff080
feat: integrate excalidraw-mcp as first-class diagramming feature
GeneralJerel Mar 19, 2026
27e91f7
fix: give excalidraw skill its own section in agent system prompt
GeneralJerel Mar 19, 2026
e20a409
fix: center widget content in iframe
GeneralJerel Mar 19, 2026
7fd3913
fix: resolve hydration mismatch and cap widget height
GeneralJerel Mar 19, 2026
293135a
feat: add zoom controls to widget renderer
GeneralJerel Mar 19, 2026
c585bde
fix: add maxDuration to prevent route timeout during MCP calls
GeneralJerel Mar 19, 2026
99576ed
feat: move zoom controls from widgetRenderer to MCP widget only
GeneralJerel Mar 19, 2026
c50fe38
feat: add markdown canvas editor with LangGraph integration
GeneralJerel Mar 19, 2026
8adf9e5
fix: add MCPAppsMiddleware to document agent for Excalidraw support
GeneralJerel Mar 19, 2026
248b6ac
improve: add visualization instructions to document agent system prompt
GeneralJerel Mar 19, 2026
b898857
feat: integrate excalidraw diagram skill into document agent
GeneralJerel Mar 19, 2026
4d7eb0e
feat: merge document_agent into sample_agent for unified canvas exper…
GeneralJerel Mar 19, 2026
acb9aa6
fix: prevent state updates after component unmount in canvas editor
GeneralJerel Mar 19, 2026
3c84feb
style: refactor canvas page layout - add header, improve padding and …
GeneralJerel Mar 19, 2026
4c34c07
style: rename canvas page to 'Document to Diagram'
GeneralJerel Mar 19, 2026
4b7b73d
ux: improve editor visibility and interaction feedback
GeneralJerel Mar 19, 2026
47c2624
fix: hide placeholder text when editor is focused
GeneralJerel Mar 19, 2026
dda5a86
feat: add 'Get started' button to canvas header
GeneralJerel Mar 19, 2026
2ddc6bb
refactor: simplify and strengthen Excalidraw skill with overlap preve…
GeneralJerel Mar 19, 2026
b8619ce
fix: add isMountedRef checks to all state-updating effects
GeneralJerel Mar 19, 2026
de80d48
feat: add WebSocket document as default content on canvas page
GeneralJerel Mar 19, 2026
45fd46d
fix: replace suggestions with single WebSocket document chip
GeneralJerel Mar 19, 2026
ef85a6d
feat: add more technical document generation prompts
GeneralJerel Mar 19, 2026
036554f
fix: hide suggestions when chat has messages
GeneralJerel Mar 19, 2026
280e8f2
fix: show only 3 prompt suggestions initially
GeneralJerel Mar 19, 2026
0c72925
fix: resolve AbortError and fix suggestion chips visibility
GeneralJerel Mar 19, 2026
6eb355a
feat: add streaming animation to document editor during generation
GeneralJerel Mar 19, 2026
d546f20
fix: fix markdown rendering and improve streaming
GeneralJerel Mar 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: center widget content in iframe
  • Loading branch information
GeneralJerel committed Mar 19, 2026
commit e20a40983b0fd1173595915c78feba5b33f84df2
6 changes: 6 additions & 0 deletions apps/app/src/components/generative-ui/widget-renderer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,12 @@ body {
-webkit-font-smoothing: antialiased;
}

#content {
display: flex;
flex-direction: column;
align-items: center;
}

button {
font-family: inherit;
font-size: 14px;
Expand Down
Loading