@fc-components/monaco-editor 0.1.14 → 0.1.15

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.1.14",
6
+ "version": "0.1.15",
7
7
  "license": "MIT",
8
8
  "main": "dist/index.js",
9
9
  "module": "dist/monaco-editor.esm.js",
@@ -121,6 +121,8 @@ export default function YamlEditor(props: YamlEditorProps) {
121
121
  colors: {
122
122
  'editor.background': '#00000000',
123
123
  focusBorder: '#00000000',
124
+ 'editor.lineHighlightBackground': '#00000000',
125
+ 'editor.lineHighlightBorder': '#00000000',
124
126
  },
125
127
  });
126
128
 
@@ -139,6 +141,8 @@ export default function YamlEditor(props: YamlEditorProps) {
139
141
  colors: {
140
142
  'editor.background': '#00000000',
141
143
  focusBorder: '#00000000',
144
+ 'editor.lineHighlightBackground': '#00000000',
145
+ 'editor.lineHighlightBorder': '#00000000',
142
146
  },
143
147
  });
144
148
 
@@ -352,7 +356,9 @@ export default function YamlEditor(props: YamlEditorProps) {
352
356
  top: SIZE_MAP[size].top,
353
357
  bottom: SIZE_MAP[size].bottom,
354
358
  },
355
- renderLineHighlight: 'line',
359
+ renderLineHighlight: 'none',
360
+ renderLineHighlightOnlyWhenFocus: false,
361
+ hideCursorInOverviewRuler: true,
356
362
  scrollbar: {
357
363
  vertical: 'auto',
358
364
  verticalScrollbarSize: 8,