@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.
@@ -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: 'line',
3156
+ renderLineHighlight: 'none',
3157
+ renderLineHighlightOnlyWhenFocus: false,
3158
+ hideCursorInOverviewRuler: true,
3153
3159
  scrollbar: {
3154
3160
  vertical: 'auto',
3155
3161
  verticalScrollbarSize: 8,