@codemirror/view 6.34.1 → 6.34.2

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.34.2 (2024-11-05)
2
+
3
+ ### Bug fixes
4
+
5
+ Fix the default cursor color for dark themes, which was way too dark.
6
+
1
7
  ## 6.34.1 (2024-09-27)
2
8
 
3
9
  ### Bug fixes
package/dist/index.cjs CHANGED
@@ -6487,7 +6487,7 @@ const baseTheme$1 = buildTheme("." + baseThemeID, {
6487
6487
  display: "none"
6488
6488
  },
6489
6489
  "&dark .cm-cursor": {
6490
- borderLeftColor: "#444"
6490
+ borderLeftColor: "#ddd"
6491
6491
  },
6492
6492
  ".cm-dropCursor": {
6493
6493
  position: "absolute"
package/dist/index.js CHANGED
@@ -6482,7 +6482,7 @@ const baseTheme$1 = /*@__PURE__*/buildTheme("." + baseThemeID, {
6482
6482
  display: "none"
6483
6483
  },
6484
6484
  "&dark .cm-cursor": {
6485
- borderLeftColor: "#444"
6485
+ borderLeftColor: "#ddd"
6486
6486
  },
6487
6487
  ".cm-dropCursor": {
6488
6488
  position: "absolute"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemirror/view",
3
- "version": "6.34.1",
3
+ "version": "6.34.2",
4
4
  "description": "DOM view component for the CodeMirror code editor",
5
5
  "scripts": {
6
6
  "test": "cm-runtests",