@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
|
@@ -2241,7 +2241,11 @@ function PromQLEditor(props) {
|
|
|
2241
2241
|
},
|
|
2242
2242
|
scrollBeyondLastLine: false,
|
|
2243
2243
|
suggest: {
|
|
2244
|
-
showWords: false
|
|
2244
|
+
showWords: false,
|
|
2245
|
+
// 防止补全层自动关闭的关键配置
|
|
2246
|
+
filterGraceful: false,
|
|
2247
|
+
snippetsPreventQuickSuggestions: false,
|
|
2248
|
+
shareSuggestSelections: false
|
|
2245
2249
|
},
|
|
2246
2250
|
suggestFontSize: 12,
|
|
2247
2251
|
wordWrap: 'on',
|