Skip to content

v0.19.1-beta.8

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 26 Jun 03:58
· 77 commits to main since this release
cb0b59b

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 disabled state once at creation from editor.isEditable, but a setEditable() flip updates the view's editable flag without a document change, so ProseMirror never re-renders the NodeView and the stale disabled was 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 keeps disabled in sync with editability via the editor's update event (which setEditable() emits) and on every NodeView update.