@codemirror/view 6.2.0 → 6.2.3
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 +28 -0
- package/dist/index.cjs +232 -215
- package/dist/index.d.ts +6 -1
- package/dist/index.js +232 -215
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## 6.2.3 (2022-09-08)
|
|
2
|
+
|
|
3
|
+
### Bug fixes
|
|
4
|
+
|
|
5
|
+
Fix a bug where cursor motion, when starting from a non-empty selection range, could get stuck on atomic ranges in some circumstances.
|
|
6
|
+
|
|
7
|
+
Avoid triggering Chrome Android's text-duplication issue when a period is typed in the middle of a word.
|
|
8
|
+
|
|
9
|
+
## 6.2.2 (2022-08-31)
|
|
10
|
+
|
|
11
|
+
### Bug fixes
|
|
12
|
+
|
|
13
|
+
Don't reset the selection for selection change events that were suppressed by a node view.
|
|
14
|
+
|
|
15
|
+
## 6.2.1 (2022-08-25)
|
|
16
|
+
|
|
17
|
+
### Bug fixes
|
|
18
|
+
|
|
19
|
+
Don't use the global `document` variable to track focus, since that doesn't work in another window/frame.
|
|
20
|
+
|
|
21
|
+
Fix an issue where key handlers that didn't return true were sometimes called twice for the same keypress.
|
|
22
|
+
|
|
23
|
+
Avoid editing glitches when using deletion keys like ctrl-d on iOS.
|
|
24
|
+
|
|
25
|
+
Properly treat characters from the 'Arabic Presentation Forms-A' Unicode block as right-to-left.
|
|
26
|
+
|
|
27
|
+
Work around a Firefox bug that inserts text at the wrong point for specific cross-line selections.
|
|
28
|
+
|
|
1
29
|
## 6.2.0 (2022-08-05)
|
|
2
30
|
|
|
3
31
|
### Bug fixes
|