@codemirror/view 0.19.25 → 0.19.29
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 +36 -0
- package/dist/index.cjs +1034 -1016
- package/dist/index.d.ts +10 -0
- package/dist/index.js +1032 -1012
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,39 @@
|
|
|
1
|
+
## 0.19.29 (2021-12-09)
|
|
2
|
+
|
|
3
|
+
### Bug fixes
|
|
4
|
+
|
|
5
|
+
Fix a bug that could cause out-of-view editors to get a nonsensical viewport and fail to scroll into view when asked to.
|
|
6
|
+
|
|
7
|
+
Fix a bug where would return 0 when clicking below the content if the last line was replaced with a block widget decoration.
|
|
8
|
+
|
|
9
|
+
Fix an issue where clicking at the position of the previous cursor in a blurred editor would cause the selection to reset to the start of the document.
|
|
10
|
+
|
|
11
|
+
Fix an issue where composition could be interrupted if the browser created a new node inside a mark decoration node.
|
|
12
|
+
|
|
13
|
+
## 0.19.28 (2021-12-08)
|
|
14
|
+
|
|
15
|
+
### Bug fixes
|
|
16
|
+
|
|
17
|
+
Fix an issue where pressing Enter on Chrome Android during composition did not fire key handlers for Enter.
|
|
18
|
+
|
|
19
|
+
Avoid a Chrome bug where the virtual keyboard closes when pressing backspace after a widget.
|
|
20
|
+
|
|
21
|
+
Fix an issue where the editor could show a horizontal scroll bar even after all lines that caused it had been deleted or changed.
|
|
22
|
+
|
|
23
|
+
## 0.19.27 (2021-12-06)
|
|
24
|
+
|
|
25
|
+
### Bug fixes
|
|
26
|
+
|
|
27
|
+
Fix a bug that could cause `EditorView.plugin` to inappropriately return `null` during plugin initialization.
|
|
28
|
+
|
|
29
|
+
Fix a bug where a block widget without `estimatedHeight` at the end of the document could fail to be drawn
|
|
30
|
+
|
|
31
|
+
## 0.19.26 (2021-12-03)
|
|
32
|
+
|
|
33
|
+
### New features
|
|
34
|
+
|
|
35
|
+
Widgets can now define a `destroy` method that is called when they are removed from the view.
|
|
36
|
+
|
|
1
37
|
## 0.19.25 (2021-12-02)
|
|
2
38
|
|
|
3
39
|
### Bug fixes
|