@kusto/monaco-kusto 7.7.2 → 7.9.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/README.md +5 -1
- package/package.json +8 -9
- package/release/dev/Kusto.Language.Bridge.min.js +1 -1
- package/release/dev/kusto.javascript.client.min.js +1 -1
- package/release/dev/kustoMode.js +2 -2
- package/release/dev/kustoWorker.js +12 -5
- package/release/dev/{main-bf573477.js → main-33c2575c.js} +393 -79
- package/release/dev/monaco.contribution.js +2 -2
- package/release/dev/{schema-2ff631e8.js → schema-02ce6595.js} +2 -2
- package/release/esm/kusto.worker.js +2 -2
- package/release/esm/kustoMode.js +1 -1
- package/release/esm/monaco.contribution.js +3 -3
- package/release/esm/{schema-e9715f6c.js → schema-39a1c54c.js} +1 -1
- 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 +2 -2
- package/release/min/kustoWorker.js +3 -3
- package/release/min/main-9f223763.js +7 -0
- package/release/min/monaco.contribution.js +2 -2
- package/release/min/{schema-debb9db9.js → schema-0a55d8a2.js} +2 -2
- package/release/min/main-cd0a8f0a.js +0 -7
package/release/dev/kustoMode.js
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*!-----------------------------------------------------------------------------
|
|
2
2
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* monaco-kusto version: 7.
|
|
3
|
+
* monaco-kusto version: 7.9.0(0281ddcee87ba54771464e1ceabfbf44179c8a19)
|
|
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-
|
|
8
|
+
define('vs/language/kusto/kustoMode', ['exports', 'vs/editor/editor.main', './main-33c2575c'], (function (exports, monaco, main) { 'use strict';
|
|
9
9
|
|
|
10
10
|
function _interopNamespaceDefault(e) {
|
|
11
11
|
var n = Object.create(null);
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*!-----------------------------------------------------------------------------
|
|
2
2
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* monaco-kusto version: 7.
|
|
3
|
+
* monaco-kusto version: 7.9.0(0281ddcee87ba54771464e1ceabfbf44179c8a19)
|
|
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/kustoWorker', ['exports', './main-
|
|
8
|
+
define('vs/language/kusto/kustoWorker', ['exports', './main-33c2575c', './schema-02ce6595'], (function (exports, main, schema) { 'use strict';
|
|
9
9
|
|
|
10
10
|
function _slicedToArray$2(arr, i) { return _arrayWithHoles$2(arr) || _iterableToArrayLimit$2(arr, i) || _unsupportedIterableToArray$3(arr, i) || _nonIterableRest$2(); }
|
|
11
11
|
function _nonIterableRest$2() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
@@ -2607,6 +2607,10 @@ define('vs/language/kusto/kustoWorker', ['exports', './main-bf573477', './schema
|
|
|
2607
2607
|
};
|
|
2608
2608
|
});
|
|
2609
2609
|
|
|
2610
|
+
function getDefaultExportFromCjs (x) {
|
|
2611
|
+
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
2612
|
+
}
|
|
2613
|
+
|
|
2610
2614
|
var categories = [{
|
|
2611
2615
|
'name': 'C',
|
|
2612
2616
|
'alias': 'Other',
|
|
@@ -2786,6 +2790,7 @@ define('vs/language/kusto/kustoWorker', ['exports', './main-bf573477', './schema
|
|
|
2786
2790
|
'alias': 'Space_Separator',
|
|
2787
2791
|
'bmp': " \xA0\u1680\u2000-\u200A\u202F\u205F\u3000"
|
|
2788
2792
|
}];
|
|
2793
|
+
var categories$1 = /*@__PURE__*/getDefaultExportFromCjs(categories);
|
|
2789
2794
|
|
|
2790
2795
|
/*!
|
|
2791
2796
|
* XRegExp Unicode Categories 5.1.1
|
|
@@ -2807,7 +2812,7 @@ define('vs/language/kusto/kustoWorker', ['exports', './main-bf573477', './schema
|
|
|
2807
2812
|
if (!XRegExp.addUnicodeData) {
|
|
2808
2813
|
throw new ReferenceError('Unicode Base must be loaded before Unicode Categories');
|
|
2809
2814
|
}
|
|
2810
|
-
XRegExp.addUnicodeData(categories);
|
|
2815
|
+
XRegExp.addUnicodeData(categories$1);
|
|
2811
2816
|
});
|
|
2812
2817
|
|
|
2813
2818
|
var properties = [{
|
|
@@ -2842,6 +2847,7 @@ define('vs/language/kusto/kustoWorker', ['exports', './main-bf573477', './schema
|
|
|
2842
2847
|
'name': 'White_Space',
|
|
2843
2848
|
'bmp': "\t-\r \x85\xA0\u1680\u2000-\u200A\u2028\u2029\u202F\u205F\u3000"
|
|
2844
2849
|
}];
|
|
2850
|
+
var properties$1 = /*@__PURE__*/getDefaultExportFromCjs(properties);
|
|
2845
2851
|
|
|
2846
2852
|
/*!
|
|
2847
2853
|
* XRegExp Unicode Properties 5.1.1
|
|
@@ -2892,7 +2898,7 @@ define('vs/language/kusto/kustoWorker', ['exports', './main-bf573477', './schema
|
|
|
2892
2898
|
if (!XRegExp.addUnicodeData) {
|
|
2893
2899
|
throw new ReferenceError('Unicode Base must be loaded before Unicode Properties');
|
|
2894
2900
|
}
|
|
2895
|
-
var unicodeData = properties;
|
|
2901
|
+
var unicodeData = properties$1;
|
|
2896
2902
|
|
|
2897
2903
|
// Add non-generated data
|
|
2898
2904
|
unicodeData.push({
|
|
@@ -3404,6 +3410,7 @@ define('vs/language/kusto/kustoWorker', ['exports', './main-bf573477', './schema
|
|
|
3404
3410
|
'name': 'Zanabazar_Square',
|
|
3405
3411
|
'astral': "\uD806[\uDE00-\uDE47]"
|
|
3406
3412
|
}];
|
|
3413
|
+
var scripts$1 = /*@__PURE__*/getDefaultExportFromCjs(scripts);
|
|
3407
3414
|
|
|
3408
3415
|
/*!
|
|
3409
3416
|
* XRegExp Unicode Scripts 5.1.1
|
|
@@ -3424,7 +3431,7 @@ define('vs/language/kusto/kustoWorker', ['exports', './main-bf573477', './schema
|
|
|
3424
3431
|
if (!XRegExp.addUnicodeData) {
|
|
3425
3432
|
throw new ReferenceError('Unicode Base must be loaded before Unicode Scripts');
|
|
3426
3433
|
}
|
|
3427
|
-
XRegExp.addUnicodeData(scripts, 'Script');
|
|
3434
|
+
XRegExp.addUnicodeData(scripts$1, 'Script');
|
|
3428
3435
|
});
|
|
3429
3436
|
|
|
3430
3437
|
build(XRegExp);
|