feat(editor): implement next-gen editor with unique gutter drag handle, block actions menu, smart paste transclusion, and redesigned inline structured view block (US-NEXTGEN-EDITOR, US-4)

This commit is contained in:
Antigravity
2026-05-27 21:39:21 +00:00
parent 493108f957
commit 07ace46dd3
17 changed files with 2402 additions and 619 deletions

View File

@@ -107,7 +107,8 @@ export function NoteContentArea() {
className="min-h-[280px]"
onImageUpload={uploadImageFile}
noteId={note.id}
noteTitle={state.title || note.title}
notebookId={note.notebookId}
noteTitle={state.title || note.title || undefined}
sourceUrl={note.sourceUrl}
/>
</div>
@@ -123,7 +124,8 @@ export function NoteContentArea() {
className="min-h-[200px]"
onImageUpload={uploadImageFile}
noteId={note.id}
noteTitle={state.title || note.title}
notebookId={note.notebookId}
noteTitle={state.title || note.title || undefined}
sourceUrl={note.sourceUrl}
/>
<GhostTags