@codemirror/view 6.14.0 → 6.15.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 CHANGED
@@ -1,3 +1,35 @@
1
+ ## 6.15.0 (2023-07-17)
2
+
3
+ ### Bug fixes
4
+
5
+ Fix dragging a selection from inside the current selection on macOS.
6
+
7
+ Fix an issue that could cause the scroll position to jump wildly
8
+
9
+ Don't try to scroll fixed-positioned elements into view by scrolling their parent elements.
10
+
11
+ Fix a bug that caused the cursor to be hidden when showing a placeholder that consisted of the empty string.
12
+
13
+ Resolve some issues where composition could incorrectly affect nearby replaced content.
14
+
15
+ ### New features
16
+
17
+ Key bindings can now set a `stopPropagation` field to cause the view to stop the key event propagation when it considers the event handled.
18
+
19
+ ## 6.14.1 (2023-07-06)
20
+
21
+ ### Bug fixes
22
+
23
+ Fix an issue where scrolling up through line-wrapped text would sometimes cause the scroll position to pop down.
24
+
25
+ Fix an issue where clicking wouldn't focus the editor on Firefox when it was in an iframe and already the active element of the frame.
26
+
27
+ Fix a bug that could cause compositions to be disrupted because their surrounding DOM was repurposed for some other piece of content.
28
+
29
+ Fix a bug where adding content to the editor could inappropriately move the scroll position.
30
+
31
+ Extend detection of Enter presses on Android to `beforeInput` events with an `"insertLineBreak"` type.
32
+
1
33
  ## 6.14.0 (2023-06-23)
2
34
 
3
35
  ### Bug fixes