@codemirror/view 6.12.0 → 6.13.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 +14 -0
- package/dist/index.cjs +330 -274
- package/dist/index.d.cts +1969 -0
- package/dist/index.d.ts +34 -17
- package/dist/index.js +331 -275
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## 6.13.0 (2023-06-05)
|
|
2
|
+
|
|
3
|
+
### Bug fixes
|
|
4
|
+
|
|
5
|
+
Forbid widget decoration side values bigger than 10000, to prevent them from breaking range ordering invariants.
|
|
6
|
+
|
|
7
|
+
Fix a bug where differences between widgets' estimated and actual heights could cause the editor to inappropriately move the scroll position.
|
|
8
|
+
|
|
9
|
+
Avoid another situation in which composition that inserts line breaks could corrupt the editor DOM.
|
|
10
|
+
|
|
11
|
+
### New features
|
|
12
|
+
|
|
13
|
+
Inline widgets may now introduce line breaks, if they report this through the `WidgetType.lineBreaks` property.
|
|
14
|
+
|
|
1
15
|
## 6.12.0 (2023-05-18)
|
|
2
16
|
|
|
3
17
|
### Bug fixes
|