feat(rnotes): Google Docs-style suggestion mode + comment panel fixes
Rewrite suggestion plugin to use ProseMirror props (handleTextInput, handleKeyDown, handlePaste) instead of broken filterTransaction approach. Typed text gets suggestionInsert mark (green underline), deleted text gets suggestionDelete mark (red strikethrough). Add per-suggestion accept/reject popover and review bar with Accept All / Reject All. Fix comment panel text overflow with box-sizing: border-box, add collapse/minimize toggle button. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
0db5addc17
commit
d7c1501d4f
|
|
@ -1615,7 +1615,7 @@ routes.get("/", (c) => {
|
|||
modules: getModuleInfoList(),
|
||||
theme: "dark",
|
||||
body: `<folk-notes-app space="${space}"></folk-notes-app>`,
|
||||
scripts: `<script type="module" src="/modules/rnotes/folk-notes-app.js?v=7"></script>`,
|
||||
scripts: `<script type="module" src="/modules/rnotes/folk-notes-app.js?v=8"></script>`,
|
||||
styles: `<link rel="stylesheet" href="/modules/rnotes/notes.css?v=5">`,
|
||||
}));
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue