@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
|
@@ -2939,7 +2939,9 @@ function YamlEditor(props) {
|
|
|
2939
2939
|
}],
|
|
2940
2940
|
colors: {
|
|
2941
2941
|
'editor.background': '#00000000',
|
|
2942
|
-
focusBorder: '#00000000'
|
|
2942
|
+
focusBorder: '#00000000',
|
|
2943
|
+
'editor.lineHighlightBackground': '#00000000',
|
|
2944
|
+
'editor.lineHighlightBorder': '#00000000'
|
|
2943
2945
|
}
|
|
2944
2946
|
});
|
|
2945
2947
|
monaco.editor.defineTheme('yaml-dark', {
|
|
@@ -2971,7 +2973,9 @@ function YamlEditor(props) {
|
|
|
2971
2973
|
}],
|
|
2972
2974
|
colors: {
|
|
2973
2975
|
'editor.background': '#00000000',
|
|
2974
|
-
focusBorder: '#00000000'
|
|
2976
|
+
focusBorder: '#00000000',
|
|
2977
|
+
'editor.lineHighlightBackground': '#00000000',
|
|
2978
|
+
'editor.lineHighlightBorder': '#00000000'
|
|
2975
2979
|
}
|
|
2976
2980
|
});
|
|
2977
2981
|
var isEditorFocused = editor.createContextKey('isEditorFocused' + id, false);
|
|
@@ -3149,7 +3153,9 @@ function YamlEditor(props) {
|
|
|
3149
3153
|
top: SIZE_MAP$1[size].top,
|
|
3150
3154
|
bottom: SIZE_MAP$1[size].bottom
|
|
3151
3155
|
},
|
|
3152
|
-
renderLineHighlight: '
|
|
3156
|
+
renderLineHighlight: 'none',
|
|
3157
|
+
renderLineHighlightOnlyWhenFocus: false,
|
|
3158
|
+
hideCursorInOverviewRuler: true,
|
|
3153
3159
|
scrollbar: {
|
|
3154
3160
|
vertical: 'auto',
|
|
3155
3161
|
verticalScrollbarSize: 8,
|