@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/dist/monaco-editor.cjs.development.js +9 -3
- package/dist/monaco-editor.cjs.development.js.map +1 -1
- package/dist/monaco-editor.cjs.production.min.js +1 -1
- package/dist/monaco-editor.cjs.production.min.js.map +1 -1
- package/dist/monaco-editor.esm.js +9 -3
- package/dist/monaco-editor.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/yaml/index.tsx +7 -1
package/package.json
CHANGED
package/src/yaml/index.tsx
CHANGED
|
@@ -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: '
|
|
359
|
+
renderLineHighlight: 'none',
|
|
360
|
+
renderLineHighlightOnlyWhenFocus: false,
|
|
361
|
+
hideCursorInOverviewRuler: true,
|
|
356
362
|
scrollbar: {
|
|
357
363
|
vertical: 'auto',
|
|
358
364
|
verticalScrollbarSize: 8,
|