@kusto/monaco-kusto 5.3.12 → 5.4.0
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 +3 -3
- package/release/dev/kustoMode.js +123 -0
- package/release/dev/kustoWorker.js +47 -0
- package/release/dev/monaco.contribution.js +1 -0
- package/release/esm/kustoWorker.js +4 -0
- package/release/esm/languageFeatures.js +123 -0
- package/release/esm/languageService/kustoLanguageService.js +43 -0
- package/release/esm/monaco.contribution.js +1 -0
- package/release/esm/monaco.d.ts +3 -0
- package/release/min/Kusto.Language.Bridge.min.js +1 -1
- package/release/min/kusto.javascript.client.min.js +1 -1
- package/release/min/kustoMode.js +1 -1
- package/release/min/kustoWorker.js +1 -1
- package/release/min/monaco.contribution.js +1 -1
- package/release/min/monaco.d.ts +3 -0
package/release/min/kustoMode.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!-----------------------------------------------------------------------------
|
|
2
2
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* monaco-kusto version: 5.
|
|
3
|
+
* monaco-kusto version: 5.4.0(undefined)
|
|
4
4
|
* Released under the MIT license
|
|
5
5
|
* https://https://github.com/Azure/monaco-kusto/blob/master/README.md
|
|
6
6
|
*-----------------------------------------------------------------------------*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!-----------------------------------------------------------------------------
|
|
2
2
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* monaco-kusto version: 5.
|
|
3
|
+
* monaco-kusto version: 5.4.0(undefined)
|
|
4
4
|
* Released under the MIT license
|
|
5
5
|
* https://https://github.com/Azure/monaco-kusto/blob/master/README.md
|
|
6
6
|
*-----------------------------------------------------------------------------*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!-----------------------------------------------------------------------------
|
|
2
2
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* monaco-kusto version: 5.
|
|
3
|
+
* monaco-kusto version: 5.4.0(undefined)
|
|
4
4
|
* Released under the MIT license
|
|
5
5
|
* https://https://github.com/Azure/monaco-kusto/blob/master/README.md
|
|
6
6
|
*-----------------------------------------------------------------------------*/
|
package/release/min/monaco.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ declare module monaco.languages.kusto {
|
|
|
26
26
|
enableQueryWarnings?: boolean;
|
|
27
27
|
enableQuerySuggestions?: boolean;
|
|
28
28
|
disabledDiagnosticCodes?: string[];
|
|
29
|
+
quickFixCodeActions?: QuickFixCodeActionOptions[];
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
export interface SyntaxErrorAsMarkDownOptions {
|
|
@@ -34,6 +35,8 @@ declare module monaco.languages.kusto {
|
|
|
34
35
|
enableSyntaxErrorAsMarkDown?: boolean;
|
|
35
36
|
}
|
|
36
37
|
|
|
38
|
+
export type QuickFixCodeActionOptions = 'Extract Expression' | 'Extract Function' | 'Change to';
|
|
39
|
+
|
|
37
40
|
export interface FormatterOptions {
|
|
38
41
|
indentationSize?: number;
|
|
39
42
|
pipeOperatorStyle?: FormatterPlacementStyle;
|