@codemirror/view 6.17.1 → 6.18.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 +18 -0
- package/dist/index.cjs +326 -234
- package/dist/index.d.cts +13 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.js +327 -235
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.18.1 (2023-09-11)
|
|
2
|
+
|
|
3
|
+
### Bug fixes
|
|
4
|
+
|
|
5
|
+
Fix an issue where the editor duplicated text when the browser moved content into the focused text node on composition.
|
|
6
|
+
|
|
7
|
+
Make sure `widgetMarker` is called for gutters on lines covered by a block replace decoration.
|
|
8
|
+
|
|
9
|
+
Fix an issue where the cursor could be shown in a position that doesn't allow a cursor when the selection is in a block widget.
|
|
10
|
+
|
|
11
|
+
## 6.18.0 (2023-09-05)
|
|
12
|
+
|
|
13
|
+
### New features
|
|
14
|
+
|
|
15
|
+
The new `EditorView.scaleX` and `scaleY` properties return the CSS-transformed scale of the editor (or 1 when not scaled).
|
|
16
|
+
|
|
17
|
+
The editor now supports being scaled with CSS.
|
|
18
|
+
|
|
1
19
|
## 6.17.1 (2023-08-31)
|
|
2
20
|
|
|
3
21
|
### Bug fixes
|