v0.19.1-beta.8
Pre-release
Pre-release
·
77 commits
to main
since this release
Delta since previous beta (v0.19.1-beta.7) — 1 new changeset.
Patch Changes
- Task-list checkboxes now stay clickable when an editor transitions from read-only to editable. The list-item NodeView set the checkbox's
disabledstate once at creation fromeditor.isEditable, but asetEditable()flip updates the view's editable flag without a document change, so ProseMirror never re-renders the NodeView and the staledisabledwas never cleared. A checkbox created while the editor was read-only (for example, content loaded before the editor goes live) stayed permanently uncheckable. The NodeView now keepsdisabledin sync with editability via the editor'supdateevent (whichsetEditable()emits) and on every NodeView update.