@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.
@@ -2933,7 +2933,9 @@ function YamlEditor(props) {
2933
2933
  }],
2934
2934
  colors: {
2935
2935
  'editor.background': '#00000000',
2936
- focusBorder: '#00000000'
2936
+ focusBorder: '#00000000',
2937
+ 'editor.lineHighlightBackground': '#00000000',
2938
+ 'editor.lineHighlightBorder': '#00000000'
2937
2939
  }
2938
2940
  });
2939
2941
  editor.defineTheme('yaml-dark', {
@@ -2965,7 +2967,9 @@ function YamlEditor(props) {
2965
2967
  }],
2966
2968
  colors: {
2967
2969
  'editor.background': '#00000000',
2968
- focusBorder: '#00000000'
2970
+ focusBorder: '#00000000',
2971
+ 'editor.lineHighlightBackground': '#00000000',
2972
+ 'editor.lineHighlightBorder': '#00000000'
2969
2973
  }
2970
2974
  });
2971
2975
  var isEditorFocused = editor$1.createContextKey('isEditorFocused' + id, false);
@@ -3143,7 +3147,9 @@ function YamlEditor(props) {
3143
3147
  top: SIZE_MAP$1[size].top,
3144
3148
  bottom: SIZE_MAP$1[size].bottom
3145
3149
  },
3146
- renderLineHighlight: 'line',
3150
+ renderLineHighlight: 'none',
3151
+ renderLineHighlightOnlyWhenFocus: false,
3152
+ hideCursorInOverviewRuler: true,
3147
3153
  scrollbar: {
3148
3154
  vertical: 'auto',
3149
3155
  verticalScrollbarSize: 8,