@codemirror/view 6.22.3 → 6.23.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 CHANGED
@@ -1,3 +1,33 @@
1
+ ## 6.23.1 (2024-01-24)
2
+
3
+ ### Bug fixes
4
+
5
+ Fix a bug that caused `Tooltip.above` to not take effect for tooltips that were already present when the tooltip plugin is initialized.
6
+
7
+ Automatically reposition tooltips when their size changes.
8
+
9
+ ## 6.23.0 (2023-12-28)
10
+
11
+ ### Bug fixes
12
+
13
+ Work around odd iOS Safari behavior when doing select all.
14
+
15
+ Fix a composition interruption when an widget is inserted next to the cursor.
16
+
17
+ Fix a crash in bidirectional cursor motion.
18
+
19
+ Simplify visual motion through bidirectional text, fix several corner cases where it would work badly.
20
+
21
+ Fix a bug that broke some bidi isolates not on the first line of the document.
22
+
23
+ ### New features
24
+
25
+ `EditorView.bidiIsolatedRanges` now supports automatically determining the direction of the range if not provided by the decoration.
26
+
27
+ `EditorView.visualLineSide` can be used to find the visual end or start of a line with bidirectional text.
28
+
29
+ The new `EditorView.outerDecorations` facet can be used to provide decorations that should always be at the bottom of the precedence stack.
30
+
1
31
  ## 6.22.3 (2023-12-13)
2
32
 
3
33
  ### Bug fixes