@codemirror/view 6.26.4-edit-context.1 → 6.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/dist/index.cjs +141 -256
- package/dist/index.d.cts +12 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.js +141 -256
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 6.27.0 (2024-06-04)
|
|
2
|
+
|
|
3
|
+
### New features
|
|
4
|
+
|
|
5
|
+
The new `setTabFocusMode` method can be used to control whether the editor disables key bindings for Tab and Shift-Tab.
|
|
6
|
+
|
|
7
|
+
## 6.26.4 (2024-06-04)
|
|
8
|
+
|
|
9
|
+
### Bug fixes
|
|
10
|
+
|
|
11
|
+
Fix an issue where commands with an optional second argument would get the keyboard event in that argument when called from a keymap.
|
|
12
|
+
|
|
13
|
+
Fix an issue that could cause the cursor to be rendered on the wrong side of a zero-length block widget.
|
|
14
|
+
|
|
15
|
+
Fix an issue where `drawSelection` got confused by block widgets in line-wrapped editors in some situations.
|
|
16
|
+
|
|
17
|
+
Don't hide the native selection in widgets that have focus.
|
|
18
|
+
|
|
19
|
+
Make sure that clicking an unfocusable editor still remove focus from any other focused elements.
|
|
20
|
+
|
|
21
|
+
Fix a crash when loading the package in a non-browser environment.
|
|
22
|
+
|
|
23
|
+
Stop mouse selection when the user types.
|
|
24
|
+
|
|
1
25
|
## 6.26.3 (2024-04-12)
|
|
2
26
|
|
|
3
27
|
### Bug fixes
|