@fc-components/monaco-editor 0.1.12 → 0.1.13
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 +5 -1
- 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 +5 -1
- package/dist/monaco-editor.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/promql/index.tsx +4 -0
|
@@ -2247,7 +2247,11 @@ function PromQLEditor(props) {
|
|
|
2247
2247
|
},
|
|
2248
2248
|
scrollBeyondLastLine: false,
|
|
2249
2249
|
suggest: {
|
|
2250
|
-
showWords: false
|
|
2250
|
+
showWords: false,
|
|
2251
|
+
// 防止补全层自动关闭的关键配置
|
|
2252
|
+
filterGraceful: false,
|
|
2253
|
+
snippetsPreventQuickSuggestions: false,
|
|
2254
|
+
shareSuggestSelections: false
|
|
2251
2255
|
},
|
|
2252
2256
|
suggestFontSize: 12,
|
|
2253
2257
|
wordWrap: 'on',
|