@codemirror/view 6.22.2 → 6.23.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 +30 -0
- package/dist/index.cjs +611 -546
- package/dist/index.d.cts +24 -4
- package/dist/index.d.ts +24 -4
- package/dist/index.js +611 -546
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
## 6.23.0 (2023-12-28)
|
|
2
|
+
|
|
3
|
+
### Bug fixes
|
|
4
|
+
|
|
5
|
+
Work around odd iOS Safari behavior when doing select all.
|
|
6
|
+
|
|
7
|
+
Fix a composition interruption when an widget is inserted next to the cursor.
|
|
8
|
+
|
|
9
|
+
Fix a crash in bidirectional cursor motion.
|
|
10
|
+
|
|
11
|
+
Simplify visual motion through bidirectional text, fix several corner cases where it would work badly.
|
|
12
|
+
|
|
13
|
+
Fix a bug that broke some bidi isolates not on the first line of the document.
|
|
14
|
+
|
|
15
|
+
### New features
|
|
16
|
+
|
|
17
|
+
`EditorView.bidiIsolatedRanges` now supports automatically determining the direction of the range if not provided by the decoration.
|
|
18
|
+
|
|
19
|
+
`EditorView.visualLineSide` can be used to find the visual end or start of a line with bidirectional text.
|
|
20
|
+
|
|
21
|
+
The new `EditorView.outerDecorations` facet can be used to provide decorations that should always be at the bottom of the precedence stack.
|
|
22
|
+
|
|
23
|
+
## 6.22.3 (2023-12-13)
|
|
24
|
+
|
|
25
|
+
### Bug fixes
|
|
26
|
+
|
|
27
|
+
Fix a bug that could cause tooltips to be unnecessarily be positioned absolutely.
|
|
28
|
+
|
|
29
|
+
Make sure that, when an editor creates tooltips immediately on initialization, the editor is attached to the document when their `mount` callback is called.
|
|
30
|
+
|
|
1
31
|
## 6.22.2 (2023-12-08)
|
|
2
32
|
|
|
3
33
|
### Bug fixes
|