@kusto/monaco-kusto 10.0.21 → 11.0.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.
@@ -1,11 +1,11 @@
1
1
  /*!-----------------------------------------------------------------------------
2
2
  * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * monaco-kusto version: 10.0.21(1a66aa7041bf94687bc1e155f25c36653c952049)
3
+ * monaco-kusto version: 11.0.0(2cd16f8743253b5a0133f2ba4f53203e02c1673c)
4
4
  * Released under the MIT license
5
5
  * https://https://github.com/Azure/monaco-kusto/blob/master/README.md
6
6
  *-----------------------------------------------------------------------------*/
7
7
 
8
- define('vs/language/kusto/kustoMode', ['exports', 'vs/editor/editor.main', './main-1cf16bbf'], (function (exports, monaco, main) { 'use strict';
8
+ define('vs/language/kusto/kustoMode', ['exports', 'vs/editor/editor.main', './main-89eef687'], (function (exports, monaco, main) { 'use strict';
9
9
 
10
10
  function _interopNamespaceDefault(e) {
11
11
  var n = Object.create(null);
@@ -1976,7 +1976,25 @@ define('vs/language/kusto/kustoMode', ['exports', 'vs/editor/editor.main', './ma
1976
1976
  comments: {
1977
1977
  lineComment: '//',
1978
1978
  blockComment: null
1979
- }
1979
+ },
1980
+ autoClosingPairs: [{
1981
+ open: '{',
1982
+ close: '}'
1983
+ }, {
1984
+ open: '[',
1985
+ close: ']'
1986
+ }, {
1987
+ open: '(',
1988
+ close: ')'
1989
+ }, {
1990
+ open: "'",
1991
+ close: "'",
1992
+ notIn: ['string', 'comment']
1993
+ }, {
1994
+ open: '"',
1995
+ close: '"',
1996
+ notIn: ['string', 'comment']
1997
+ }]
1980
1998
  });
1981
1999
  return kustoWorker;
1982
2000
  }