@codemirror/view
Advanced tools
Changelog
6.28.5 (2024-07-17)
Fix a bug that broke drag scrolling along one axis when the innermost scrollable element around the editor was only scrollable along the other axis.
Work around a memory leak in Chrome's EditContext implementation.
Changelog
6.28.4 (2024-07-03)
Fix a bug where EditContext-based editing could corrupt the document in some situations.
Changelog
6.28.3 (2024-07-01)
Fix an issue causing the IME interface to appear in the wrong spot on Chrome Windows.
Changelog
6.28.2 (2024-06-21)
Only use EditContext
on Chrome versions that support passing it an inverted selection range.
Fix an issue that prevented non-inclusive block widgets from having their updateDOM
method called when changed.
Re-enable EditContext
use on Chrome 126 and up.
Changelog
6.28.1 (2024-06-12)
Disable EditContext
by default again, to work around a regression where Chrome's implementation doesn't support inverted selections.
Make sure EditorView.editable
is respected when EditContext
is used.
Changelog
6.28.0 (2024-06-10)
Fix an issue where long lines broken up by block widgets were sometimes only partially rendered.
The editor will now, when available (which is only on Chrome for the foreseeable future) use the EditContext
API to capture text input.
Changelog
6.27.0 (2024-06-04)
The new setTabFocusMode
method can be used to control whether the editor disables key bindings for Tab and Shift-Tab.
Changelog
6.26.4 (2024-06-04)
Fix an issue where commands with an optional second argument would get the keyboard event in that argument when called from a keymap.
Fix an issue that could cause the cursor to be rendered on the wrong side of a zero-length block widget.
Fix an issue where drawSelection
got confused by block widgets in line-wrapped editors in some situations.
Don't hide the native selection in widgets that have focus.
Make sure that clicking an unfocusable editor still remove focus from any other focused elements.
Fix a crash when loading the package in a non-browser environment.
Stop mouse selection when the user types.