modern-monaco 0.3.2 → 0.3.4
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/core.mjs +2 -2
- package/dist/editor-core.mjs +9639 -4391
- package/dist/editor-worker.mjs +77 -77
- package/dist/index.mjs +8 -8
- package/dist/lsp/client.mjs +1 -1
- package/dist/lsp/css/worker.mjs +43 -43
- package/dist/lsp/html/worker.mjs +31 -31
- package/dist/lsp/json/setup.mjs +1 -1
- package/dist/lsp/json/worker.mjs +31 -31
- package/dist/lsp/typescript/libs.mjs +0 -1
- package/dist/lsp/typescript/setup.mjs +1 -1
- package/dist/lsp/typescript/worker.mjs +3 -3
- package/dist/shiki-wasm.mjs +1 -1
- package/dist/shiki.mjs +58 -56
- package/dist/workspace.mjs +12 -17
- package/package.json +7 -5
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// node_modules
|
|
1
|
+
// node_modules/tm-themes/themes/vitesse-dark.json
|
|
2
2
|
var vitesse_dark_default = {
|
|
3
3
|
colors: {
|
|
4
4
|
"activityBar.activeBorder": "#4d9375",
|
|
@@ -693,7 +693,7 @@ var vitesse_dark_default = {
|
|
|
693
693
|
type: "dark"
|
|
694
694
|
};
|
|
695
695
|
|
|
696
|
-
// node_modules
|
|
696
|
+
// node_modules/tm-grammars/grammars/html.json
|
|
697
697
|
var html_default = {
|
|
698
698
|
displayName: "HTML",
|
|
699
699
|
injections: {
|
|
@@ -3322,7 +3322,7 @@ var html_default = {
|
|
|
3322
3322
|
scopeName: "text.html.basic"
|
|
3323
3323
|
};
|
|
3324
3324
|
|
|
3325
|
-
// node_modules
|
|
3325
|
+
// node_modules/tm-grammars/grammars/css.json
|
|
3326
3326
|
var css_default = {
|
|
3327
3327
|
displayName: "CSS",
|
|
3328
3328
|
name: "css",
|
|
@@ -5184,7 +5184,7 @@ var css_default = {
|
|
|
5184
5184
|
scopeName: "source.css"
|
|
5185
5185
|
};
|
|
5186
5186
|
|
|
5187
|
-
// node_modules
|
|
5187
|
+
// node_modules/tm-grammars/grammars/javascript.json
|
|
5188
5188
|
var javascript_default = {
|
|
5189
5189
|
displayName: "JavaScript",
|
|
5190
5190
|
name: "javascript",
|
|
@@ -11182,7 +11182,7 @@ var javascript_default = {
|
|
|
11182
11182
|
scopeName: "source.js"
|
|
11183
11183
|
};
|
|
11184
11184
|
|
|
11185
|
-
// node_modules
|
|
11185
|
+
// node_modules/tm-grammars/grammars/typescript.json
|
|
11186
11186
|
var typescript_default = {
|
|
11187
11187
|
displayName: "TypeScript",
|
|
11188
11188
|
name: "typescript",
|
|
@@ -16931,7 +16931,7 @@ var typescript_default = {
|
|
|
16931
16931
|
scopeName: "source.ts"
|
|
16932
16932
|
};
|
|
16933
16933
|
|
|
16934
|
-
// node_modules
|
|
16934
|
+
// node_modules/tm-grammars/grammars/jsx.json
|
|
16935
16935
|
var jsx_default = {
|
|
16936
16936
|
displayName: "JSX",
|
|
16937
16937
|
name: "jsx",
|
|
@@ -22929,7 +22929,7 @@ var jsx_default = {
|
|
|
22929
22929
|
scopeName: "source.js.jsx"
|
|
22930
22930
|
};
|
|
22931
22931
|
|
|
22932
|
-
// node_modules
|
|
22932
|
+
// node_modules/tm-grammars/grammars/tsx.json
|
|
22933
22933
|
var tsx_default = {
|
|
22934
22934
|
displayName: "TSX",
|
|
22935
22935
|
name: "tsx",
|
|
@@ -28927,7 +28927,7 @@ var tsx_default = {
|
|
|
28927
28927
|
scopeName: "source.tsx"
|
|
28928
28928
|
};
|
|
28929
28929
|
|
|
28930
|
-
// node_modules
|
|
28930
|
+
// node_modules/tm-grammars/grammars/json.json
|
|
28931
28931
|
var json_default = {
|
|
28932
28932
|
displayName: "JSON",
|
|
28933
28933
|
name: "json",
|
package/dist/lsp/client.mjs
CHANGED
package/dist/lsp/css/worker.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// node_modules
|
|
1
|
+
// node_modules/vscode-css-languageservice/lib/esm/parser/cssScanner.js
|
|
2
2
|
var TokenType;
|
|
3
3
|
(function(TokenType2) {
|
|
4
4
|
TokenType2[TokenType2["Ident"] = 0] = "Ident";
|
|
@@ -560,7 +560,7 @@ var Scanner = class {
|
|
|
560
560
|
}
|
|
561
561
|
};
|
|
562
562
|
|
|
563
|
-
// node_modules
|
|
563
|
+
// node_modules/vscode-css-languageservice/lib/esm/utils/strings.js
|
|
564
564
|
function startsWith(haystack, needle) {
|
|
565
565
|
if (haystack.length < needle.length) {
|
|
566
566
|
return false;
|
|
@@ -638,7 +638,7 @@ function convertSimple2RegExpPattern(pattern) {
|
|
|
638
638
|
return pattern.replace(/[\-\\\{\}\+\?\|\^\$\.\,\[\]\(\)\#\s]/g, "\\$&").replace(/[\*]/g, ".*");
|
|
639
639
|
}
|
|
640
640
|
|
|
641
|
-
// node_modules
|
|
641
|
+
// node_modules/vscode-css-languageservice/lib/esm/parser/cssNodes.js
|
|
642
642
|
var NodeType;
|
|
643
643
|
(function(NodeType2) {
|
|
644
644
|
NodeType2[NodeType2["Undefined"] = 0] = "Undefined";
|
|
@@ -2032,7 +2032,7 @@ var ParseErrorCollector = class _ParseErrorCollector {
|
|
|
2032
2032
|
}
|
|
2033
2033
|
};
|
|
2034
2034
|
|
|
2035
|
-
// node_modules
|
|
2035
|
+
// node_modules/@vscode/l10n/dist/browser.js
|
|
2036
2036
|
var bundle;
|
|
2037
2037
|
function t(...args) {
|
|
2038
2038
|
const firstArg = args[0];
|
|
@@ -2082,7 +2082,7 @@ function format(template, values2) {
|
|
|
2082
2082
|
return template.replace(_format2Regexp, (match, group) => values2[group] ?? match);
|
|
2083
2083
|
}
|
|
2084
2084
|
|
|
2085
|
-
// node_modules
|
|
2085
|
+
// node_modules/vscode-css-languageservice/lib/esm/parser/cssErrors.js
|
|
2086
2086
|
var CSSIssueType = class {
|
|
2087
2087
|
constructor(id, message) {
|
|
2088
2088
|
this.id = id;
|
|
@@ -2125,7 +2125,7 @@ var ParseError = {
|
|
|
2125
2125
|
IdentifierOrVariableExpected: new CSSIssueType("css-idorvarexpected", t("identifier or variable expected"))
|
|
2126
2126
|
};
|
|
2127
2127
|
|
|
2128
|
-
// node_modules
|
|
2128
|
+
// node_modules/vscode-languageserver-types/lib/esm/main.js
|
|
2129
2129
|
var DocumentUri;
|
|
2130
2130
|
(function(DocumentUri2) {
|
|
2131
2131
|
function is(value) {
|
|
@@ -3308,7 +3308,7 @@ var Is;
|
|
|
3308
3308
|
Is2.typedArray = typedArray;
|
|
3309
3309
|
})(Is || (Is = {}));
|
|
3310
3310
|
|
|
3311
|
-
// node_modules
|
|
3311
|
+
// node_modules/vscode-languageserver-textdocument/lib/esm/main.js
|
|
3312
3312
|
var FullTextDocument2 = class _FullTextDocument {
|
|
3313
3313
|
constructor(uri, languageId, version, content) {
|
|
3314
3314
|
this._uri = uri;
|
|
@@ -3532,7 +3532,7 @@ function getWellformedEdit(textEdit) {
|
|
|
3532
3532
|
return textEdit;
|
|
3533
3533
|
}
|
|
3534
3534
|
|
|
3535
|
-
// node_modules
|
|
3535
|
+
// node_modules/vscode-css-languageservice/lib/esm/cssLanguageTypes.js
|
|
3536
3536
|
var ClientCapabilities;
|
|
3537
3537
|
(function(ClientCapabilities2) {
|
|
3538
3538
|
ClientCapabilities2.LATEST = {
|
|
@@ -3556,7 +3556,7 @@ var FileType;
|
|
|
3556
3556
|
FileType2[FileType2["SymbolicLink"] = 64] = "SymbolicLink";
|
|
3557
3557
|
})(FileType || (FileType = {}));
|
|
3558
3558
|
|
|
3559
|
-
// node_modules
|
|
3559
|
+
// node_modules/vscode-css-languageservice/lib/esm/languageFacts/entry.js
|
|
3560
3560
|
var browserNames = {
|
|
3561
3561
|
"C": {
|
|
3562
3562
|
name: "Chrome",
|
|
@@ -3754,7 +3754,7 @@ function getMissingBaselineBrowsers(browsers) {
|
|
|
3754
3754
|
}, {})));
|
|
3755
3755
|
}
|
|
3756
3756
|
|
|
3757
|
-
// node_modules
|
|
3757
|
+
// node_modules/vscode-css-languageservice/lib/esm/languageFacts/colors.js
|
|
3758
3758
|
var hexColorRegExp = /(^#([0-9A-F]{3}){1,2}$)|(^#([0-9A-F]{4}){1,2}$)/i;
|
|
3759
3759
|
var colorFunctions = [
|
|
3760
3760
|
{
|
|
@@ -4583,7 +4583,7 @@ function getColorValue(node) {
|
|
|
4583
4583
|
return null;
|
|
4584
4584
|
}
|
|
4585
4585
|
|
|
4586
|
-
// node_modules
|
|
4586
|
+
// node_modules/vscode-css-languageservice/lib/esm/languageFacts/builtinData.js
|
|
4587
4587
|
var positionKeywords = {
|
|
4588
4588
|
"bottom": "Computes to \u2018100%\u2019 for the vertical position if one or two values are given, otherwise specifies the bottom edge as the origin for the next offset.",
|
|
4589
4589
|
"center": "Computes to \u201850%\u2019 (\u2018left 50%\u2019) for the horizontal position if the horizontal position is not otherwise specified, or \u201850%\u2019 (\u2018top 50%\u2019) for the vertical position if it is.",
|
|
@@ -4906,7 +4906,7 @@ var pageBoxDirectives = [
|
|
|
4906
4906
|
"@top-right-corner"
|
|
4907
4907
|
];
|
|
4908
4908
|
|
|
4909
|
-
// node_modules
|
|
4909
|
+
// node_modules/vscode-css-languageservice/lib/esm/utils/objects.js
|
|
4910
4910
|
function values(obj) {
|
|
4911
4911
|
return Object.keys(obj).map((key) => obj[key]);
|
|
4912
4912
|
}
|
|
@@ -4914,7 +4914,7 @@ function isDefined(obj) {
|
|
|
4914
4914
|
return typeof obj !== "undefined";
|
|
4915
4915
|
}
|
|
4916
4916
|
|
|
4917
|
-
// node_modules
|
|
4917
|
+
// node_modules/vscode-css-languageservice/lib/esm/parser/cssParser.js
|
|
4918
4918
|
var Parser = class {
|
|
4919
4919
|
constructor(scnr = new Scanner()) {
|
|
4920
4920
|
this.keyframeRegex = /^@(\-(webkit|ms|moz|o)\-)?keyframes$/i;
|
|
@@ -6567,7 +6567,7 @@ var Parser = class {
|
|
|
6567
6567
|
}
|
|
6568
6568
|
};
|
|
6569
6569
|
|
|
6570
|
-
// node_modules
|
|
6570
|
+
// node_modules/vscode-css-languageservice/lib/esm/utils/arrays.js
|
|
6571
6571
|
function findFirst(array, p) {
|
|
6572
6572
|
let low = 0, high = array.length;
|
|
6573
6573
|
if (high === 0) {
|
|
@@ -6598,7 +6598,7 @@ function union(...arrays) {
|
|
|
6598
6598
|
return result;
|
|
6599
6599
|
}
|
|
6600
6600
|
|
|
6601
|
-
// node_modules
|
|
6601
|
+
// node_modules/vscode-css-languageservice/lib/esm/parser/cssSymbolScope.js
|
|
6602
6602
|
var Scope2 = class {
|
|
6603
6603
|
constructor(offset, length) {
|
|
6604
6604
|
this.offset = offset;
|
|
@@ -6897,7 +6897,7 @@ var Symbols = class {
|
|
|
6897
6897
|
}
|
|
6898
6898
|
};
|
|
6899
6899
|
|
|
6900
|
-
// node_modules
|
|
6900
|
+
// node_modules/vscode-uri/lib/esm/index.mjs
|
|
6901
6901
|
var LIB;
|
|
6902
6902
|
(() => {
|
|
6903
6903
|
"use strict";
|
|
@@ -7232,7 +7232,7 @@ var LIB;
|
|
|
7232
7232
|
})();
|
|
7233
7233
|
var { URI: URI2, Utils } = LIB;
|
|
7234
7234
|
|
|
7235
|
-
// node_modules
|
|
7235
|
+
// node_modules/vscode-css-languageservice/lib/esm/utils/resources.js
|
|
7236
7236
|
function dirname(uriString) {
|
|
7237
7237
|
return Utils.dirname(URI2.parse(uriString)).toString(true);
|
|
7238
7238
|
}
|
|
@@ -7240,7 +7240,7 @@ function joinPath(uriString, ...paths) {
|
|
|
7240
7240
|
return Utils.joinPath(URI2.parse(uriString), ...paths).toString(true);
|
|
7241
7241
|
}
|
|
7242
7242
|
|
|
7243
|
-
// node_modules
|
|
7243
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/pathCompletion.js
|
|
7244
7244
|
var PathCompletionParticipant = class {
|
|
7245
7245
|
constructor(readDirectory) {
|
|
7246
7246
|
this.readDirectory = readDirectory;
|
|
@@ -7376,7 +7376,7 @@ function shiftRange(range, startOffset, endOffset) {
|
|
|
7376
7376
|
return Range.create(start, end);
|
|
7377
7377
|
}
|
|
7378
7378
|
|
|
7379
|
-
// node_modules
|
|
7379
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/cssCompletion.js
|
|
7380
7380
|
var SnippetFormat = InsertTextFormat.Snippet;
|
|
7381
7381
|
var retriggerCommand = {
|
|
7382
7382
|
title: "Suggest",
|
|
@@ -8413,7 +8413,7 @@ function getCurrentWord(document, offset) {
|
|
|
8413
8413
|
return text.substring(i + 1, offset);
|
|
8414
8414
|
}
|
|
8415
8415
|
|
|
8416
|
-
// node_modules
|
|
8416
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/selectorPrinting.js
|
|
8417
8417
|
var Element = class _Element {
|
|
8418
8418
|
constructor() {
|
|
8419
8419
|
this.parent = null;
|
|
@@ -8925,7 +8925,7 @@ function selectorToElement(node) {
|
|
|
8925
8925
|
return root;
|
|
8926
8926
|
}
|
|
8927
8927
|
|
|
8928
|
-
// node_modules
|
|
8928
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/cssHover.js
|
|
8929
8929
|
var CSSHover = class {
|
|
8930
8930
|
constructor(clientCapabilities, cssDataManager) {
|
|
8931
8931
|
this.clientCapabilities = clientCapabilities;
|
|
@@ -9061,7 +9061,7 @@ var CSSHover = class {
|
|
|
9061
9061
|
}
|
|
9062
9062
|
};
|
|
9063
9063
|
|
|
9064
|
-
// node_modules
|
|
9064
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/cssNavigation.js
|
|
9065
9065
|
var startsWithSchemeRegex = /^\w+:\/\//;
|
|
9066
9066
|
var startsWithData = /^data:/;
|
|
9067
9067
|
var CSSNavigation = class {
|
|
@@ -9528,7 +9528,7 @@ function getModuleNameFromPath(path) {
|
|
|
9528
9528
|
return path.substring(0, firstSlash);
|
|
9529
9529
|
}
|
|
9530
9530
|
|
|
9531
|
-
// node_modules
|
|
9531
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/lintRules.js
|
|
9532
9532
|
var Warning = Level.Warning;
|
|
9533
9533
|
var Error2 = Level.Error;
|
|
9534
9534
|
var Ignore = Level.Ignore;
|
|
@@ -9599,7 +9599,7 @@ function toLevel(level) {
|
|
|
9599
9599
|
return null;
|
|
9600
9600
|
}
|
|
9601
9601
|
|
|
9602
|
-
// node_modules
|
|
9602
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/cssCodeActions.js
|
|
9603
9603
|
var CSSCodeActions = class {
|
|
9604
9604
|
constructor(cssDataManager) {
|
|
9605
9605
|
this.cssDataManager = cssDataManager;
|
|
@@ -9666,7 +9666,7 @@ var CSSCodeActions = class {
|
|
|
9666
9666
|
}
|
|
9667
9667
|
};
|
|
9668
9668
|
|
|
9669
|
-
// node_modules
|
|
9669
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/lintUtil.js
|
|
9670
9670
|
var Element2 = class {
|
|
9671
9671
|
constructor(decl) {
|
|
9672
9672
|
this.fullPropertyName = decl.getFullPropertyName().toLowerCase();
|
|
@@ -9841,7 +9841,7 @@ function calculateBoxModel(propertyTable) {
|
|
|
9841
9841
|
return model;
|
|
9842
9842
|
}
|
|
9843
9843
|
|
|
9844
|
-
// node_modules
|
|
9844
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/lint.js
|
|
9845
9845
|
var NodesByRootMap = class {
|
|
9846
9846
|
constructor() {
|
|
9847
9847
|
this.data = {};
|
|
@@ -10345,7 +10345,7 @@ LintVisitor.prefixes = [
|
|
|
10345
10345
|
// '-xv-', '-atsc-', '-wap-', '-khtml-', 'mso-', 'prince-', '-ah-', '-hp-', '-ro-', '-rim-', '-tc-' // Quite un-common
|
|
10346
10346
|
];
|
|
10347
10347
|
|
|
10348
|
-
// node_modules
|
|
10348
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/cssValidation.js
|
|
10349
10349
|
var CSSValidation = class {
|
|
10350
10350
|
constructor(cssDataManager) {
|
|
10351
10351
|
this.cssDataManager = cssDataManager;
|
|
@@ -10379,7 +10379,7 @@ var CSSValidation = class {
|
|
|
10379
10379
|
}
|
|
10380
10380
|
};
|
|
10381
10381
|
|
|
10382
|
-
// node_modules
|
|
10382
|
+
// node_modules/vscode-css-languageservice/lib/esm/parser/scssScanner.js
|
|
10383
10383
|
var _FSL2 = "/".charCodeAt(0);
|
|
10384
10384
|
var _NWL2 = "\n".charCodeAt(0);
|
|
10385
10385
|
var _CAR2 = "\r".charCodeAt(0);
|
|
@@ -10461,7 +10461,7 @@ var SCSSScanner = class extends Scanner {
|
|
|
10461
10461
|
}
|
|
10462
10462
|
};
|
|
10463
10463
|
|
|
10464
|
-
// node_modules
|
|
10464
|
+
// node_modules/vscode-css-languageservice/lib/esm/parser/scssErrors.js
|
|
10465
10465
|
var SCSSIssueType = class {
|
|
10466
10466
|
constructor(id, message) {
|
|
10467
10467
|
this.id = id;
|
|
@@ -10474,7 +10474,7 @@ var SCSSParseError = {
|
|
|
10474
10474
|
InExpected: new SCSSIssueType("scss-fromexpected", t("'in' expected"))
|
|
10475
10475
|
};
|
|
10476
10476
|
|
|
10477
|
-
// node_modules
|
|
10477
|
+
// node_modules/vscode-css-languageservice/lib/esm/parser/scssParser.js
|
|
10478
10478
|
var SCSSParser = class extends Parser {
|
|
10479
10479
|
constructor() {
|
|
10480
10480
|
super(new SCSSScanner());
|
|
@@ -11192,7 +11192,7 @@ var SCSSParser = class extends Parser {
|
|
|
11192
11192
|
}
|
|
11193
11193
|
};
|
|
11194
11194
|
|
|
11195
|
-
// node_modules
|
|
11195
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/scssCompletion.js
|
|
11196
11196
|
var sassDocumentationName = t("Sass documentation");
|
|
11197
11197
|
var SCSSCompletion = class _SCSSCompletion extends CSSCompletion {
|
|
11198
11198
|
constructor(lsServiceOptions, cssDataManager) {
|
|
@@ -11530,7 +11530,7 @@ function addReferencesToDocumentation(items) {
|
|
|
11530
11530
|
});
|
|
11531
11531
|
}
|
|
11532
11532
|
|
|
11533
|
-
// node_modules
|
|
11533
|
+
// node_modules/vscode-css-languageservice/lib/esm/parser/lessScanner.js
|
|
11534
11534
|
var _FSL3 = "/".charCodeAt(0);
|
|
11535
11535
|
var _NWL3 = "\n".charCodeAt(0);
|
|
11536
11536
|
var _CAR3 = "\r".charCodeAt(0);
|
|
@@ -11583,7 +11583,7 @@ var LESSScanner = class extends Scanner {
|
|
|
11583
11583
|
}
|
|
11584
11584
|
};
|
|
11585
11585
|
|
|
11586
|
-
// node_modules
|
|
11586
|
+
// node_modules/vscode-css-languageservice/lib/esm/parser/lessParser.js
|
|
11587
11587
|
var LESSParser = class extends Parser {
|
|
11588
11588
|
constructor() {
|
|
11589
11589
|
super(new LESSScanner());
|
|
@@ -12225,7 +12225,7 @@ var LESSParser = class extends Parser {
|
|
|
12225
12225
|
}
|
|
12226
12226
|
};
|
|
12227
12227
|
|
|
12228
|
-
// node_modules
|
|
12228
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/lessCompletion.js
|
|
12229
12229
|
var LESSCompletion = class _LESSCompletion extends CSSCompletion {
|
|
12230
12230
|
constructor(lsOptions, cssDataManager) {
|
|
12231
12231
|
super("@", lsOptions, cssDataManager);
|
|
@@ -12596,7 +12596,7 @@ LESSCompletion.colorProposals = [
|
|
|
12596
12596
|
}
|
|
12597
12597
|
];
|
|
12598
12598
|
|
|
12599
|
-
// node_modules
|
|
12599
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/cssFolding.js
|
|
12600
12600
|
function getFoldingRanges(document, context) {
|
|
12601
12601
|
const ranges = computeFoldingRanges(document);
|
|
12602
12602
|
return limitFoldingRanges(ranges, context);
|
|
@@ -12759,7 +12759,7 @@ function limitFoldingRanges(ranges, context) {
|
|
|
12759
12759
|
}
|
|
12760
12760
|
}
|
|
12761
12761
|
|
|
12762
|
-
// node_modules
|
|
12762
|
+
// node_modules/vscode-css-languageservice/lib/esm/beautify/beautify-css.js
|
|
12763
12763
|
var legacy_beautify_css;
|
|
12764
12764
|
(function() {
|
|
12765
12765
|
"use strict";
|
|
@@ -13843,7 +13843,7 @@ var legacy_beautify_css;
|
|
|
13843
13843
|
})();
|
|
13844
13844
|
var css_beautify = legacy_beautify_css;
|
|
13845
13845
|
|
|
13846
|
-
// node_modules
|
|
13846
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/cssFormatter.js
|
|
13847
13847
|
function format2(document, range, options) {
|
|
13848
13848
|
let value = document.getText();
|
|
13849
13849
|
let includesEnd = true;
|
|
@@ -13966,7 +13966,7 @@ function isWhitespace(text, offset) {
|
|
|
13966
13966
|
return " ".indexOf(text.charAt(offset)) !== -1;
|
|
13967
13967
|
}
|
|
13968
13968
|
|
|
13969
|
-
// node_modules
|
|
13969
|
+
// node_modules/vscode-css-languageservice/lib/esm/data/webCustomData.js
|
|
13970
13970
|
var cssData = {
|
|
13971
13971
|
"version": 1.1,
|
|
13972
13972
|
"properties": [
|
|
@@ -47756,7 +47756,7 @@ var cssData = {
|
|
|
47756
47756
|
]
|
|
47757
47757
|
};
|
|
47758
47758
|
|
|
47759
|
-
// node_modules
|
|
47759
|
+
// node_modules/vscode-css-languageservice/lib/esm/languageFacts/dataProvider.js
|
|
47760
47760
|
var CSSDataProvider = class {
|
|
47761
47761
|
/**
|
|
47762
47762
|
* Currently, unversioned data uses the V1 implementation
|
|
@@ -47826,7 +47826,7 @@ function isPseudoElementData(d) {
|
|
|
47826
47826
|
return typeof d.name === "string";
|
|
47827
47827
|
}
|
|
47828
47828
|
|
|
47829
|
-
// node_modules
|
|
47829
|
+
// node_modules/vscode-css-languageservice/lib/esm/languageFacts/dataManager.js
|
|
47830
47830
|
var CSSDataManager = class {
|
|
47831
47831
|
constructor(options) {
|
|
47832
47832
|
this.dataProviders = [];
|
|
@@ -47915,7 +47915,7 @@ var CSSDataManager = class {
|
|
|
47915
47915
|
}
|
|
47916
47916
|
};
|
|
47917
47917
|
|
|
47918
|
-
// node_modules
|
|
47918
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/cssSelectionRange.js
|
|
47919
47919
|
function getSelectionRanges(document, positions, stylesheet) {
|
|
47920
47920
|
function getSelectionRange(position) {
|
|
47921
47921
|
const applicableRanges = getApplicableRanges(position);
|
|
@@ -47953,7 +47953,7 @@ function getSelectionRanges(document, positions, stylesheet) {
|
|
|
47953
47953
|
}
|
|
47954
47954
|
}
|
|
47955
47955
|
|
|
47956
|
-
// node_modules
|
|
47956
|
+
// node_modules/vscode-css-languageservice/lib/esm/services/scssNavigation.js
|
|
47957
47957
|
var SCSSNavigation = class extends CSSNavigation {
|
|
47958
47958
|
constructor(fileSystemProvider) {
|
|
47959
47959
|
super(fileSystemProvider, true);
|
|
@@ -48069,7 +48069,7 @@ function toPathVariations(target) {
|
|
|
48069
48069
|
];
|
|
48070
48070
|
}
|
|
48071
48071
|
|
|
48072
|
-
// node_modules
|
|
48072
|
+
// node_modules/vscode-css-languageservice/lib/esm/cssLanguageService.js
|
|
48073
48073
|
function newCSSDataProvider(data) {
|
|
48074
48074
|
return new CSSDataProvider(data);
|
|
48075
48075
|
}
|