@codemirror/view 6.2.5 → 6.3.1
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 +26 -0
- package/dist/index.cjs +426 -301
- package/dist/index.d.ts +6 -1
- package/dist/index.js +426 -301
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
## 6.3.1 (2022-10-10)
|
|
2
|
+
|
|
3
|
+
### Bug fixes
|
|
4
|
+
|
|
5
|
+
Fix a crash when trying to scroll something into view in an editor that wasn't in the visible DOM.
|
|
6
|
+
|
|
7
|
+
Fix an issue where `coordsAtPos` returned the coordinates on the wrong side of a widget decoration wrapped in a mark decoration.
|
|
8
|
+
|
|
9
|
+
Fix an issue where content on long wrapped lines could fail to properly scroll into view.
|
|
10
|
+
|
|
11
|
+
Fix an issue where DOM change reading on Chrome Android could get confused when a transaction came in right after a beforeinput event for backspace, enter, or delete.
|
|
12
|
+
|
|
13
|
+
## 6.3.0 (2022-09-28)
|
|
14
|
+
|
|
15
|
+
### Bug fixes
|
|
16
|
+
|
|
17
|
+
Reduce the amount of wrap-point jittering when scrolling through a very long wrapped line.
|
|
18
|
+
|
|
19
|
+
Fix an issue where scrolling to content that wasn't currently drawn due to being on a very long line would often fail to scroll to the right position.
|
|
20
|
+
|
|
21
|
+
Suppress double-space-adds-period behavior on Chrome Mac when it behaves weirdly next to widget.
|
|
22
|
+
|
|
23
|
+
### New features
|
|
24
|
+
|
|
25
|
+
Key binding objects with an `any` property will now add handlers that are called for any key, within the ordering of the keybindings.
|
|
26
|
+
|
|
1
27
|
## 6.2.5 (2022-09-24)
|
|
2
28
|
|
|
3
29
|
### Bug fixes
|