@kusto/monaco-kusto 5.3.6 → 5.3.8
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kusto/monaco-kusto",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.8",
|
|
4
4
|
"description": "CSL, KQL plugin for the Monaco Editor",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Microsoft"
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"xregexp": "^3.2.0"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@kusto/language-service": "0.0.
|
|
58
|
-
"@kusto/language-service-next": "0.0.
|
|
57
|
+
"@kusto/language-service": "0.0.39",
|
|
58
|
+
"@kusto/language-service-next": "0.0.61"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"monaco-editor": "0.34.1"
|
package/release/dev/kustoMode.js
CHANGED
|
@@ -2842,6 +2842,10 @@ define('vs/language/kusto/languageFeatures',["require", "exports", "vscode-langu
|
|
|
2842
2842
|
}
|
|
2843
2843
|
var DOCS_BASE_URL = "https://learn.microsoft.com/azure/data-explorer/kusto/query";
|
|
2844
2844
|
function formatDocLink(docString) {
|
|
2845
|
+
// If the docString is empty, we want to return undefined to prevent an empty documentation popup.
|
|
2846
|
+
if (!docString) {
|
|
2847
|
+
return undefined;
|
|
2848
|
+
}
|
|
2845
2849
|
var target = {};
|
|
2846
2850
|
var urisProxy = new Proxy(target, {
|
|
2847
2851
|
get: function (_target, prop, _receiver) {
|
|
@@ -585,6 +585,10 @@ function toTextEdit(textEdit) {
|
|
|
585
585
|
}
|
|
586
586
|
var DOCS_BASE_URL = "https://learn.microsoft.com/azure/data-explorer/kusto/query";
|
|
587
587
|
function formatDocLink(docString) {
|
|
588
|
+
// If the docString is empty, we want to return undefined to prevent an empty documentation popup.
|
|
589
|
+
if (!docString) {
|
|
590
|
+
return undefined;
|
|
591
|
+
}
|
|
588
592
|
var target = {};
|
|
589
593
|
var urisProxy = new Proxy(target, {
|
|
590
594
|
get: function (_target, prop, _receiver) {
|