@scalar/use-codemirror 0.11.15 → 0.11.17

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,5 +1,19 @@
1
1
  # @scalar/use-codemirror
2
2
 
3
+ ## 0.11.17
4
+
5
+ ### Patch Changes
6
+
7
+ - c9a0d57: fix: sets focused selection color variables
8
+
9
+ ## 0.11.16
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [513e0ad]
14
+ - Updated dependencies [5127a37]
15
+ - @scalar/components@0.12.50
16
+
3
17
  ## 0.11.15
4
18
 
5
19
  ### Patch Changes
@@ -161,6 +161,10 @@ function x({
161
161
  background: "var(--scalar-background-1)",
162
162
  border: "none",
163
163
  fontFamily: "var(--scalar-font)"
164
+ },
165
+ ".cm-line::selection": {
166
+ background: "var(--scalar-selection-background) !important",
167
+ color: "var(--scalar-selection-color)"
164
168
  }
165
169
  }),
166
170
  // Listen to updates
package/package.json CHANGED
@@ -16,7 +16,7 @@
16
16
  "vue",
17
17
  "vue3"
18
18
  ],
19
- "version": "0.11.15",
19
+ "version": "0.11.17",
20
20
  "engines": {
21
21
  "node": ">=18"
22
22
  },
@@ -53,7 +53,7 @@
53
53
  "@uiw/codemirror-themes": "^4.21.21",
54
54
  "codemirror": "^6.0.0",
55
55
  "vue": "^3.4.29",
56
- "@scalar/components": "0.12.49"
56
+ "@scalar/components": "0.12.50"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@vitejs/plugin-vue": "^5.0.4",