@codemirror/view 6.43.3 → 6.43.4

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,9 @@
1
+ ## 6.43.4 (2026-06-27)
2
+
3
+ ### Bug fixes
4
+
5
+ Fix a regression in DOM document updates that could corrupt the tile tree and cause crashes.
6
+
1
7
  ## 6.43.3 (2026-06-25)
2
8
 
3
9
  ### Bug fixes
package/dist/index.cjs CHANGED
@@ -2783,6 +2783,7 @@ class TileUpdate {
2783
2783
  }
2784
2784
  pendingLineAttrs = null;
2785
2785
  }
2786
+ markCount = active.length;
2786
2787
  }
2787
2788
  });
2788
2789
  this.openWidget = openEnd > markCount;
package/dist/index.js CHANGED
@@ -2779,6 +2779,7 @@ class TileUpdate {
2779
2779
  }
2780
2780
  pendingLineAttrs = null;
2781
2781
  }
2782
+ markCount = active.length;
2782
2783
  }
2783
2784
  });
2784
2785
  this.openWidget = openEnd > markCount;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemirror/view",
3
- "version": "6.43.3",
3
+ "version": "6.43.4",
4
4
  "description": "DOM view component for the CodeMirror code editor",
5
5
  "scripts": {
6
6
  "test": "cm-runtests",