@vue/compiler-sfc 3.6.0-beta.7 → 3.6.0-beta.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/dist/compiler-sfc.cjs.js +258 -404
- package/dist/compiler-sfc.d.ts +1 -4
- package/dist/compiler-sfc.esm-browser.js +371 -659
- package/package.json +8 -8
package/dist/compiler-sfc.cjs.js
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compiler-sfc v3.6.0-beta.
|
|
2
|
+
* @vue/compiler-sfc v3.6.0-beta.8
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
6
|
-
Object.defineProperties(exports, {
|
|
6
|
+
Object.defineProperties(exports, {
|
|
7
|
+
__esModule: { value: true },
|
|
8
|
+
[Symbol.toStringTag]: { value: "Module" }
|
|
9
|
+
});
|
|
7
10
|
//#region \0rolldown/runtime.js
|
|
8
11
|
var __create = Object.create;
|
|
9
12
|
var __defProp = Object.defineProperty;
|
|
@@ -13,16 +16,12 @@ var __getProtoOf = Object.getPrototypeOf;
|
|
|
13
16
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
14
17
|
var __commonJSMin = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
15
18
|
var __copyProps = (to, from, except, desc) => {
|
|
16
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
23
|
-
});
|
|
24
|
-
}
|
|
25
|
-
}
|
|
19
|
+
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
20
|
+
key = keys[i];
|
|
21
|
+
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
22
|
+
get: ((k) => from[k]).bind(null, key),
|
|
23
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
24
|
+
});
|
|
26
25
|
}
|
|
27
26
|
return to;
|
|
28
27
|
};
|
|
@@ -30,7 +29,6 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
30
29
|
value: mod,
|
|
31
30
|
enumerable: true
|
|
32
31
|
}) : target, mod));
|
|
33
|
-
|
|
34
32
|
//#endregion
|
|
35
33
|
let _vue_compiler_core = require("@vue/compiler-core");
|
|
36
34
|
let _vue_compiler_dom = require("@vue/compiler-dom");
|
|
@@ -52,9 +50,9 @@ magic_string = __toESM(magic_string);
|
|
|
52
50
|
let _babel_parser = require("@babel/parser");
|
|
53
51
|
let process$1 = require("process");
|
|
54
52
|
process$1 = __toESM(process$1);
|
|
55
|
-
|
|
56
|
-
//#region
|
|
57
|
-
var
|
|
53
|
+
//#endregion
|
|
54
|
+
//#region packages/compiler-sfc/src/style/cssVars.ts
|
|
55
|
+
var import_hash_sum = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
58
56
|
function pad(hash, len) {
|
|
59
57
|
while (hash.length < len) hash = "0" + hash;
|
|
60
58
|
return hash;
|
|
@@ -101,11 +99,7 @@ var require_hash_sum = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
101
99
|
return pad(foldValue(0, o, "", []).toString(16), 8);
|
|
102
100
|
}
|
|
103
101
|
module.exports = sum;
|
|
104
|
-
}));
|
|
105
|
-
|
|
106
|
-
//#endregion
|
|
107
|
-
//#region packages/compiler-sfc/src/style/cssVars.ts
|
|
108
|
-
var import_hash_sum = /* @__PURE__ */ __toESM(require_hash_sum());
|
|
102
|
+
})))());
|
|
109
103
|
const CSS_VARS_HELPER = `useCssVars`;
|
|
110
104
|
function getCssVarsHelper(vapor) {
|
|
111
105
|
return vapor ? `useVaporCssVars` : CSS_VARS_HELPER;
|
|
@@ -202,44 +196,37 @@ function genCssVarsCode(vars, bindings, id, isProd, vapor) {
|
|
|
202
196
|
function genNormalScriptCssVarsCode(cssVars, bindings, id, isProd, defaultVar) {
|
|
203
197
|
return `\nimport { ${CSS_VARS_HELPER} as _${CSS_VARS_HELPER} } from 'vue'\nconst __injectCSSVars__ = () => {\n${genCssVarsCode(cssVars, bindings, id, isProd)}}\nconst __setup__ = ${defaultVar}.setup\n${defaultVar}.setup = __setup__\n ? (props, ctx) => { __injectCSSVars__();return __setup__(props, ctx) }\n : __injectCSSVars__\n`;
|
|
204
198
|
}
|
|
205
|
-
|
|
206
199
|
//#endregion
|
|
207
|
-
//#region \0@oxc-project+runtime@0.
|
|
200
|
+
//#region \0@oxc-project+runtime@0.115.0/helpers/checkPrivateRedeclaration.js
|
|
208
201
|
function _checkPrivateRedeclaration(e, t) {
|
|
209
202
|
if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object");
|
|
210
203
|
}
|
|
211
|
-
|
|
212
204
|
//#endregion
|
|
213
|
-
//#region \0@oxc-project+runtime@0.
|
|
205
|
+
//#region \0@oxc-project+runtime@0.115.0/helpers/classPrivateMethodInitSpec.js
|
|
214
206
|
function _classPrivateMethodInitSpec(e, a) {
|
|
215
207
|
_checkPrivateRedeclaration(e, a), a.add(e);
|
|
216
208
|
}
|
|
217
|
-
|
|
218
209
|
//#endregion
|
|
219
|
-
//#region \0@oxc-project+runtime@0.
|
|
210
|
+
//#region \0@oxc-project+runtime@0.115.0/helpers/classPrivateFieldInitSpec.js
|
|
220
211
|
function _classPrivateFieldInitSpec(e, t, a) {
|
|
221
212
|
_checkPrivateRedeclaration(e, t), t.set(e, a);
|
|
222
213
|
}
|
|
223
|
-
|
|
224
214
|
//#endregion
|
|
225
|
-
//#region \0@oxc-project+runtime@0.
|
|
215
|
+
//#region \0@oxc-project+runtime@0.115.0/helpers/assertClassBrand.js
|
|
226
216
|
function _assertClassBrand(e, t, n) {
|
|
227
217
|
if ("function" == typeof e ? e === t : e.has(t)) return arguments.length < 3 ? t : n;
|
|
228
218
|
throw new TypeError("Private element is not present on this object");
|
|
229
219
|
}
|
|
230
|
-
|
|
231
220
|
//#endregion
|
|
232
|
-
//#region \0@oxc-project+runtime@0.
|
|
221
|
+
//#region \0@oxc-project+runtime@0.115.0/helpers/classPrivateFieldGet2.js
|
|
233
222
|
function _classPrivateFieldGet2(s, a) {
|
|
234
223
|
return s.get(_assertClassBrand(s, a));
|
|
235
224
|
}
|
|
236
|
-
|
|
237
225
|
//#endregion
|
|
238
|
-
//#region \0@oxc-project+runtime@0.
|
|
226
|
+
//#region \0@oxc-project+runtime@0.115.0/helpers/classPrivateFieldSet2.js
|
|
239
227
|
function _classPrivateFieldSet2(s, a, r) {
|
|
240
228
|
return s.set(_assertClassBrand(s, a), r), r;
|
|
241
229
|
}
|
|
242
|
-
|
|
243
230
|
//#endregion
|
|
244
231
|
//#region node_modules/.pnpm/lru-cache@10.1.0/node_modules/lru-cache/dist/esm/index.js
|
|
245
232
|
let _Symbol$iterator;
|
|
@@ -1312,13 +1299,11 @@ function _moveToTail(index) {
|
|
|
1312
1299
|
_classPrivateFieldSet2(_tail, this, index);
|
|
1313
1300
|
}
|
|
1314
1301
|
}
|
|
1315
|
-
|
|
1316
1302
|
//#endregion
|
|
1317
1303
|
//#region packages/compiler-sfc/src/cache.ts
|
|
1318
1304
|
function createCache(max = 500) {
|
|
1319
1305
|
return new LRUCache({ max });
|
|
1320
1306
|
}
|
|
1321
|
-
|
|
1322
1307
|
//#endregion
|
|
1323
1308
|
//#region packages/compiler-sfc/src/script/importUsageCheck.ts
|
|
1324
1309
|
/**
|
|
@@ -1396,7 +1381,6 @@ function extractIdentifiers$2(ids, node) {
|
|
|
1396
1381
|
if (node.ast) (0, _vue_compiler_dom.walkIdentifiers)(node.ast, (n) => ids.add(n.name));
|
|
1397
1382
|
else if (node.ast === null) ids.add(node.content);
|
|
1398
1383
|
}
|
|
1399
|
-
|
|
1400
1384
|
//#endregion
|
|
1401
1385
|
//#region packages/compiler-sfc/src/parse.ts
|
|
1402
1386
|
const DEFAULT_FILENAME = "anonymous.vue";
|
|
@@ -1614,7 +1598,6 @@ function dedent(s) {
|
|
|
1614
1598
|
return line.slice(minIndent);
|
|
1615
1599
|
}).join("\n"), minIndent];
|
|
1616
1600
|
}
|
|
1617
|
-
|
|
1618
1601
|
//#endregion
|
|
1619
1602
|
//#region packages/compiler-sfc/src/template/templateUtils.ts
|
|
1620
1603
|
function isRelativeUrl(url$1) {
|
|
@@ -1646,7 +1629,80 @@ function parseUrl(url$4) {
|
|
|
1646
1629
|
function parseUriParts(urlString) {
|
|
1647
1630
|
return (0, url.parse)((0, _vue_shared.isString)(urlString) ? urlString : "", false, true);
|
|
1648
1631
|
}
|
|
1649
|
-
|
|
1632
|
+
/**
|
|
1633
|
+
* Whether the current component should be treated as multi-root at the
|
|
1634
|
+
* component boundary.
|
|
1635
|
+
*
|
|
1636
|
+
* This is currently only attached to Vapor components. During Vapor hydration,
|
|
1637
|
+
* components hydrate while they are being created, so the runtime needs this
|
|
1638
|
+
* metadata to know whether the current SSR `<!--[--> ... <!--]-->` belongs to
|
|
1639
|
+
* the component itself and should be consumed before hydrating its children.
|
|
1640
|
+
*
|
|
1641
|
+
* The inference is aligned with compile-ssr's ownership semantics: it answers
|
|
1642
|
+
* whether the component root itself owns an outer fragment wrapper.
|
|
1643
|
+
*/
|
|
1644
|
+
function isMultiRoot(template, parserOptions) {
|
|
1645
|
+
const preserveComments = (parserOptions === null || parserOptions === void 0 ? void 0 : parserOptions.comments) !== false;
|
|
1646
|
+
if (typeof template === "string") return countRootUnits(parse(`<template>${template}</template>`, {
|
|
1647
|
+
sourceMap: false,
|
|
1648
|
+
ignoreEmpty: false,
|
|
1649
|
+
templateParseOptions: parserOptions
|
|
1650
|
+
}).descriptor.template.ast, preserveComments) > 1;
|
|
1651
|
+
if (isTemplateBlock(template)) return countRootUnits(template.ast, preserveComments) > 1;
|
|
1652
|
+
return countRootUnits(template, preserveComments) > 1;
|
|
1653
|
+
}
|
|
1654
|
+
function countRootUnits(parent, preserveComments) {
|
|
1655
|
+
const { children } = parent;
|
|
1656
|
+
let count = 0;
|
|
1657
|
+
for (let i = 0; i < children.length; i++) {
|
|
1658
|
+
const child = children[i];
|
|
1659
|
+
if (isWhitespaceRootText(child)) continue;
|
|
1660
|
+
if (isIfBranchStart(child)) {
|
|
1661
|
+
count++;
|
|
1662
|
+
let lastBranchIndex = i;
|
|
1663
|
+
let nextIndex = i + 1;
|
|
1664
|
+
while (nextIndex < children.length) {
|
|
1665
|
+
let continuationIndex = nextIndex;
|
|
1666
|
+
while (continuationIndex < children.length && isIgnorableIfChainSeparator(children[continuationIndex])) continuationIndex++;
|
|
1667
|
+
if (continuationIndex < children.length && isIfBranchContinuation(children[continuationIndex])) {
|
|
1668
|
+
lastBranchIndex = continuationIndex;
|
|
1669
|
+
nextIndex = continuationIndex + 1;
|
|
1670
|
+
continue;
|
|
1671
|
+
}
|
|
1672
|
+
break;
|
|
1673
|
+
}
|
|
1674
|
+
i = lastBranchIndex;
|
|
1675
|
+
continue;
|
|
1676
|
+
}
|
|
1677
|
+
count += countRootUnit(child, preserveComments);
|
|
1678
|
+
}
|
|
1679
|
+
return count;
|
|
1680
|
+
}
|
|
1681
|
+
function countRootUnit(node, preserveComments) {
|
|
1682
|
+
if (node.type !== 1) return node.type === 3 && !preserveComments ? 0 : 1;
|
|
1683
|
+
if (hasStructuralDirective(node, "if") || hasStructuralDirective(node, "for")) return 1;
|
|
1684
|
+
if (node.tag === "slot" || node.tagType === 1) return 1;
|
|
1685
|
+
if (node.tagType === 3) return countRootUnits(node, preserveComments);
|
|
1686
|
+
return 1;
|
|
1687
|
+
}
|
|
1688
|
+
function hasStructuralDirective(node, name) {
|
|
1689
|
+
return !!(0, _vue_compiler_dom.findDir)(node, name);
|
|
1690
|
+
}
|
|
1691
|
+
function isIfBranchStart(node) {
|
|
1692
|
+
return node.type === 1 && hasStructuralDirective(node, "if");
|
|
1693
|
+
}
|
|
1694
|
+
function isIfBranchContinuation(node) {
|
|
1695
|
+
return node.type === 1 && !!(0, _vue_compiler_dom.findDir)(node, /^else(-if)?$/, true);
|
|
1696
|
+
}
|
|
1697
|
+
function isWhitespaceRootText(node) {
|
|
1698
|
+
return node.type === 2 && !node.content.trim();
|
|
1699
|
+
}
|
|
1700
|
+
function isIgnorableIfChainSeparator(node) {
|
|
1701
|
+
return isWhitespaceRootText(node) || node.type === 3;
|
|
1702
|
+
}
|
|
1703
|
+
function isTemplateBlock(value) {
|
|
1704
|
+
return "content" in value && "attrs" in value;
|
|
1705
|
+
}
|
|
1650
1706
|
//#endregion
|
|
1651
1707
|
//#region packages/compiler-sfc/src/template/transformAssetUrl.ts
|
|
1652
1708
|
const defaultAssetUrlOptions = {
|
|
@@ -1744,7 +1800,6 @@ function getImportsExpressionExp(path$24, hash, loc, context) {
|
|
|
1744
1800
|
return context.hoist(finalExp);
|
|
1745
1801
|
} else return (0, _vue_compiler_core.createSimpleExpression)(`''`, false, loc, 3);
|
|
1746
1802
|
}
|
|
1747
|
-
|
|
1748
1803
|
//#endregion
|
|
1749
1804
|
//#region packages/compiler-sfc/src/template/transformSrcset.ts
|
|
1750
1805
|
const srcsetTags = ["img", "source"];
|
|
@@ -1834,7 +1889,6 @@ const transformSrcset = (node, context, options = defaultAssetUrlOptions) => {
|
|
|
1834
1889
|
});
|
|
1835
1890
|
}
|
|
1836
1891
|
};
|
|
1837
|
-
|
|
1838
1892
|
//#endregion
|
|
1839
1893
|
//#region node_modules/.pnpm/@vue+consolidate@1.0.0/node_modules/@vue/consolidate/lib/consolidate.js
|
|
1840
1894
|
var require_consolidate$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -3128,16 +3182,11 @@ var require_consolidate$1 = /* @__PURE__ */ __commonJSMin(((exports, module) =>
|
|
|
3128
3182
|
*/
|
|
3129
3183
|
exports.requires = requires;
|
|
3130
3184
|
}));
|
|
3131
|
-
|
|
3132
|
-
//#endregion
|
|
3133
|
-
//#region node_modules/.pnpm/@vue+consolidate@1.0.0/node_modules/@vue/consolidate/index.js
|
|
3134
|
-
var require_consolidate = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
3135
|
-
module.exports = require_consolidate$1();
|
|
3136
|
-
}));
|
|
3137
|
-
|
|
3138
3185
|
//#endregion
|
|
3139
3186
|
//#region packages/compiler-sfc/src/warn.ts
|
|
3140
|
-
var import_consolidate = /* @__PURE__ */ __toESM(
|
|
3187
|
+
var import_consolidate = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
3188
|
+
module.exports = require_consolidate$1();
|
|
3189
|
+
})))());
|
|
3141
3190
|
const hasWarned = {};
|
|
3142
3191
|
function warnOnce(msg) {
|
|
3143
3192
|
if (!(typeof process !== "undefined" && process.env.NODE_ENV === "production") && !hasWarned[msg]) {
|
|
@@ -3148,7 +3197,6 @@ function warnOnce(msg) {
|
|
|
3148
3197
|
function warn(msg) {
|
|
3149
3198
|
console.warn(`\x1b[1m\x1b[33m[@vue/compiler-sfc]\x1b[0m\x1b[33m ${msg}\x1b[0m\n`);
|
|
3150
3199
|
}
|
|
3151
|
-
|
|
3152
3200
|
//#endregion
|
|
3153
3201
|
//#region packages/compiler-sfc/src/compileTemplate.ts
|
|
3154
3202
|
function preprocess$1({ source, filename, preprocessOptions }, preprocessor) {
|
|
@@ -3233,17 +3281,19 @@ function doCompileTemplate({ filename, id, scoped, slotted, inMap, source, ast:
|
|
|
3233
3281
|
if (map) map = mapLines(inMap, map);
|
|
3234
3282
|
if (errors.length) patchErrors(errors, source, inMap);
|
|
3235
3283
|
}
|
|
3284
|
+
const tips = warnings.map((w) => {
|
|
3285
|
+
let msg = w.message;
|
|
3286
|
+
if (w.loc) msg += `\n${(0, _vue_shared.generateCodeFrame)((inAST === null || inAST === void 0 ? void 0 : inAST.source) || source, w.loc.start.offset, w.loc.end.offset)}`;
|
|
3287
|
+
return msg;
|
|
3288
|
+
});
|
|
3236
3289
|
return {
|
|
3237
3290
|
code,
|
|
3238
3291
|
ast,
|
|
3239
3292
|
preamble,
|
|
3293
|
+
multiRoot: vapor ? isMultiRoot(inAST || source, compilerOptions) : void 0,
|
|
3240
3294
|
source,
|
|
3241
3295
|
errors,
|
|
3242
|
-
tips
|
|
3243
|
-
let msg = w.message;
|
|
3244
|
-
if (w.loc) msg += `\n${(0, _vue_shared.generateCodeFrame)((inAST === null || inAST === void 0 ? void 0 : inAST.source) || source, w.loc.start.offset, w.loc.end.offset)}`;
|
|
3245
|
-
return msg;
|
|
3246
|
-
}),
|
|
3296
|
+
tips,
|
|
3247
3297
|
map,
|
|
3248
3298
|
helpers
|
|
3249
3299
|
};
|
|
@@ -3299,7 +3349,6 @@ function patchErrors(errors, source, inMap) {
|
|
|
3299
3349
|
}
|
|
3300
3350
|
});
|
|
3301
3351
|
}
|
|
3302
|
-
|
|
3303
3352
|
//#endregion
|
|
3304
3353
|
//#region packages/compiler-sfc/src/style/pluginTrim.ts
|
|
3305
3354
|
const trimPlugin = () => {
|
|
@@ -3316,7 +3365,6 @@ const trimPlugin = () => {
|
|
|
3316
3365
|
};
|
|
3317
3366
|
};
|
|
3318
3367
|
trimPlugin.postcss = true;
|
|
3319
|
-
|
|
3320
3368
|
//#endregion
|
|
3321
3369
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/util/unesc.js
|
|
3322
3370
|
var require_unesc = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -3369,7 +3417,6 @@ var require_unesc = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
3369
3417
|
}
|
|
3370
3418
|
module.exports = exports.default;
|
|
3371
3419
|
}));
|
|
3372
|
-
|
|
3373
3420
|
//#endregion
|
|
3374
3421
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/util/getProp.js
|
|
3375
3422
|
var require_getProp = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -3386,7 +3433,6 @@ var require_getProp = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
3386
3433
|
}
|
|
3387
3434
|
module.exports = exports.default;
|
|
3388
3435
|
}));
|
|
3389
|
-
|
|
3390
3436
|
//#endregion
|
|
3391
3437
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/util/ensureObject.js
|
|
3392
3438
|
var require_ensureObject = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -3402,7 +3448,6 @@ var require_ensureObject = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
3402
3448
|
}
|
|
3403
3449
|
module.exports = exports.default;
|
|
3404
3450
|
}));
|
|
3405
|
-
|
|
3406
3451
|
//#endregion
|
|
3407
3452
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/util/stripComments.js
|
|
3408
3453
|
var require_stripComments = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -3424,25 +3469,19 @@ var require_stripComments = /* @__PURE__ */ __commonJSMin(((exports, module) =>
|
|
|
3424
3469
|
}
|
|
3425
3470
|
module.exports = exports.default;
|
|
3426
3471
|
}));
|
|
3427
|
-
|
|
3428
3472
|
//#endregion
|
|
3429
3473
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/util/index.js
|
|
3430
3474
|
var require_util$1 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3431
3475
|
exports.__esModule = true;
|
|
3432
3476
|
exports.unesc = exports.stripComments = exports.getProp = exports.ensureObject = void 0;
|
|
3433
|
-
|
|
3434
|
-
exports.
|
|
3435
|
-
|
|
3436
|
-
exports.
|
|
3437
|
-
var _ensureObject = _interopRequireDefault(require_ensureObject());
|
|
3438
|
-
exports.ensureObject = _ensureObject["default"];
|
|
3439
|
-
var _stripComments = _interopRequireDefault(require_stripComments());
|
|
3440
|
-
exports.stripComments = _stripComments["default"];
|
|
3477
|
+
exports.unesc = _interopRequireDefault(require_unesc())["default"];
|
|
3478
|
+
exports.getProp = _interopRequireDefault(require_getProp())["default"];
|
|
3479
|
+
exports.ensureObject = _interopRequireDefault(require_ensureObject())["default"];
|
|
3480
|
+
exports.stripComments = _interopRequireDefault(require_stripComments())["default"];
|
|
3441
3481
|
function _interopRequireDefault(obj) {
|
|
3442
3482
|
return obj && obj.__esModule ? obj : { "default": obj };
|
|
3443
3483
|
}
|
|
3444
3484
|
}));
|
|
3445
|
-
|
|
3446
3485
|
//#endregion
|
|
3447
3486
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/node.js
|
|
3448
3487
|
var require_node$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -3479,7 +3518,7 @@ var require_node$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
3479
3518
|
}
|
|
3480
3519
|
return cloned;
|
|
3481
3520
|
};
|
|
3482
|
-
|
|
3521
|
+
exports["default"] = /* @__PURE__ */ function() {
|
|
3483
3522
|
function Node(opts) {
|
|
3484
3523
|
if (opts === void 0) opts = {};
|
|
3485
3524
|
Object.assign(this, opts);
|
|
@@ -3576,41 +3615,26 @@ var require_node$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
3576
3615
|
}]);
|
|
3577
3616
|
return Node;
|
|
3578
3617
|
}();
|
|
3579
|
-
exports["default"] = Node;
|
|
3580
3618
|
module.exports = exports.default;
|
|
3581
3619
|
}));
|
|
3582
|
-
|
|
3583
3620
|
//#endregion
|
|
3584
3621
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/types.js
|
|
3585
3622
|
var require_types = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
3586
3623
|
exports.__esModule = true;
|
|
3587
3624
|
exports.UNIVERSAL = exports.TAG = exports.STRING = exports.SELECTOR = exports.ROOT = exports.PSEUDO = exports.NESTING = exports.ID = exports.COMMENT = exports.COMBINATOR = exports.CLASS = exports.ATTRIBUTE = void 0;
|
|
3588
|
-
|
|
3589
|
-
exports.
|
|
3590
|
-
|
|
3591
|
-
exports.
|
|
3592
|
-
|
|
3593
|
-
exports.
|
|
3594
|
-
|
|
3595
|
-
exports.
|
|
3596
|
-
|
|
3597
|
-
exports.
|
|
3598
|
-
|
|
3599
|
-
exports.
|
|
3600
|
-
var ID = "id";
|
|
3601
|
-
exports.ID = ID;
|
|
3602
|
-
var COMMENT = "comment";
|
|
3603
|
-
exports.COMMENT = COMMENT;
|
|
3604
|
-
var COMBINATOR = "combinator";
|
|
3605
|
-
exports.COMBINATOR = COMBINATOR;
|
|
3606
|
-
var CLASS = "class";
|
|
3607
|
-
exports.CLASS = CLASS;
|
|
3608
|
-
var ATTRIBUTE = "attribute";
|
|
3609
|
-
exports.ATTRIBUTE = ATTRIBUTE;
|
|
3610
|
-
var UNIVERSAL = "universal";
|
|
3611
|
-
exports.UNIVERSAL = UNIVERSAL;
|
|
3625
|
+
exports.TAG = "tag";
|
|
3626
|
+
exports.STRING = "string";
|
|
3627
|
+
exports.SELECTOR = "selector";
|
|
3628
|
+
exports.ROOT = "root";
|
|
3629
|
+
exports.PSEUDO = "pseudo";
|
|
3630
|
+
exports.NESTING = "nesting";
|
|
3631
|
+
exports.ID = "id";
|
|
3632
|
+
exports.COMMENT = "comment";
|
|
3633
|
+
exports.COMBINATOR = "combinator";
|
|
3634
|
+
exports.CLASS = "class";
|
|
3635
|
+
exports.ATTRIBUTE = "attribute";
|
|
3636
|
+
exports.UNIVERSAL = "universal";
|
|
3612
3637
|
}));
|
|
3613
|
-
|
|
3614
3638
|
//#endregion
|
|
3615
3639
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/container.js
|
|
3616
3640
|
var require_container = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -3701,7 +3725,7 @@ var require_container = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
3701
3725
|
};
|
|
3702
3726
|
return _setPrototypeOf(o, p);
|
|
3703
3727
|
}
|
|
3704
|
-
|
|
3728
|
+
exports["default"] = /* @__PURE__ */ function(_Node) {
|
|
3705
3729
|
_inheritsLoose(Container, _Node);
|
|
3706
3730
|
function Container(opts) {
|
|
3707
3731
|
var _this = _Node.call(this, opts) || this;
|
|
@@ -3948,10 +3972,8 @@ var require_container = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
3948
3972
|
]);
|
|
3949
3973
|
return Container;
|
|
3950
3974
|
}(_node["default"]);
|
|
3951
|
-
exports["default"] = Container;
|
|
3952
3975
|
module.exports = exports.default;
|
|
3953
3976
|
}));
|
|
3954
|
-
|
|
3955
3977
|
//#endregion
|
|
3956
3978
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/root.js
|
|
3957
3979
|
var require_root = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -3989,7 +4011,7 @@ var require_root = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
3989
4011
|
};
|
|
3990
4012
|
return _setPrototypeOf(o, p);
|
|
3991
4013
|
}
|
|
3992
|
-
|
|
4014
|
+
exports["default"] = /* @__PURE__ */ function(_Container) {
|
|
3993
4015
|
_inheritsLoose(Root, _Container);
|
|
3994
4016
|
function Root(opts) {
|
|
3995
4017
|
var _this = _Container.call(this, opts) || this;
|
|
@@ -4016,10 +4038,8 @@ var require_root = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4016
4038
|
}]);
|
|
4017
4039
|
return Root;
|
|
4018
4040
|
}(_container["default"]);
|
|
4019
|
-
exports["default"] = Root;
|
|
4020
4041
|
module.exports = exports.default;
|
|
4021
4042
|
}));
|
|
4022
|
-
|
|
4023
4043
|
//#endregion
|
|
4024
4044
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/selector.js
|
|
4025
4045
|
var require_selector = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -4042,7 +4062,7 @@ var require_selector = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4042
4062
|
};
|
|
4043
4063
|
return _setPrototypeOf(o, p);
|
|
4044
4064
|
}
|
|
4045
|
-
|
|
4065
|
+
exports["default"] = /* @__PURE__ */ function(_Container) {
|
|
4046
4066
|
_inheritsLoose(Selector, _Container);
|
|
4047
4067
|
function Selector(opts) {
|
|
4048
4068
|
var _this = _Container.call(this, opts) || this;
|
|
@@ -4051,10 +4071,8 @@ var require_selector = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4051
4071
|
}
|
|
4052
4072
|
return Selector;
|
|
4053
4073
|
}(_container["default"]);
|
|
4054
|
-
exports["default"] = Selector;
|
|
4055
4074
|
module.exports = exports.default;
|
|
4056
4075
|
}));
|
|
4057
|
-
|
|
4058
4076
|
//#endregion
|
|
4059
4077
|
//#region node_modules/.pnpm/cssesc@3.0.0/node_modules/cssesc/cssesc.js
|
|
4060
4078
|
/*! https://mths.be/cssesc v3.0.0 by @mathias */
|
|
@@ -4116,7 +4134,6 @@ var require_cssesc = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4116
4134
|
cssesc.version = "3.0.0";
|
|
4117
4135
|
module.exports = cssesc;
|
|
4118
4136
|
}));
|
|
4119
|
-
|
|
4120
4137
|
//#endregion
|
|
4121
4138
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/className.js
|
|
4122
4139
|
var require_className = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -4156,7 +4173,7 @@ var require_className = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4156
4173
|
};
|
|
4157
4174
|
return _setPrototypeOf(o, p);
|
|
4158
4175
|
}
|
|
4159
|
-
|
|
4176
|
+
exports["default"] = /* @__PURE__ */ function(_Node) {
|
|
4160
4177
|
_inheritsLoose(ClassName, _Node);
|
|
4161
4178
|
function ClassName(opts) {
|
|
4162
4179
|
var _this = _Node.call(this, opts) || this;
|
|
@@ -4186,10 +4203,8 @@ var require_className = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4186
4203
|
}]);
|
|
4187
4204
|
return ClassName;
|
|
4188
4205
|
}(_node["default"]);
|
|
4189
|
-
exports["default"] = ClassName;
|
|
4190
4206
|
module.exports = exports.default;
|
|
4191
4207
|
}));
|
|
4192
|
-
|
|
4193
4208
|
//#endregion
|
|
4194
4209
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/comment.js
|
|
4195
4210
|
var require_comment = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -4212,7 +4227,7 @@ var require_comment = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4212
4227
|
};
|
|
4213
4228
|
return _setPrototypeOf(o, p);
|
|
4214
4229
|
}
|
|
4215
|
-
|
|
4230
|
+
exports["default"] = /* @__PURE__ */ function(_Node) {
|
|
4216
4231
|
_inheritsLoose(Comment, _Node);
|
|
4217
4232
|
function Comment(opts) {
|
|
4218
4233
|
var _this = _Node.call(this, opts) || this;
|
|
@@ -4221,10 +4236,8 @@ var require_comment = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4221
4236
|
}
|
|
4222
4237
|
return Comment;
|
|
4223
4238
|
}(_node["default"]);
|
|
4224
|
-
exports["default"] = Comment;
|
|
4225
4239
|
module.exports = exports.default;
|
|
4226
4240
|
}));
|
|
4227
|
-
|
|
4228
4241
|
//#endregion
|
|
4229
4242
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/id.js
|
|
4230
4243
|
var require_id = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -4247,7 +4260,7 @@ var require_id = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4247
4260
|
};
|
|
4248
4261
|
return _setPrototypeOf(o, p);
|
|
4249
4262
|
}
|
|
4250
|
-
|
|
4263
|
+
exports["default"] = /* @__PURE__ */ function(_Node) {
|
|
4251
4264
|
_inheritsLoose(ID, _Node);
|
|
4252
4265
|
function ID(opts) {
|
|
4253
4266
|
var _this = _Node.call(this, opts) || this;
|
|
@@ -4260,10 +4273,8 @@ var require_id = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4260
4273
|
};
|
|
4261
4274
|
return ID;
|
|
4262
4275
|
}(_node["default"]);
|
|
4263
|
-
exports["default"] = ID;
|
|
4264
4276
|
module.exports = exports.default;
|
|
4265
4277
|
}));
|
|
4266
|
-
|
|
4267
4278
|
//#endregion
|
|
4268
4279
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/namespace.js
|
|
4269
4280
|
var require_namespace = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -4302,7 +4313,7 @@ var require_namespace = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4302
4313
|
};
|
|
4303
4314
|
return _setPrototypeOf(o, p);
|
|
4304
4315
|
}
|
|
4305
|
-
|
|
4316
|
+
exports["default"] = /* @__PURE__ */ function(_Node) {
|
|
4306
4317
|
_inheritsLoose(Namespace, _Node);
|
|
4307
4318
|
function Namespace() {
|
|
4308
4319
|
return _Node.apply(this, arguments) || this;
|
|
@@ -4357,10 +4368,8 @@ var require_namespace = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4357
4368
|
]);
|
|
4358
4369
|
return Namespace;
|
|
4359
4370
|
}(_node["default"]);
|
|
4360
|
-
exports["default"] = Namespace;
|
|
4361
4371
|
module.exports = exports.default;
|
|
4362
4372
|
}));
|
|
4363
|
-
|
|
4364
4373
|
//#endregion
|
|
4365
4374
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/tag.js
|
|
4366
4375
|
var require_tag = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -4383,7 +4392,7 @@ var require_tag = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4383
4392
|
};
|
|
4384
4393
|
return _setPrototypeOf(o, p);
|
|
4385
4394
|
}
|
|
4386
|
-
|
|
4395
|
+
exports["default"] = /* @__PURE__ */ function(_Namespace) {
|
|
4387
4396
|
_inheritsLoose(Tag, _Namespace);
|
|
4388
4397
|
function Tag(opts) {
|
|
4389
4398
|
var _this = _Namespace.call(this, opts) || this;
|
|
@@ -4392,10 +4401,8 @@ var require_tag = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4392
4401
|
}
|
|
4393
4402
|
return Tag;
|
|
4394
4403
|
}(_namespace["default"]);
|
|
4395
|
-
exports["default"] = Tag;
|
|
4396
4404
|
module.exports = exports.default;
|
|
4397
4405
|
}));
|
|
4398
|
-
|
|
4399
4406
|
//#endregion
|
|
4400
4407
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/string.js
|
|
4401
4408
|
var require_string = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -4418,7 +4425,7 @@ var require_string = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4418
4425
|
};
|
|
4419
4426
|
return _setPrototypeOf(o, p);
|
|
4420
4427
|
}
|
|
4421
|
-
|
|
4428
|
+
exports["default"] = /* @__PURE__ */ function(_Node) {
|
|
4422
4429
|
_inheritsLoose(String, _Node);
|
|
4423
4430
|
function String(opts) {
|
|
4424
4431
|
var _this = _Node.call(this, opts) || this;
|
|
@@ -4427,10 +4434,8 @@ var require_string = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4427
4434
|
}
|
|
4428
4435
|
return String;
|
|
4429
4436
|
}(_node["default"]);
|
|
4430
|
-
exports["default"] = String;
|
|
4431
4437
|
module.exports = exports.default;
|
|
4432
4438
|
}));
|
|
4433
|
-
|
|
4434
4439
|
//#endregion
|
|
4435
4440
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/pseudo.js
|
|
4436
4441
|
var require_pseudo = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -4453,7 +4458,7 @@ var require_pseudo = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4453
4458
|
};
|
|
4454
4459
|
return _setPrototypeOf(o, p);
|
|
4455
4460
|
}
|
|
4456
|
-
|
|
4461
|
+
exports["default"] = /* @__PURE__ */ function(_Container) {
|
|
4457
4462
|
_inheritsLoose(Pseudo, _Container);
|
|
4458
4463
|
function Pseudo(opts) {
|
|
4459
4464
|
var _this = _Container.call(this, opts) || this;
|
|
@@ -4472,10 +4477,8 @@ var require_pseudo = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4472
4477
|
};
|
|
4473
4478
|
return Pseudo;
|
|
4474
4479
|
}(_container["default"]);
|
|
4475
|
-
exports["default"] = Pseudo;
|
|
4476
4480
|
module.exports = exports.default;
|
|
4477
4481
|
}));
|
|
4478
|
-
|
|
4479
4482
|
//#endregion
|
|
4480
4483
|
//#region node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/node.js
|
|
4481
4484
|
var require_node = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -4484,7 +4487,6 @@ var require_node = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4484
4487
|
*/
|
|
4485
4488
|
module.exports = require("util").deprecate;
|
|
4486
4489
|
}));
|
|
4487
|
-
|
|
4488
4490
|
//#endregion
|
|
4489
4491
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/attribute.js
|
|
4490
4492
|
var require_attribute = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -4811,7 +4813,6 @@ var require_attribute = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
4811
4813
|
return "" + attrSpaces.before + attrValue + attrSpaces.after;
|
|
4812
4814
|
}
|
|
4813
4815
|
}));
|
|
4814
|
-
|
|
4815
4816
|
//#endregion
|
|
4816
4817
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/universal.js
|
|
4817
4818
|
var require_universal = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -4834,7 +4835,7 @@ var require_universal = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4834
4835
|
};
|
|
4835
4836
|
return _setPrototypeOf(o, p);
|
|
4836
4837
|
}
|
|
4837
|
-
|
|
4838
|
+
exports["default"] = /* @__PURE__ */ function(_Namespace) {
|
|
4838
4839
|
_inheritsLoose(Universal, _Namespace);
|
|
4839
4840
|
function Universal(opts) {
|
|
4840
4841
|
var _this = _Namespace.call(this, opts) || this;
|
|
@@ -4844,10 +4845,8 @@ var require_universal = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4844
4845
|
}
|
|
4845
4846
|
return Universal;
|
|
4846
4847
|
}(_namespace["default"]);
|
|
4847
|
-
exports["default"] = Universal;
|
|
4848
4848
|
module.exports = exports.default;
|
|
4849
4849
|
}));
|
|
4850
|
-
|
|
4851
4850
|
//#endregion
|
|
4852
4851
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/combinator.js
|
|
4853
4852
|
var require_combinator = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -4870,7 +4869,7 @@ var require_combinator = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4870
4869
|
};
|
|
4871
4870
|
return _setPrototypeOf(o, p);
|
|
4872
4871
|
}
|
|
4873
|
-
|
|
4872
|
+
exports["default"] = /* @__PURE__ */ function(_Node) {
|
|
4874
4873
|
_inheritsLoose(Combinator, _Node);
|
|
4875
4874
|
function Combinator(opts) {
|
|
4876
4875
|
var _this = _Node.call(this, opts) || this;
|
|
@@ -4879,10 +4878,8 @@ var require_combinator = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4879
4878
|
}
|
|
4880
4879
|
return Combinator;
|
|
4881
4880
|
}(_node["default"]);
|
|
4882
|
-
exports["default"] = Combinator;
|
|
4883
4881
|
module.exports = exports.default;
|
|
4884
4882
|
}));
|
|
4885
|
-
|
|
4886
4883
|
//#endregion
|
|
4887
4884
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/nesting.js
|
|
4888
4885
|
var require_nesting = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -4905,7 +4902,7 @@ var require_nesting = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4905
4902
|
};
|
|
4906
4903
|
return _setPrototypeOf(o, p);
|
|
4907
4904
|
}
|
|
4908
|
-
|
|
4905
|
+
exports["default"] = /* @__PURE__ */ function(_Node) {
|
|
4909
4906
|
_inheritsLoose(Nesting, _Node);
|
|
4910
4907
|
function Nesting(opts) {
|
|
4911
4908
|
var _this = _Node.call(this, opts) || this;
|
|
@@ -4915,10 +4912,8 @@ var require_nesting = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
4915
4912
|
}
|
|
4916
4913
|
return Nesting;
|
|
4917
4914
|
}(_node["default"]);
|
|
4918
|
-
exports["default"] = Nesting;
|
|
4919
4915
|
module.exports = exports.default;
|
|
4920
4916
|
}));
|
|
4921
|
-
|
|
4922
4917
|
//#endregion
|
|
4923
4918
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/sortAscending.js
|
|
4924
4919
|
var require_sortAscending = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -4931,76 +4926,44 @@ var require_sortAscending = /* @__PURE__ */ __commonJSMin(((exports, module) =>
|
|
|
4931
4926
|
}
|
|
4932
4927
|
module.exports = exports.default;
|
|
4933
4928
|
}));
|
|
4934
|
-
|
|
4935
4929
|
//#endregion
|
|
4936
4930
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/tokenTypes.js
|
|
4937
4931
|
var require_tokenTypes = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
4938
4932
|
exports.__esModule = true;
|
|
4939
4933
|
exports.word = exports.tilde = exports.tab = exports.str = exports.space = exports.slash = exports.singleQuote = exports.semicolon = exports.plus = exports.pipe = exports.openSquare = exports.openParenthesis = exports.newline = exports.greaterThan = exports.feed = exports.equals = exports.doubleQuote = exports.dollar = exports.cr = exports.comment = exports.comma = exports.combinator = exports.colon = exports.closeSquare = exports.closeParenthesis = exports.caret = exports.bang = exports.backslash = exports.at = exports.asterisk = exports.ampersand = void 0;
|
|
4940
|
-
|
|
4941
|
-
exports.
|
|
4942
|
-
|
|
4943
|
-
exports.
|
|
4944
|
-
|
|
4945
|
-
exports.
|
|
4946
|
-
|
|
4947
|
-
exports.
|
|
4948
|
-
|
|
4949
|
-
exports.
|
|
4950
|
-
|
|
4951
|
-
exports.
|
|
4952
|
-
|
|
4953
|
-
exports.
|
|
4954
|
-
|
|
4955
|
-
exports.
|
|
4956
|
-
|
|
4957
|
-
exports.
|
|
4958
|
-
var closeSquare = 93;
|
|
4959
|
-
exports.closeSquare = closeSquare;
|
|
4960
|
-
var dollar = 36;
|
|
4961
|
-
exports.dollar = dollar;
|
|
4962
|
-
var tilde = 126;
|
|
4963
|
-
exports.tilde = tilde;
|
|
4964
|
-
var caret = 94;
|
|
4965
|
-
exports.caret = caret;
|
|
4966
|
-
var plus = 43;
|
|
4967
|
-
exports.plus = plus;
|
|
4968
|
-
var equals = 61;
|
|
4969
|
-
exports.equals = equals;
|
|
4970
|
-
var pipe = 124;
|
|
4971
|
-
exports.pipe = pipe;
|
|
4972
|
-
var greaterThan = 62;
|
|
4973
|
-
exports.greaterThan = greaterThan;
|
|
4974
|
-
var space = 32;
|
|
4975
|
-
exports.space = space;
|
|
4934
|
+
exports.ampersand = 38;
|
|
4935
|
+
exports.asterisk = 42;
|
|
4936
|
+
exports.at = 64;
|
|
4937
|
+
exports.comma = 44;
|
|
4938
|
+
exports.colon = 58;
|
|
4939
|
+
exports.semicolon = 59;
|
|
4940
|
+
exports.openParenthesis = 40;
|
|
4941
|
+
exports.closeParenthesis = 41;
|
|
4942
|
+
exports.openSquare = 91;
|
|
4943
|
+
exports.closeSquare = 93;
|
|
4944
|
+
exports.dollar = 36;
|
|
4945
|
+
exports.tilde = 126;
|
|
4946
|
+
exports.caret = 94;
|
|
4947
|
+
exports.plus = 43;
|
|
4948
|
+
exports.equals = 61;
|
|
4949
|
+
exports.pipe = 124;
|
|
4950
|
+
exports.greaterThan = 62;
|
|
4951
|
+
exports.space = 32;
|
|
4976
4952
|
var singleQuote = 39;
|
|
4977
4953
|
exports.singleQuote = singleQuote;
|
|
4978
|
-
|
|
4979
|
-
exports.
|
|
4980
|
-
|
|
4981
|
-
exports.
|
|
4982
|
-
|
|
4983
|
-
exports.
|
|
4984
|
-
|
|
4985
|
-
exports.
|
|
4986
|
-
|
|
4987
|
-
exports.
|
|
4988
|
-
|
|
4989
|
-
exports.
|
|
4990
|
-
var newline = 10;
|
|
4991
|
-
exports.newline = newline;
|
|
4992
|
-
var tab = 9;
|
|
4993
|
-
exports.tab = tab;
|
|
4994
|
-
var str = singleQuote;
|
|
4995
|
-
exports.str = str;
|
|
4996
|
-
var comment = -1;
|
|
4997
|
-
exports.comment = comment;
|
|
4998
|
-
var word = -2;
|
|
4999
|
-
exports.word = word;
|
|
5000
|
-
var combinator = -3;
|
|
5001
|
-
exports.combinator = combinator;
|
|
4954
|
+
exports.doubleQuote = 34;
|
|
4955
|
+
exports.slash = 47;
|
|
4956
|
+
exports.bang = 33;
|
|
4957
|
+
exports.backslash = 92;
|
|
4958
|
+
exports.cr = 13;
|
|
4959
|
+
exports.feed = 12;
|
|
4960
|
+
exports.newline = 10;
|
|
4961
|
+
exports.tab = 9;
|
|
4962
|
+
exports.str = singleQuote;
|
|
4963
|
+
exports.comment = -1;
|
|
4964
|
+
exports.word = -2;
|
|
4965
|
+
exports.combinator = -3;
|
|
5002
4966
|
}));
|
|
5003
|
-
|
|
5004
4967
|
//#endregion
|
|
5005
4968
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/tokenize.js
|
|
5006
4969
|
var require_tokenize = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -5073,7 +5036,7 @@ var require_tokenize = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5073
5036
|
} else next++;
|
|
5074
5037
|
return next;
|
|
5075
5038
|
}
|
|
5076
|
-
|
|
5039
|
+
exports.FIELDS = {
|
|
5077
5040
|
TYPE: 0,
|
|
5078
5041
|
START_LINE: 1,
|
|
5079
5042
|
START_COL: 2,
|
|
@@ -5082,7 +5045,6 @@ var require_tokenize = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5082
5045
|
START_POS: 5,
|
|
5083
5046
|
END_POS: 6
|
|
5084
5047
|
};
|
|
5085
|
-
exports.FIELDS = FIELDS;
|
|
5086
5048
|
function tokenize(input) {
|
|
5087
5049
|
var tokens = [];
|
|
5088
5050
|
var css = input.css.valueOf();
|
|
@@ -5227,7 +5189,6 @@ var require_tokenize = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
5227
5189
|
return tokens;
|
|
5228
5190
|
}
|
|
5229
5191
|
}));
|
|
5230
|
-
|
|
5231
5192
|
//#endregion
|
|
5232
5193
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/parser.js
|
|
5233
5194
|
var require_parser = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -5348,7 +5309,7 @@ var require_parser = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
5348
5309
|
return i === list.indexOf(item);
|
|
5349
5310
|
});
|
|
5350
5311
|
}
|
|
5351
|
-
|
|
5312
|
+
exports["default"] = /* @__PURE__ */ function() {
|
|
5352
5313
|
function Parser(rule, options) {
|
|
5353
5314
|
if (options === void 0) options = {};
|
|
5354
5315
|
this.rule = rule;
|
|
@@ -6086,10 +6047,8 @@ var require_parser = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
6086
6047
|
]);
|
|
6087
6048
|
return Parser;
|
|
6088
6049
|
}();
|
|
6089
|
-
exports["default"] = Parser;
|
|
6090
6050
|
module.exports = exports.default;
|
|
6091
6051
|
}));
|
|
6092
|
-
|
|
6093
6052
|
//#endregion
|
|
6094
6053
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/processor.js
|
|
6095
6054
|
var require_processor = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -6099,7 +6058,7 @@ var require_processor = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
6099
6058
|
function _interopRequireDefault(obj) {
|
|
6100
6059
|
return obj && obj.__esModule ? obj : { "default": obj };
|
|
6101
6060
|
}
|
|
6102
|
-
|
|
6061
|
+
exports["default"] = /* @__PURE__ */ function() {
|
|
6103
6062
|
function Processor(func, options) {
|
|
6104
6063
|
this.func = func || function noop() {};
|
|
6105
6064
|
this.funcRes = null;
|
|
@@ -6190,10 +6149,8 @@ var require_processor = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
6190
6149
|
};
|
|
6191
6150
|
return Processor;
|
|
6192
6151
|
}();
|
|
6193
|
-
exports["default"] = Processor;
|
|
6194
6152
|
module.exports = exports.default;
|
|
6195
6153
|
}));
|
|
6196
|
-
|
|
6197
6154
|
//#endregion
|
|
6198
6155
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/constructors.js
|
|
6199
6156
|
var require_constructors = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -6214,56 +6171,43 @@ var require_constructors = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6214
6171
|
function _interopRequireDefault(obj) {
|
|
6215
6172
|
return obj && obj.__esModule ? obj : { "default": obj };
|
|
6216
6173
|
}
|
|
6217
|
-
|
|
6174
|
+
exports.attribute = function attribute(opts) {
|
|
6218
6175
|
return new _attribute["default"](opts);
|
|
6219
6176
|
};
|
|
6220
|
-
exports.
|
|
6221
|
-
var className = function className(opts) {
|
|
6177
|
+
exports.className = function className(opts) {
|
|
6222
6178
|
return new _className["default"](opts);
|
|
6223
6179
|
};
|
|
6224
|
-
exports.
|
|
6225
|
-
var combinator = function combinator(opts) {
|
|
6180
|
+
exports.combinator = function combinator(opts) {
|
|
6226
6181
|
return new _combinator["default"](opts);
|
|
6227
6182
|
};
|
|
6228
|
-
exports.
|
|
6229
|
-
var comment = function comment(opts) {
|
|
6183
|
+
exports.comment = function comment(opts) {
|
|
6230
6184
|
return new _comment["default"](opts);
|
|
6231
6185
|
};
|
|
6232
|
-
exports.
|
|
6233
|
-
var id = function id(opts) {
|
|
6186
|
+
exports.id = function id(opts) {
|
|
6234
6187
|
return new _id["default"](opts);
|
|
6235
6188
|
};
|
|
6236
|
-
exports.
|
|
6237
|
-
var nesting = function nesting(opts) {
|
|
6189
|
+
exports.nesting = function nesting(opts) {
|
|
6238
6190
|
return new _nesting["default"](opts);
|
|
6239
6191
|
};
|
|
6240
|
-
exports.
|
|
6241
|
-
var pseudo = function pseudo(opts) {
|
|
6192
|
+
exports.pseudo = function pseudo(opts) {
|
|
6242
6193
|
return new _pseudo["default"](opts);
|
|
6243
6194
|
};
|
|
6244
|
-
exports.
|
|
6245
|
-
var root = function root(opts) {
|
|
6195
|
+
exports.root = function root(opts) {
|
|
6246
6196
|
return new _root["default"](opts);
|
|
6247
6197
|
};
|
|
6248
|
-
exports.
|
|
6249
|
-
var selector = function selector(opts) {
|
|
6198
|
+
exports.selector = function selector(opts) {
|
|
6250
6199
|
return new _selector["default"](opts);
|
|
6251
6200
|
};
|
|
6252
|
-
exports.
|
|
6253
|
-
var string = function string(opts) {
|
|
6201
|
+
exports.string = function string(opts) {
|
|
6254
6202
|
return new _string["default"](opts);
|
|
6255
6203
|
};
|
|
6256
|
-
exports.
|
|
6257
|
-
var tag = function tag(opts) {
|
|
6204
|
+
exports.tag = function tag(opts) {
|
|
6258
6205
|
return new _tag["default"](opts);
|
|
6259
6206
|
};
|
|
6260
|
-
exports.
|
|
6261
|
-
var universal = function universal(opts) {
|
|
6207
|
+
exports.universal = function universal(opts) {
|
|
6262
6208
|
return new _universal["default"](opts);
|
|
6263
6209
|
};
|
|
6264
|
-
exports.universal = universal;
|
|
6265
6210
|
}));
|
|
6266
|
-
|
|
6267
6211
|
//#endregion
|
|
6268
6212
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/guards.js
|
|
6269
6213
|
var require_guards = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -6289,28 +6233,19 @@ var require_guards = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6289
6233
|
}
|
|
6290
6234
|
var isAttribute = isNodeType.bind(null, _types.ATTRIBUTE);
|
|
6291
6235
|
exports.isAttribute = isAttribute;
|
|
6292
|
-
|
|
6293
|
-
exports.
|
|
6294
|
-
|
|
6295
|
-
exports.
|
|
6296
|
-
|
|
6297
|
-
exports.isComment = isComment;
|
|
6298
|
-
var isIdentifier = isNodeType.bind(null, _types.ID);
|
|
6299
|
-
exports.isIdentifier = isIdentifier;
|
|
6300
|
-
var isNesting = isNodeType.bind(null, _types.NESTING);
|
|
6301
|
-
exports.isNesting = isNesting;
|
|
6236
|
+
exports.isClassName = isNodeType.bind(null, _types.CLASS);
|
|
6237
|
+
exports.isCombinator = isNodeType.bind(null, _types.COMBINATOR);
|
|
6238
|
+
exports.isComment = isNodeType.bind(null, _types.COMMENT);
|
|
6239
|
+
exports.isIdentifier = isNodeType.bind(null, _types.ID);
|
|
6240
|
+
exports.isNesting = isNodeType.bind(null, _types.NESTING);
|
|
6302
6241
|
var isPseudo = isNodeType.bind(null, _types.PSEUDO);
|
|
6303
6242
|
exports.isPseudo = isPseudo;
|
|
6304
|
-
|
|
6305
|
-
exports.
|
|
6306
|
-
|
|
6307
|
-
exports.isSelector = isSelector;
|
|
6308
|
-
var isString = isNodeType.bind(null, _types.STRING);
|
|
6309
|
-
exports.isString = isString;
|
|
6243
|
+
exports.isRoot = isNodeType.bind(null, _types.ROOT);
|
|
6244
|
+
exports.isSelector = isNodeType.bind(null, _types.SELECTOR);
|
|
6245
|
+
exports.isString = isNodeType.bind(null, _types.STRING);
|
|
6310
6246
|
var isTag = isNodeType.bind(null, _types.TAG);
|
|
6311
6247
|
exports.isTag = isTag;
|
|
6312
|
-
|
|
6313
|
-
exports.isUniversal = isUniversal;
|
|
6248
|
+
exports.isUniversal = isNodeType.bind(null, _types.UNIVERSAL);
|
|
6314
6249
|
function isPseudoElement(node) {
|
|
6315
6250
|
return isPseudo(node) && node.value && (node.value.startsWith("::") || node.value.toLowerCase() === ":before" || node.value.toLowerCase() === ":after" || node.value.toLowerCase() === ":first-letter" || node.value.toLowerCase() === ":first-line");
|
|
6316
6251
|
}
|
|
@@ -6324,7 +6259,6 @@ var require_guards = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6324
6259
|
return isAttribute(node) || isTag(node);
|
|
6325
6260
|
}
|
|
6326
6261
|
}));
|
|
6327
|
-
|
|
6328
6262
|
//#endregion
|
|
6329
6263
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/selectors/index.js
|
|
6330
6264
|
var require_selectors = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -6348,7 +6282,6 @@ var require_selectors = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6348
6282
|
exports[key] = _guards[key];
|
|
6349
6283
|
});
|
|
6350
6284
|
}));
|
|
6351
|
-
|
|
6352
6285
|
//#endregion
|
|
6353
6286
|
//#region node_modules/.pnpm/postcss-selector-parser@7.1.1/node_modules/postcss-selector-parser/dist/index.js
|
|
6354
6287
|
var require_dist = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -6388,11 +6321,9 @@ var require_dist = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
6388
6321
|
};
|
|
6389
6322
|
Object.assign(parser, selectors);
|
|
6390
6323
|
delete parser.__esModule;
|
|
6391
|
-
|
|
6392
|
-
exports["default"] = _default;
|
|
6324
|
+
exports["default"] = parser;
|
|
6393
6325
|
module.exports = exports.default;
|
|
6394
6326
|
}));
|
|
6395
|
-
|
|
6396
6327
|
//#endregion
|
|
6397
6328
|
//#region packages/compiler-sfc/src/style/pluginScoped.ts
|
|
6398
6329
|
var import_dist = /* @__PURE__ */ __toESM(require_dist());
|
|
@@ -6552,7 +6483,6 @@ function extractAndWrapNodes(parentNode) {
|
|
|
6552
6483
|
}
|
|
6553
6484
|
}
|
|
6554
6485
|
scopedPlugin.postcss = true;
|
|
6555
|
-
|
|
6556
6486
|
//#endregion
|
|
6557
6487
|
//#region node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64.js
|
|
6558
6488
|
var require_base64 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -6587,7 +6517,6 @@ var require_base64 = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6587
6517
|
return -1;
|
|
6588
6518
|
};
|
|
6589
6519
|
}));
|
|
6590
|
-
|
|
6591
6520
|
//#endregion
|
|
6592
6521
|
//#region node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/base64-vlq.js
|
|
6593
6522
|
var require_base64_vlq = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -6653,7 +6582,6 @@ var require_base64_vlq = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6653
6582
|
aOutParam.rest = aIndex;
|
|
6654
6583
|
};
|
|
6655
6584
|
}));
|
|
6656
|
-
|
|
6657
6585
|
//#endregion
|
|
6658
6586
|
//#region node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/util.js
|
|
6659
6587
|
var require_util = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -6936,7 +6864,6 @@ var require_util = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
6936
6864
|
}
|
|
6937
6865
|
exports.computeSourceURL = computeSourceURL;
|
|
6938
6866
|
}));
|
|
6939
|
-
|
|
6940
6867
|
//#endregion
|
|
6941
6868
|
//#region node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/array-set.js
|
|
6942
6869
|
var require_array_set = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -7029,7 +6956,6 @@ var require_array_set = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7029
6956
|
};
|
|
7030
6957
|
exports.ArraySet = ArraySet;
|
|
7031
6958
|
}));
|
|
7032
|
-
|
|
7033
6959
|
//#endregion
|
|
7034
6960
|
//#region node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/mapping-list.js
|
|
7035
6961
|
var require_mapping_list = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -7099,7 +7025,6 @@ var require_mapping_list = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7099
7025
|
};
|
|
7100
7026
|
exports.MappingList = MappingList;
|
|
7101
7027
|
}));
|
|
7102
|
-
|
|
7103
7028
|
//#endregion
|
|
7104
7029
|
//#region node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-generator.js
|
|
7105
7030
|
var require_source_map_generator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -7369,7 +7294,6 @@ var require_source_map_generator = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7369
7294
|
};
|
|
7370
7295
|
exports.SourceMapGenerator = SourceMapGenerator;
|
|
7371
7296
|
}));
|
|
7372
|
-
|
|
7373
7297
|
//#endregion
|
|
7374
7298
|
//#region node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/binary-search.js
|
|
7375
7299
|
var require_binary_search = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -7431,7 +7355,6 @@ var require_binary_search = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7431
7355
|
return index;
|
|
7432
7356
|
};
|
|
7433
7357
|
}));
|
|
7434
|
-
|
|
7435
7358
|
//#endregion
|
|
7436
7359
|
//#region node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/quick-sort.js
|
|
7437
7360
|
var require_quick_sort = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -7501,7 +7424,6 @@ var require_quick_sort = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
7501
7424
|
doQuickSort(ary, comparator, 0, ary.length - 1);
|
|
7502
7425
|
};
|
|
7503
7426
|
}));
|
|
7504
|
-
|
|
7505
7427
|
//#endregion
|
|
7506
7428
|
//#region node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-map-consumer.js
|
|
7507
7429
|
var require_source_map_consumer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -8251,7 +8173,6 @@ var require_source_map_consumer = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8251
8173
|
};
|
|
8252
8174
|
exports.IndexedSourceMapConsumer = IndexedSourceMapConsumer;
|
|
8253
8175
|
}));
|
|
8254
|
-
|
|
8255
8176
|
//#endregion
|
|
8256
8177
|
//#region node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/lib/source-node.js
|
|
8257
8178
|
var require_source_node = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -8536,7 +8457,6 @@ var require_source_node = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8536
8457
|
};
|
|
8537
8458
|
exports.SourceNode = SourceNode;
|
|
8538
8459
|
}));
|
|
8539
|
-
|
|
8540
8460
|
//#endregion
|
|
8541
8461
|
//#region node_modules/.pnpm/source-map@0.6.1/node_modules/source-map/source-map.js
|
|
8542
8462
|
var require_source_map = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
@@ -8544,10 +8464,9 @@ var require_source_map = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8544
8464
|
exports.SourceMapConsumer = require_source_map_consumer().SourceMapConsumer;
|
|
8545
8465
|
exports.SourceNode = require_source_node().SourceNode;
|
|
8546
8466
|
}));
|
|
8547
|
-
|
|
8548
8467
|
//#endregion
|
|
8549
|
-
//#region
|
|
8550
|
-
var
|
|
8468
|
+
//#region packages/compiler-sfc/src/style/preprocessors.ts
|
|
8469
|
+
var import_merge_source_map = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
8551
8470
|
var sourceMap = require_source_map();
|
|
8552
8471
|
var SourceMapConsumer = sourceMap.SourceMapConsumer;
|
|
8553
8472
|
var SourceMapGenerator = sourceMap.SourceMapGenerator;
|
|
@@ -8597,11 +8516,7 @@ var require_merge_source_map = /* @__PURE__ */ __commonJSMin(((exports, module)
|
|
|
8597
8516
|
mergedMapGenerator._file = oldMap.file;
|
|
8598
8517
|
return JSON.parse(mergedMapGenerator.toString());
|
|
8599
8518
|
}
|
|
8600
|
-
}));
|
|
8601
|
-
|
|
8602
|
-
//#endregion
|
|
8603
|
-
//#region packages/compiler-sfc/src/style/preprocessors.ts
|
|
8604
|
-
var import_merge_source_map = /* @__PURE__ */ __toESM(require_merge_source_map());
|
|
8519
|
+
})))());
|
|
8605
8520
|
const scss = (source, map, options, load = require) => {
|
|
8606
8521
|
const { compileString, renderSync } = load("sass");
|
|
8607
8522
|
const data = getSource(source, options.filename, options.additionalData);
|
|
@@ -8724,9 +8639,8 @@ const processors = {
|
|
|
8724
8639
|
styl,
|
|
8725
8640
|
stylus: styl
|
|
8726
8641
|
};
|
|
8727
|
-
|
|
8728
8642
|
//#endregion
|
|
8729
|
-
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
|
8643
|
+
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.8/node_modules/postcss-modules/build/fs.js
|
|
8730
8644
|
var require_fs = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8731
8645
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8732
8646
|
exports.getFileSystem = getFileSystem;
|
|
@@ -8747,9 +8661,8 @@ var require_fs = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8747
8661
|
return fileSystem;
|
|
8748
8662
|
}
|
|
8749
8663
|
}));
|
|
8750
|
-
|
|
8751
8664
|
//#endregion
|
|
8752
|
-
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
|
8665
|
+
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.8/node_modules/postcss-modules/build/unquote.js
|
|
8753
8666
|
var require_unquote = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8754
8667
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8755
8668
|
exports.default = unquote;
|
|
@@ -8761,9 +8674,8 @@ var require_unquote = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8761
8674
|
return str;
|
|
8762
8675
|
}
|
|
8763
8676
|
}));
|
|
8764
|
-
|
|
8765
8677
|
//#endregion
|
|
8766
|
-
//#region node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
|
8678
|
+
//#region node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.8/node_modules/icss-utils/src/replaceValueSymbols.js
|
|
8767
8679
|
var require_replaceValueSymbols = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
8768
8680
|
const matchValueName = /[$]?[\w-]+/g;
|
|
8769
8681
|
const replaceValueSymbols = (value, replacements) => {
|
|
@@ -8779,9 +8691,8 @@ var require_replaceValueSymbols = /* @__PURE__ */ __commonJSMin(((exports, modul
|
|
|
8779
8691
|
};
|
|
8780
8692
|
module.exports = replaceValueSymbols;
|
|
8781
8693
|
}));
|
|
8782
|
-
|
|
8783
8694
|
//#endregion
|
|
8784
|
-
//#region node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
|
8695
|
+
//#region node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.8/node_modules/icss-utils/src/replaceSymbols.js
|
|
8785
8696
|
var require_replaceSymbols = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
8786
8697
|
const replaceValueSymbols = require_replaceValueSymbols();
|
|
8787
8698
|
const replaceSymbols = (css, replacements) => {
|
|
@@ -8793,9 +8704,8 @@ var require_replaceSymbols = /* @__PURE__ */ __commonJSMin(((exports, module) =>
|
|
|
8793
8704
|
};
|
|
8794
8705
|
module.exports = replaceSymbols;
|
|
8795
8706
|
}));
|
|
8796
|
-
|
|
8797
8707
|
//#endregion
|
|
8798
|
-
//#region node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
|
8708
|
+
//#region node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.8/node_modules/icss-utils/src/extractICSS.js
|
|
8799
8709
|
var require_extractICSS = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
8800
8710
|
const importPattern = /^:import\(("[^"]*"|'[^']*'|[^"']+)\)$/;
|
|
8801
8711
|
const balancedQuotes = /^("[^"]*"|'[^']*'|[^"']+)$/;
|
|
@@ -8848,9 +8758,8 @@ var require_extractICSS = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
8848
8758
|
};
|
|
8849
8759
|
module.exports = extractICSS;
|
|
8850
8760
|
}));
|
|
8851
|
-
|
|
8852
8761
|
//#endregion
|
|
8853
|
-
//#region node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
|
8762
|
+
//#region node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.8/node_modules/icss-utils/src/createICSSRules.js
|
|
8854
8763
|
var require_createICSSRules = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
8855
8764
|
const createImports = (imports, postcss, mode = "rule") => {
|
|
8856
8765
|
return Object.keys(imports).map((path) => {
|
|
@@ -8893,24 +8802,18 @@ var require_createICSSRules = /* @__PURE__ */ __commonJSMin(((exports, module) =
|
|
|
8893
8802
|
const createICSSRules = (imports, exports$8, postcss, mode) => [...createImports(imports, postcss, mode), ...createExports(exports$8, postcss, mode)];
|
|
8894
8803
|
module.exports = createICSSRules;
|
|
8895
8804
|
}));
|
|
8896
|
-
|
|
8897
8805
|
//#endregion
|
|
8898
|
-
//#region node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.
|
|
8806
|
+
//#region node_modules/.pnpm/icss-utils@5.1.0_postcss@8.5.8/node_modules/icss-utils/src/index.js
|
|
8899
8807
|
var require_src$4 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
8900
|
-
const replaceValueSymbols = require_replaceValueSymbols();
|
|
8901
|
-
const replaceSymbols = require_replaceSymbols();
|
|
8902
|
-
const extractICSS = require_extractICSS();
|
|
8903
|
-
const createICSSRules = require_createICSSRules();
|
|
8904
8808
|
module.exports = {
|
|
8905
|
-
replaceValueSymbols,
|
|
8906
|
-
replaceSymbols,
|
|
8907
|
-
extractICSS,
|
|
8908
|
-
createICSSRules
|
|
8809
|
+
replaceValueSymbols: require_replaceValueSymbols(),
|
|
8810
|
+
replaceSymbols: require_replaceSymbols(),
|
|
8811
|
+
extractICSS: require_extractICSS(),
|
|
8812
|
+
createICSSRules: require_createICSSRules()
|
|
8909
8813
|
};
|
|
8910
8814
|
}));
|
|
8911
|
-
|
|
8912
8815
|
//#endregion
|
|
8913
|
-
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
|
8816
|
+
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.8/node_modules/postcss-modules/build/Parser.js
|
|
8914
8817
|
var require_Parser = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8915
8818
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8916
8819
|
exports.default = void 0;
|
|
@@ -8977,9 +8880,8 @@ var require_Parser = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8977
8880
|
};
|
|
8978
8881
|
exports.default = Parser;
|
|
8979
8882
|
}));
|
|
8980
|
-
|
|
8981
8883
|
//#endregion
|
|
8982
|
-
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
|
8884
|
+
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.8/node_modules/postcss-modules/build/saveJSON.js
|
|
8983
8885
|
var require_saveJSON = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
8984
8886
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8985
8887
|
exports.default = saveJSON;
|
|
@@ -8991,7 +8893,6 @@ var require_saveJSON = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
8991
8893
|
});
|
|
8992
8894
|
}
|
|
8993
8895
|
}));
|
|
8994
|
-
|
|
8995
8896
|
//#endregion
|
|
8996
8897
|
//#region node_modules/.pnpm/lodash.camelcase@4.3.0/node_modules/lodash.camelcase/index.js
|
|
8997
8898
|
var require_lodash_camelcase = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -9635,9 +9536,8 @@ var require_lodash_camelcase = /* @__PURE__ */ __commonJSMin(((exports, module)
|
|
|
9635
9536
|
}
|
|
9636
9537
|
module.exports = camelCase;
|
|
9637
9538
|
}));
|
|
9638
|
-
|
|
9639
9539
|
//#endregion
|
|
9640
|
-
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
|
9540
|
+
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.8/node_modules/postcss-modules/build/localsConvention.js
|
|
9641
9541
|
var require_localsConvention = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9642
9542
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9643
9543
|
exports.makeLocalsConventionReducer = makeLocalsConventionReducer;
|
|
@@ -9676,9 +9576,8 @@ var require_localsConvention = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9676
9576
|
};
|
|
9677
9577
|
}
|
|
9678
9578
|
}));
|
|
9679
|
-
|
|
9680
9579
|
//#endregion
|
|
9681
|
-
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
|
9580
|
+
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.8/node_modules/postcss-modules/build/FileSystemLoader.js
|
|
9682
9581
|
var require_FileSystemLoader = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
9683
9582
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9684
9583
|
exports.default = void 0;
|
|
@@ -9762,9 +9661,8 @@ var require_FileSystemLoader = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
9762
9661
|
};
|
|
9763
9662
|
exports.default = FileSystemLoader;
|
|
9764
9663
|
}));
|
|
9765
|
-
|
|
9766
9664
|
//#endregion
|
|
9767
|
-
//#region node_modules/.pnpm/postcss-modules-extract-imports@3.1.0_postcss@8.5.
|
|
9665
|
+
//#region node_modules/.pnpm/postcss-modules-extract-imports@3.1.0_postcss@8.5.8/node_modules/postcss-modules-extract-imports/src/topologicalSort.js
|
|
9768
9666
|
var require_topologicalSort = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
9769
9667
|
const PERMANENT_MARKER = 2;
|
|
9770
9668
|
const TEMPORARY_MARKER = 1;
|
|
@@ -9802,9 +9700,8 @@ var require_topologicalSort = /* @__PURE__ */ __commonJSMin(((exports, module) =
|
|
|
9802
9700
|
}
|
|
9803
9701
|
module.exports = topologicalSort;
|
|
9804
9702
|
}));
|
|
9805
|
-
|
|
9806
9703
|
//#endregion
|
|
9807
|
-
//#region node_modules/.pnpm/postcss-modules-extract-imports@3.1.0_postcss@8.5.
|
|
9704
|
+
//#region node_modules/.pnpm/postcss-modules-extract-imports@3.1.0_postcss@8.5.8/node_modules/postcss-modules-extract-imports/src/index.js
|
|
9808
9705
|
var require_src$3 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
9809
9706
|
const topologicalSort = require_topologicalSort();
|
|
9810
9707
|
const matchImports = /^(.+?)\s+from\s+(?:"([^"]+)"|'([^']+)'|(global))$/;
|
|
@@ -9931,7 +9828,6 @@ var require_src$3 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
9931
9828
|
};
|
|
9932
9829
|
module.exports.postcss = true;
|
|
9933
9830
|
}));
|
|
9934
|
-
|
|
9935
9831
|
//#endregion
|
|
9936
9832
|
//#region node_modules/.pnpm/loader-utils@3.3.1/node_modules/loader-utils/lib/hash/wasm-hash.js
|
|
9937
9833
|
var require_wasm_hash = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -10066,7 +9962,6 @@ var require_wasm_hash = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
10066
9962
|
module.exports = create;
|
|
10067
9963
|
module.exports.MAX_SHORT_STRING = MAX_SHORT_STRING;
|
|
10068
9964
|
}));
|
|
10069
|
-
|
|
10070
9965
|
//#endregion
|
|
10071
9966
|
//#region node_modules/.pnpm/loader-utils@3.3.1/node_modules/loader-utils/lib/hash/xxhash64.js
|
|
10072
9967
|
var require_xxhash64 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -10074,7 +9969,6 @@ var require_xxhash64 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
10074
9969
|
const xxhash64 = new WebAssembly.Module(Buffer.from("AGFzbQEAAAABCAJgAX8AYAAAAwQDAQAABQMBAAEGGgV+AUIAC34BQgALfgFCAAt+AUIAC34BQgALByIEBGluaXQAAAZ1cGRhdGUAAQVmaW5hbAACBm1lbW9yeQIACrUIAzAAQtbrgu7q/Yn14AAkAELP1tO+0ser2UIkAUIAJAJC+erQ0OfJoeThACQDQgAkBAvUAQIBfwR+IABFBEAPCyMEIACtfCQEIwAhAiMBIQMjAiEEIwMhBQNAIAIgASkDAELP1tO+0ser2UJ+fEIfiUKHla+vmLbem55/fiECIAMgASkDCELP1tO+0ser2UJ+fEIfiUKHla+vmLbem55/fiEDIAQgASkDEELP1tO+0ser2UJ+fEIfiUKHla+vmLbem55/fiEEIAUgASkDGELP1tO+0ser2UJ+fEIfiUKHla+vmLbem55/fiEFIAAgAUEgaiIBSw0ACyACJAAgAyQBIAQkAiAFJAMLqwYCAX8EfiMEQgBSBH4jACICQgGJIwEiA0IHiXwjAiIEQgyJfCMDIgVCEol8IAJCz9bTvtLHq9lCfkIfiUKHla+vmLbem55/foVCh5Wvr5i23puef35CnaO16oOxjYr6AH0gA0LP1tO+0ser2UJ+Qh+JQoeVr6+Ytt6bnn9+hUKHla+vmLbem55/fkKdo7Xqg7GNivoAfSAEQs/W077Sx6vZQn5CH4lCh5Wvr5i23puef36FQoeVr6+Ytt6bnn9+Qp2jteqDsY2K+gB9IAVCz9bTvtLHq9lCfkIfiUKHla+vmLbem55/foVCh5Wvr5i23puef35CnaO16oOxjYr6AH0FQsXP2bLx5brqJwsjBCAArXx8IQIDQCABQQhqIABNBEAgAiABKQMAQs/W077Sx6vZQn5CH4lCh5Wvr5i23puef36FQhuJQoeVr6+Ytt6bnn9+Qp2jteqDsY2K+gB9IQIgAUEIaiEBDAELCyABQQRqIABNBEACfyACIAE1AgBCh5Wvr5i23puef36FQheJQs/W077Sx6vZQn5C+fPd8Zn2masWfCECIAFBBGoLIQELA0AgACABRwRAIAIgATEAAELFz9my8eW66id+hUILiUKHla+vmLbem55/fiECIAFBAWohAQwBCwtBACACIAJCIYiFQs/W077Sx6vZQn4iAiACQh2IhUL5893xmfaZqxZ+IgIgAkIgiIUiAkIgiCIDQv//A4NCIIYgA0KAgPz/D4NCEIiEIgNC/4GAgPAfg0IQhiADQoD+g4CA4D+DQgiIhCIDQo+AvIDwgcAHg0IIhiADQvCBwIeAnoD4AINCBIiEIgNChoyYsODAgYMGfEIEiEKBgoSIkKDAgAGDQid+IANCsODAgYOGjJgwhHw3AwBBCCACQv////8PgyICQv//A4NCIIYgAkKAgPz/D4NCEIiEIgJC/4GAgPAfg0IQhiACQoD+g4CA4D+DQgiIhCICQo+AvIDwgcAHg0IIhiACQvCBwIeAnoD4AINCBIiEIgJChoyYsODAgYMGfEIEiEKBgoSIkKDAgAGDQid+IAJCsODAgYOGjJgwhHw3AwAL", "base64"));
|
|
10075
9970
|
module.exports = create.bind(null, xxhash64, [], 32, 16);
|
|
10076
9971
|
}));
|
|
10077
|
-
|
|
10078
9972
|
//#endregion
|
|
10079
9973
|
//#region node_modules/.pnpm/loader-utils@3.3.1/node_modules/loader-utils/lib/hash/BatchedHash.js
|
|
10080
9974
|
var require_BatchedHash = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -10119,7 +10013,6 @@ var require_BatchedHash = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
10119
10013
|
};
|
|
10120
10014
|
module.exports = BatchedHash;
|
|
10121
10015
|
}));
|
|
10122
|
-
|
|
10123
10016
|
//#endregion
|
|
10124
10017
|
//#region node_modules/.pnpm/loader-utils@3.3.1/node_modules/loader-utils/lib/hash/md4.js
|
|
10125
10018
|
var require_md4 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -10127,7 +10020,6 @@ var require_md4 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
10127
10020
|
const md4 = new WebAssembly.Module(Buffer.from("AGFzbQEAAAABCAJgAX8AYAAAAwUEAQAAAAUDAQABBhoFfwFBAAt/AUEAC38BQQALfwFBAAt/AUEACwciBARpbml0AAAGdXBkYXRlAAIFZmluYWwAAwZtZW1vcnkCAAqFEAQmAEGBxpS6BiQBQYnXtv5+JAJB/rnrxXkkA0H2qMmBASQEQQAkAAvMCgEYfyMBIQojAiEGIwMhByMEIQgDQCAAIAVLBEAgBSgCCCINIAcgBiAFKAIEIgsgCCAHIAUoAgAiDCAKIAggBiAHIAhzcXNqakEDdyIDIAYgB3Nxc2pqQQd3IgEgAyAGc3FzampBC3chAiAFKAIUIg8gASACIAUoAhAiCSADIAEgBSgCDCIOIAYgAyACIAEgA3Nxc2pqQRN3IgQgASACc3FzampBA3ciAyACIARzcXNqakEHdyEBIAUoAiAiEiADIAEgBSgCHCIRIAQgAyAFKAIYIhAgAiAEIAEgAyAEc3FzampBC3ciAiABIANzcXNqakETdyIEIAEgAnNxc2pqQQN3IQMgBSgCLCIVIAQgAyAFKAIoIhQgAiAEIAUoAiQiEyABIAIgAyACIARzcXNqakEHdyIBIAMgBHNxc2pqQQt3IgIgASADc3FzampBE3chBCAPIBAgCSAVIBQgEyAFKAI4IhYgAiAEIAUoAjQiFyABIAIgBSgCMCIYIAMgASAEIAEgAnNxc2pqQQN3IgEgAiAEc3FzampBB3ciAiABIARzcXNqakELdyIDIAkgAiAMIAEgBSgCPCIJIAQgASADIAEgAnNxc2pqQRN3IgEgAiADcnEgAiADcXJqakGZ84nUBWpBA3ciAiABIANycSABIANxcmpqQZnzidQFakEFdyIEIAEgAnJxIAEgAnFyaiASakGZ84nUBWpBCXciAyAPIAQgCyACIBggASADIAIgBHJxIAIgBHFyampBmfOJ1AVqQQ13IgEgAyAEcnEgAyAEcXJqakGZ84nUBWpBA3ciAiABIANycSABIANxcmpqQZnzidQFakEFdyIEIAEgAnJxIAEgAnFyampBmfOJ1AVqQQl3IgMgECAEIAIgFyABIAMgAiAEcnEgAiAEcXJqakGZ84nUBWpBDXciASADIARycSADIARxcmogDWpBmfOJ1AVqQQN3IgIgASADcnEgASADcXJqakGZ84nUBWpBBXciBCABIAJycSABIAJxcmpqQZnzidQFakEJdyIDIBEgBCAOIAIgFiABIAMgAiAEcnEgAiAEcXJqakGZ84nUBWpBDXciASADIARycSADIARxcmpqQZnzidQFakEDdyICIAEgA3JxIAEgA3FyampBmfOJ1AVqQQV3IgQgASACcnEgASACcXJqakGZ84nUBWpBCXciAyAMIAIgAyAJIAEgAyACIARycSACIARxcmpqQZnzidQFakENdyIBcyAEc2pqQaHX5/YGakEDdyICIAQgASACcyADc2ogEmpBodfn9gZqQQl3IgRzIAFzampBodfn9gZqQQt3IgMgAiADIBggASADIARzIAJzampBodfn9gZqQQ93IgFzIARzaiANakGh1+f2BmpBA3ciAiAUIAQgASACcyADc2pqQaHX5/YGakEJdyIEcyABc2pqQaHX5/YGakELdyIDIAsgAiADIBYgASADIARzIAJzampBodfn9gZqQQ93IgFzIARzampBodfn9gZqQQN3IgIgEyAEIAEgAnMgA3NqakGh1+f2BmpBCXciBHMgAXNqakGh1+f2BmpBC3chAyAKIA4gAiADIBcgASADIARzIAJzampBodfn9gZqQQ93IgFzIARzampBodfn9gZqQQN3IgJqIQogBiAJIAEgESADIAIgFSAEIAEgAnMgA3NqakGh1+f2BmpBCXciBHMgAXNqakGh1+f2BmpBC3ciAyAEcyACc2pqQaHX5/YGakEPd2ohBiADIAdqIQcgBCAIaiEIIAVBQGshBQwBCwsgCiQBIAYkAiAHJAMgCCQECw0AIAAQASMAIABqJAAL/wQCA38BfiMAIABqrUIDhiEEIABByABqQUBxIgJBCGshAyAAIgFBAWohACABQYABOgAAA0AgACACSUEAIABBB3EbBEAgAEEAOgAAIABBAWohAAwBCwsDQCAAIAJJBEAgAEIANwMAIABBCGohAAwBCwsgAyAENwMAIAIQAUEAIwGtIgRC//8DgyAEQoCA/P8Pg0IQhoQiBEL/gYCA8B+DIARCgP6DgIDgP4NCCIaEIgRCj4C8gPCBwAeDQgiGIARC8IHAh4CegPgAg0IEiIQiBEKGjJiw4MCBgwZ8QgSIQoGChIiQoMCAAYNCJ34gBEKw4MCBg4aMmDCEfDcDAEEIIwKtIgRC//8DgyAEQoCA/P8Pg0IQhoQiBEL/gYCA8B+DIARCgP6DgIDgP4NCCIaEIgRCj4C8gPCBwAeDQgiGIARC8IHAh4CegPgAg0IEiIQiBEKGjJiw4MCBgwZ8QgSIQoGChIiQoMCAAYNCJ34gBEKw4MCBg4aMmDCEfDcDAEEQIwOtIgRC//8DgyAEQoCA/P8Pg0IQhoQiBEL/gYCA8B+DIARCgP6DgIDgP4NCCIaEIgRCj4C8gPCBwAeDQgiGIARC8IHAh4CegPgAg0IEiIQiBEKGjJiw4MCBgwZ8QgSIQoGChIiQoMCAAYNCJ34gBEKw4MCBg4aMmDCEfDcDAEEYIwStIgRC//8DgyAEQoCA/P8Pg0IQhoQiBEL/gYCA8B+DIARCgP6DgIDgP4NCCIaEIgRCj4C8gPCBwAeDQgiGIARC8IHAh4CegPgAg0IEiIQiBEKGjJiw4MCBgwZ8QgSIQoGChIiQoMCAAYNCJ34gBEKw4MCBg4aMmDCEfDcDAAs=", "base64"));
|
|
10128
10021
|
module.exports = create.bind(null, md4, [], 64, 32);
|
|
10129
10022
|
}));
|
|
10130
|
-
|
|
10131
10023
|
//#endregion
|
|
10132
10024
|
//#region node_modules/.pnpm/loader-utils@3.3.1/node_modules/loader-utils/lib/hash/BulkUpdateDecorator.js
|
|
10133
10025
|
var require_BulkUpdateDecorator = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -10197,7 +10089,6 @@ var require_BulkUpdateDecorator = /* @__PURE__ */ __commonJSMin(((exports, modul
|
|
|
10197
10089
|
};
|
|
10198
10090
|
module.exports = BulkUpdateDecorator;
|
|
10199
10091
|
}));
|
|
10200
|
-
|
|
10201
10092
|
//#endregion
|
|
10202
10093
|
//#region node_modules/.pnpm/loader-utils@3.3.1/node_modules/loader-utils/lib/getHashDigest.js
|
|
10203
10094
|
var require_getHashDigest = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -10276,7 +10167,6 @@ var require_getHashDigest = /* @__PURE__ */ __commonJSMin(((exports, module) =>
|
|
|
10276
10167
|
}
|
|
10277
10168
|
module.exports = getHashDigest;
|
|
10278
10169
|
}));
|
|
10279
|
-
|
|
10280
10170
|
//#endregion
|
|
10281
10171
|
//#region node_modules/.pnpm/loader-utils@3.3.1/node_modules/loader-utils/lib/interpolateName.js
|
|
10282
10172
|
var require_interpolateName = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -10329,7 +10219,6 @@ var require_interpolateName = /* @__PURE__ */ __commonJSMin(((exports, module) =
|
|
|
10329
10219
|
}
|
|
10330
10220
|
module.exports = interpolateName;
|
|
10331
10221
|
}));
|
|
10332
|
-
|
|
10333
10222
|
//#endregion
|
|
10334
10223
|
//#region node_modules/.pnpm/generic-names@4.0.0/node_modules/generic-names/index.js
|
|
10335
10224
|
var require_generic_names = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -10360,7 +10249,6 @@ var require_generic_names = /* @__PURE__ */ __commonJSMin(((exports, module) =>
|
|
|
10360
10249
|
};
|
|
10361
10250
|
};
|
|
10362
10251
|
}));
|
|
10363
|
-
|
|
10364
10252
|
//#endregion
|
|
10365
10253
|
//#region node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/parse.js
|
|
10366
10254
|
var require_parse = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -10592,7 +10480,6 @@ var require_parse = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
10592
10480
|
return stack[0].nodes;
|
|
10593
10481
|
};
|
|
10594
10482
|
}));
|
|
10595
|
-
|
|
10596
10483
|
//#endregion
|
|
10597
10484
|
//#region node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/walk.js
|
|
10598
10485
|
var require_walk = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -10606,7 +10493,6 @@ var require_walk = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
10606
10493
|
}
|
|
10607
10494
|
};
|
|
10608
10495
|
}));
|
|
10609
|
-
|
|
10610
10496
|
//#endregion
|
|
10611
10497
|
//#region node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/stringify.js
|
|
10612
10498
|
var require_stringify = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -10640,7 +10526,6 @@ var require_stringify = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
10640
10526
|
}
|
|
10641
10527
|
module.exports = stringify;
|
|
10642
10528
|
}));
|
|
10643
|
-
|
|
10644
10529
|
//#endregion
|
|
10645
10530
|
//#region node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/unit.js
|
|
10646
10531
|
var require_unit = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -10708,7 +10593,6 @@ var require_unit = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
10708
10593
|
};
|
|
10709
10594
|
};
|
|
10710
10595
|
}));
|
|
10711
|
-
|
|
10712
10596
|
//#endregion
|
|
10713
10597
|
//#region node_modules/.pnpm/postcss-value-parser@4.2.0/node_modules/postcss-value-parser/lib/index.js
|
|
10714
10598
|
var require_lib = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -10734,9 +10618,8 @@ var require_lib = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
10734
10618
|
ValueParser.stringify = stringify;
|
|
10735
10619
|
module.exports = ValueParser;
|
|
10736
10620
|
}));
|
|
10737
|
-
|
|
10738
10621
|
//#endregion
|
|
10739
|
-
//#region node_modules/.pnpm/postcss-modules-local-by-default@4.2.0_postcss@8.5.
|
|
10622
|
+
//#region node_modules/.pnpm/postcss-modules-local-by-default@4.2.0_postcss@8.5.8/node_modules/postcss-modules-local-by-default/src/index.js
|
|
10740
10623
|
var require_src$2 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
10741
10624
|
const selectorParser = require_dist();
|
|
10742
10625
|
const valueParser = require_lib();
|
|
@@ -11134,9 +11017,8 @@ var require_src$2 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
11134
11017
|
};
|
|
11135
11018
|
module.exports.postcss = true;
|
|
11136
11019
|
}));
|
|
11137
|
-
|
|
11138
11020
|
//#endregion
|
|
11139
|
-
//#region node_modules/.pnpm/postcss-modules-scope@3.2.1_postcss@8.5.
|
|
11021
|
+
//#region node_modules/.pnpm/postcss-modules-scope@3.2.1_postcss@8.5.8/node_modules/postcss-modules-scope/src/index.js
|
|
11140
11022
|
var require_src$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
11141
11023
|
const selectorParser = require_dist();
|
|
11142
11024
|
const hasOwnProperty = Object.prototype.hasOwnProperty;
|
|
@@ -11158,7 +11040,7 @@ var require_src$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
11158
11040
|
return node.value;
|
|
11159
11041
|
});
|
|
11160
11042
|
}
|
|
11161
|
-
const unescapeRegExp = new RegExp("\\\\([\\da-f]{1,6}[\\x20\\t\\r\\n\\f]?|([\\x20\\t\\r\\n\\f])|.)", "ig");
|
|
11043
|
+
const unescapeRegExp = /* @__PURE__ */ new RegExp("\\\\([\\da-f]{1,6}[\\x20\\t\\r\\n\\f]?|([\\x20\\t\\r\\n\\f])|.)", "ig");
|
|
11162
11044
|
function unescape(str) {
|
|
11163
11045
|
return str.replace(unescapeRegExp, (_, escaped, escapedWhitespace) => {
|
|
11164
11046
|
const high = "0x" + escaped - 65536;
|
|
@@ -11305,7 +11187,6 @@ var require_src$1 = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
11305
11187
|
};
|
|
11306
11188
|
module.exports = plugin;
|
|
11307
11189
|
}));
|
|
11308
|
-
|
|
11309
11190
|
//#endregion
|
|
11310
11191
|
//#region node_modules/.pnpm/string-hash@1.1.3/node_modules/string-hash/index.js
|
|
11311
11192
|
var require_string_hash = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
@@ -11316,9 +11197,8 @@ var require_string_hash = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
11316
11197
|
}
|
|
11317
11198
|
module.exports = hash;
|
|
11318
11199
|
}));
|
|
11319
|
-
|
|
11320
11200
|
//#endregion
|
|
11321
|
-
//#region node_modules/.pnpm/postcss-modules-values@4.0.0_postcss@8.5.
|
|
11201
|
+
//#region node_modules/.pnpm/postcss-modules-values@4.0.0_postcss@8.5.8/node_modules/postcss-modules-values/src/index.js
|
|
11322
11202
|
var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
11323
11203
|
const ICSSUtils = require_src$4();
|
|
11324
11204
|
const matchImports = /^(.+?|\([\s\S]+?\))\s+from\s+("[^"]*"|'[^']*'|[\w-]+)$/;
|
|
@@ -11404,9 +11284,8 @@ var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
11404
11284
|
};
|
|
11405
11285
|
module.exports.postcss = true;
|
|
11406
11286
|
}));
|
|
11407
|
-
|
|
11408
11287
|
//#endregion
|
|
11409
|
-
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
|
11288
|
+
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.8/node_modules/postcss-modules/build/scoping.js
|
|
11410
11289
|
var require_scoping = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
11411
11290
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11412
11291
|
exports.behaviours = void 0;
|
|
@@ -11467,9 +11346,8 @@ var require_scoping = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
11467
11346
|
});
|
|
11468
11347
|
}
|
|
11469
11348
|
}));
|
|
11470
|
-
|
|
11471
11349
|
//#endregion
|
|
11472
|
-
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.
|
|
11350
|
+
//#region node_modules/.pnpm/postcss-modules@6.0.1_postcss@8.5.8/node_modules/postcss-modules/build/pluginFactory.js
|
|
11473
11351
|
var require_pluginFactory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
11474
11352
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11475
11353
|
exports.makePlugin = makePlugin;
|
|
@@ -11542,10 +11420,9 @@ var require_pluginFactory = /* @__PURE__ */ __commonJSMin(((exports) => {
|
|
|
11542
11420
|
};
|
|
11543
11421
|
}
|
|
11544
11422
|
}));
|
|
11545
|
-
|
|
11546
11423
|
//#endregion
|
|
11547
|
-
//#region
|
|
11548
|
-
var
|
|
11424
|
+
//#region packages/compiler-sfc/src/compileStyle.ts
|
|
11425
|
+
var import_build = /* @__PURE__ */ __toESM((/* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
11549
11426
|
var _fs = require("fs");
|
|
11550
11427
|
var _fs2 = require_fs();
|
|
11551
11428
|
var _pluginFactory = require_pluginFactory();
|
|
@@ -11555,11 +11432,7 @@ var require_build = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
|
11555
11432
|
});
|
|
11556
11433
|
module.exports = (opts = {}) => (0, _pluginFactory.makePlugin)(opts);
|
|
11557
11434
|
module.exports.postcss = true;
|
|
11558
|
-
}));
|
|
11559
|
-
|
|
11560
|
-
//#endregion
|
|
11561
|
-
//#region packages/compiler-sfc/src/compileStyle.ts
|
|
11562
|
-
var import_build = /* @__PURE__ */ __toESM(require_build());
|
|
11435
|
+
})))());
|
|
11563
11436
|
function compileStyle(options) {
|
|
11564
11437
|
return doCompileStyle({
|
|
11565
11438
|
...options,
|
|
@@ -11656,7 +11529,6 @@ function preprocess(options, preprocessor) {
|
|
|
11656
11529
|
...options.preprocessOptions
|
|
11657
11530
|
}, options.preprocessCustomRequire);
|
|
11658
11531
|
}
|
|
11659
|
-
|
|
11660
11532
|
//#endregion
|
|
11661
11533
|
//#region packages/compiler-sfc/src/script/utils.ts
|
|
11662
11534
|
const UNKNOWN_TYPE = "Unknown";
|
|
@@ -11720,7 +11592,6 @@ function getEscapedPropName(key) {
|
|
|
11720
11592
|
}
|
|
11721
11593
|
const isJS = (...langs) => langs.some((lang) => lang === "js" || lang === "jsx");
|
|
11722
11594
|
const isTS = (...langs) => langs.some((lang) => lang === "ts" || lang === "tsx");
|
|
11723
|
-
|
|
11724
11595
|
//#endregion
|
|
11725
11596
|
//#region packages/compiler-sfc/src/script/analyzeScriptBindings.ts
|
|
11726
11597
|
/**
|
|
@@ -11766,7 +11637,6 @@ function getObjectOrArrayExpressionKeys(value) {
|
|
|
11766
11637
|
if (value.type === "ObjectExpression") return getObjectExpressionKeys(value);
|
|
11767
11638
|
return [];
|
|
11768
11639
|
}
|
|
11769
|
-
|
|
11770
11640
|
//#endregion
|
|
11771
11641
|
//#region packages/compiler-sfc/src/script/context.ts
|
|
11772
11642
|
var ScriptCompileContext = class {
|
|
@@ -11846,7 +11716,6 @@ function resolveParserPlugins(lang, userPlugins, dts = false) {
|
|
|
11846
11716
|
if (userPlugins) plugins.push(...userPlugins);
|
|
11847
11717
|
return plugins;
|
|
11848
11718
|
}
|
|
11849
|
-
|
|
11850
11719
|
//#endregion
|
|
11851
11720
|
//#region packages/compiler-sfc/src/rewriteDefault.ts
|
|
11852
11721
|
function rewriteDefault(input, as, parserPlugins) {
|
|
@@ -11911,7 +11780,6 @@ function specifierEnd(s, end, nodeEnd) {
|
|
|
11911
11780
|
} else if (s.slice(end, end + 1) === "}") break;
|
|
11912
11781
|
return hasCommas ? end : oldEnd;
|
|
11913
11782
|
}
|
|
11914
|
-
|
|
11915
11783
|
//#endregion
|
|
11916
11784
|
//#region packages/compiler-sfc/src/script/normalScript.ts
|
|
11917
11785
|
const normalScriptDefaultVar = `__default__`;
|
|
@@ -11944,7 +11812,6 @@ function processNormalScript(ctx, scopeId) {
|
|
|
11944
11812
|
return script;
|
|
11945
11813
|
}
|
|
11946
11814
|
}
|
|
11947
|
-
|
|
11948
11815
|
//#endregion
|
|
11949
11816
|
//#region node_modules/.pnpm/balanced-match@4.0.4/node_modules/balanced-match/dist/esm/index.js
|
|
11950
11817
|
const balanced = (a, b, str) => {
|
|
@@ -11993,9 +11860,8 @@ const range = (a, b, str) => {
|
|
|
11993
11860
|
}
|
|
11994
11861
|
return result;
|
|
11995
11862
|
};
|
|
11996
|
-
|
|
11997
11863
|
//#endregion
|
|
11998
|
-
//#region node_modules/.pnpm/brace-expansion@5.0.
|
|
11864
|
+
//#region node_modules/.pnpm/brace-expansion@5.0.4/node_modules/brace-expansion/dist/esm/index.js
|
|
11999
11865
|
const escSlash = "\0SLASH" + Math.random() + "\0";
|
|
12000
11866
|
const escOpen = "\0OPEN" + Math.random() + "\0";
|
|
12001
11867
|
const escClose = "\0CLOSE" + Math.random() + "\0";
|
|
@@ -12010,7 +11876,7 @@ const slashPattern = /\\\\/g;
|
|
|
12010
11876
|
const openPattern = /\\{/g;
|
|
12011
11877
|
const closePattern = /\\}/g;
|
|
12012
11878
|
const commaPattern = /\\,/g;
|
|
12013
|
-
const periodPattern =
|
|
11879
|
+
const periodPattern = /\\\./g;
|
|
12014
11880
|
const EXPANSION_MAX = 1e5;
|
|
12015
11881
|
function numeric(str) {
|
|
12016
11882
|
return !isNaN(str) ? parseInt(str, 10) : str.charCodeAt(0);
|
|
@@ -12135,17 +12001,15 @@ function expand_(str, max, isTop) {
|
|
|
12135
12001
|
}
|
|
12136
12002
|
return expansions;
|
|
12137
12003
|
}
|
|
12138
|
-
|
|
12139
12004
|
//#endregion
|
|
12140
|
-
//#region node_modules/.pnpm/minimatch@10.2.
|
|
12005
|
+
//#region node_modules/.pnpm/minimatch@10.2.4/node_modules/minimatch/dist/esm/assert-valid-pattern.js
|
|
12141
12006
|
const MAX_PATTERN_LENGTH = 1024 * 64;
|
|
12142
12007
|
const assertValidPattern = (pattern) => {
|
|
12143
12008
|
if (typeof pattern !== "string") throw new TypeError("invalid pattern");
|
|
12144
12009
|
if (pattern.length > MAX_PATTERN_LENGTH) throw new TypeError("pattern is too long");
|
|
12145
12010
|
};
|
|
12146
|
-
|
|
12147
12011
|
//#endregion
|
|
12148
|
-
//#region node_modules/.pnpm/minimatch@10.2.
|
|
12012
|
+
//#region node_modules/.pnpm/minimatch@10.2.4/node_modules/minimatch/dist/esm/brace-expressions.js
|
|
12149
12013
|
const posixClasses = {
|
|
12150
12014
|
"[:alnum:]": ["\\p{L}\\p{Nl}\\p{Nd}", true],
|
|
12151
12015
|
"[:alpha:]": ["\\p{L}\\p{Nl}", true],
|
|
@@ -12265,9 +12129,8 @@ const parseClass = (glob, position) => {
|
|
|
12265
12129
|
true
|
|
12266
12130
|
];
|
|
12267
12131
|
};
|
|
12268
|
-
|
|
12269
12132
|
//#endregion
|
|
12270
|
-
//#region node_modules/.pnpm/minimatch@10.2.
|
|
12133
|
+
//#region node_modules/.pnpm/minimatch@10.2.4/node_modules/minimatch/dist/esm/unescape.js
|
|
12271
12134
|
/**
|
|
12272
12135
|
* Un-escape a string that has been escaped with {@link escape}.
|
|
12273
12136
|
*
|
|
@@ -12291,9 +12154,8 @@ const unescape = (s, { windowsPathsNoEscape = false, magicalBraces = true } = {}
|
|
|
12291
12154
|
if (magicalBraces) return windowsPathsNoEscape ? s.replace(/\[([^\/\\])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^\/\\])\]/g, "$1$2").replace(/\\([^\/])/g, "$1");
|
|
12292
12155
|
return windowsPathsNoEscape ? s.replace(/\[([^\/\\{}])\]/g, "$1") : s.replace(/((?!\\).|^)\[([^\/\\{}])\]/g, "$1$2").replace(/\\([^\/{}])/g, "$1");
|
|
12293
12156
|
};
|
|
12294
|
-
|
|
12295
12157
|
//#endregion
|
|
12296
|
-
//#region node_modules/.pnpm/minimatch@10.2.
|
|
12158
|
+
//#region node_modules/.pnpm/minimatch@10.2.4/node_modules/minimatch/dist/esm/ast.js
|
|
12297
12159
|
var _AST;
|
|
12298
12160
|
let _Symbol$for;
|
|
12299
12161
|
var _a;
|
|
@@ -12828,9 +12690,8 @@ function _parseGlob(glob, hasMagic, noEmpty = false) {
|
|
|
12828
12690
|
];
|
|
12829
12691
|
}
|
|
12830
12692
|
_a = AST;
|
|
12831
|
-
|
|
12832
12693
|
//#endregion
|
|
12833
|
-
//#region node_modules/.pnpm/minimatch@10.2.
|
|
12694
|
+
//#region node_modules/.pnpm/minimatch@10.2.4/node_modules/minimatch/dist/esm/escape.js
|
|
12834
12695
|
/**
|
|
12835
12696
|
* Escape all magic characters in a glob pattern.
|
|
12836
12697
|
*
|
|
@@ -12847,9 +12708,8 @@ const escape = (s, { windowsPathsNoEscape = false, magicalBraces = false } = {})
|
|
|
12847
12708
|
if (magicalBraces) return windowsPathsNoEscape ? s.replace(/[?*()[\]{}]/g, "[$&]") : s.replace(/[?*()[\]\\{}]/g, "\\$&");
|
|
12848
12709
|
return windowsPathsNoEscape ? s.replace(/[?*()[\]]/g, "[$&]") : s.replace(/[?*()[\]\\]/g, "\\$&");
|
|
12849
12710
|
};
|
|
12850
|
-
|
|
12851
12711
|
//#endregion
|
|
12852
|
-
//#region node_modules/.pnpm/minimatch@10.2.
|
|
12712
|
+
//#region node_modules/.pnpm/minimatch@10.2.4/node_modules/minimatch/dist/esm/index.js
|
|
12853
12713
|
const minimatch = (p, pattern, options = {}) => {
|
|
12854
12714
|
assertValidPattern(pattern);
|
|
12855
12715
|
if (!options.nocomment && pattern.charAt(0) === "#") return false;
|
|
@@ -12909,9 +12769,7 @@ const path$1 = {
|
|
|
12909
12769
|
win32: { sep: "\\" },
|
|
12910
12770
|
posix: { sep: "/" }
|
|
12911
12771
|
};
|
|
12912
|
-
|
|
12913
|
-
const sep = defaultPlatform === "win32" ? path$1.win32.sep : path$1.posix.sep;
|
|
12914
|
-
minimatch.sep = sep;
|
|
12772
|
+
minimatch.sep = defaultPlatform === "win32" ? path$1.win32.sep : path$1.posix.sep;
|
|
12915
12773
|
const GLOBSTAR = Symbol("globstar **");
|
|
12916
12774
|
minimatch.GLOBSTAR = GLOBSTAR;
|
|
12917
12775
|
const star = "[^/]*?";
|
|
@@ -13345,7 +13203,11 @@ var Minimatch = class {
|
|
|
13345
13203
|
function _matchGlobstar(file, pattern, partial, fileIndex, patternIndex) {
|
|
13346
13204
|
const firstgs = pattern.indexOf(GLOBSTAR, patternIndex);
|
|
13347
13205
|
const lastgs = pattern.lastIndexOf(GLOBSTAR);
|
|
13348
|
-
const [head, body, tail] = [
|
|
13206
|
+
const [head, body, tail] = partial ? [
|
|
13207
|
+
pattern.slice(patternIndex, firstgs),
|
|
13208
|
+
pattern.slice(firstgs + 1),
|
|
13209
|
+
[]
|
|
13210
|
+
] : [
|
|
13349
13211
|
pattern.slice(patternIndex, firstgs),
|
|
13350
13212
|
pattern.slice(firstgs + 1, lastgs),
|
|
13351
13213
|
pattern.slice(lastgs + 1)
|
|
@@ -13375,7 +13237,7 @@ function _matchGlobstar(file, pattern, partial, fileIndex, patternIndex) {
|
|
|
13375
13237
|
sawSome = true;
|
|
13376
13238
|
if (f === "." || f === ".." || !this.options.dot && f.startsWith(".")) return false;
|
|
13377
13239
|
}
|
|
13378
|
-
return sawSome;
|
|
13240
|
+
return partial || sawSome;
|
|
13379
13241
|
}
|
|
13380
13242
|
const bodySegments = [[[], 0]];
|
|
13381
13243
|
let currentBody = bodySegments[0];
|
|
@@ -13414,7 +13276,7 @@ function _matchGlobStarBodySections(file, bodySegments, fileIndex, bodyIndex, pa
|
|
|
13414
13276
|
if (f === "." || f === ".." || !this.options.dot && f.startsWith(".")) return false;
|
|
13415
13277
|
fileIndex++;
|
|
13416
13278
|
}
|
|
13417
|
-
return null;
|
|
13279
|
+
return partial || null;
|
|
13418
13280
|
}
|
|
13419
13281
|
function _matchOne(file, pattern, partial, fileIndex, patternIndex) {
|
|
13420
13282
|
let fi;
|
|
@@ -13450,7 +13312,6 @@ minimatch.AST = AST;
|
|
|
13450
13312
|
minimatch.Minimatch = Minimatch;
|
|
13451
13313
|
minimatch.escape = escape;
|
|
13452
13314
|
minimatch.unescape = unescape;
|
|
13453
|
-
|
|
13454
13315
|
//#endregion
|
|
13455
13316
|
//#region packages/compiler-sfc/src/script/resolveType.ts
|
|
13456
13317
|
var TypeScope = class {
|
|
@@ -14144,7 +14005,7 @@ function inferRuntimeType(ctx, node, scope = node._ownerScope || ctxToScope(ctx)
|
|
|
14144
14005
|
const annotation = m.parameters[0].typeAnnotation;
|
|
14145
14006
|
if (annotation && annotation.type !== "Noop") {
|
|
14146
14007
|
const type = inferRuntimeType(ctx, annotation.typeAnnotation, scope)[0];
|
|
14147
|
-
if (type ===
|
|
14008
|
+
if (type === "Unknown") return [UNKNOWN_TYPE];
|
|
14148
14009
|
types.add(type);
|
|
14149
14010
|
}
|
|
14150
14011
|
} else types.add("String");
|
|
@@ -14400,12 +14261,11 @@ function resolveUnionType(ctx, node, scope) {
|
|
|
14400
14261
|
else types = [node];
|
|
14401
14262
|
return types;
|
|
14402
14263
|
}
|
|
14403
|
-
|
|
14404
14264
|
//#endregion
|
|
14405
14265
|
//#region packages/compiler-sfc/src/script/defineModel.ts
|
|
14406
14266
|
const DEFINE_MODEL = "defineModel";
|
|
14407
14267
|
function processDefineModel(ctx, node, declId) {
|
|
14408
|
-
if (!isCallOf(node,
|
|
14268
|
+
if (!isCallOf(node, "defineModel")) return false;
|
|
14409
14269
|
ctx.hasDefineModelCall = true;
|
|
14410
14270
|
const type = node.typeParameters && node.typeParameters.params[0] || void 0;
|
|
14411
14271
|
let modelName;
|
|
@@ -14464,7 +14324,7 @@ function genModelProps(ctx) {
|
|
|
14464
14324
|
if (runtimeTypes) {
|
|
14465
14325
|
const hasBoolean = runtimeTypes.includes("Boolean");
|
|
14466
14326
|
const hasFunction = runtimeTypes.includes("Function");
|
|
14467
|
-
if (runtimeTypes.includes(
|
|
14327
|
+
if (runtimeTypes.includes("Unknown")) if (hasBoolean || hasFunction) {
|
|
14468
14328
|
runtimeTypes = runtimeTypes.filter((t) => t !== UNKNOWN_TYPE);
|
|
14469
14329
|
skipCheck = true;
|
|
14470
14330
|
} else runtimeTypes = ["null"];
|
|
@@ -14482,13 +14342,12 @@ function genModelProps(ctx) {
|
|
|
14482
14342
|
}
|
|
14483
14343
|
return `{${modelPropsDecl}\n }`;
|
|
14484
14344
|
}
|
|
14485
|
-
|
|
14486
14345
|
//#endregion
|
|
14487
14346
|
//#region packages/compiler-sfc/src/script/defineProps.ts
|
|
14488
14347
|
const DEFINE_PROPS = "defineProps";
|
|
14489
14348
|
const WITH_DEFAULTS = "withDefaults";
|
|
14490
14349
|
function processDefineProps(ctx, node, declId, isWithDefaults = false) {
|
|
14491
|
-
if (!isCallOf(node,
|
|
14350
|
+
if (!isCallOf(node, "defineProps")) return processWithDefaults(ctx, node, declId);
|
|
14492
14351
|
if (ctx.hasDefinePropsCall) ctx.error(`duplicate ${DEFINE_PROPS}() call`, node);
|
|
14493
14352
|
ctx.hasDefinePropsCall = true;
|
|
14494
14353
|
ctx.propsRuntimeDecl = node.arguments[0];
|
|
@@ -14509,7 +14368,7 @@ function processDefineProps(ctx, node, declId, isWithDefaults = false) {
|
|
|
14509
14368
|
return true;
|
|
14510
14369
|
}
|
|
14511
14370
|
function processWithDefaults(ctx, node, declId) {
|
|
14512
|
-
if (!isCallOf(node,
|
|
14371
|
+
if (!isCallOf(node, "withDefaults")) return false;
|
|
14513
14372
|
if (!processDefineProps(ctx, node.arguments[0], declId, true)) ctx.error(`${WITH_DEFAULTS}' first argument must be a ${DEFINE_PROPS} call.`, node.arguments[0] || node);
|
|
14514
14373
|
if (ctx.propsRuntimeDecl) ctx.error(`${WITH_DEFAULTS} can only be used with type-based ${DEFINE_PROPS} declaration.`, node);
|
|
14515
14374
|
if (declId && declId.type === "ObjectPattern") ctx.warn(`${WITH_DEFAULTS}() is unnecessary when using destructure with ${DEFINE_PROPS}().\nReactive destructure will be disabled when using withDefaults().\nPrefer using destructure default values, e.g. const { foo = 1 } = defineProps(...). `, node.callee);
|
|
@@ -14554,7 +14413,7 @@ function resolveRuntimePropsFromType(ctx, node) {
|
|
|
14554
14413
|
const e = elements.props[key];
|
|
14555
14414
|
let type = inferRuntimeType(ctx, e);
|
|
14556
14415
|
let skipCheck = false;
|
|
14557
|
-
if (type.includes(
|
|
14416
|
+
if (type.includes("Unknown")) if (type.includes("Boolean") || type.includes("Function")) {
|
|
14558
14417
|
type = type.filter((t) => t !== UNKNOWN_TYPE);
|
|
14559
14418
|
skipCheck = true;
|
|
14560
14419
|
} else type = ["null"];
|
|
@@ -14640,7 +14499,6 @@ function inferValueType(node) {
|
|
|
14640
14499
|
case "ArrowFunctionExpression": return "Function";
|
|
14641
14500
|
}
|
|
14642
14501
|
}
|
|
14643
|
-
|
|
14644
14502
|
//#endregion
|
|
14645
14503
|
//#region packages/compiler-sfc/src/script/definePropsDestructure.ts
|
|
14646
14504
|
function processPropsDestructure(ctx, declId) {
|
|
@@ -14768,12 +14626,11 @@ function transformDestructuredProps(ctx, vueImportAliases) {
|
|
|
14768
14626
|
}
|
|
14769
14627
|
});
|
|
14770
14628
|
}
|
|
14771
|
-
|
|
14772
14629
|
//#endregion
|
|
14773
14630
|
//#region packages/compiler-sfc/src/script/defineEmits.ts
|
|
14774
14631
|
const DEFINE_EMITS = "defineEmits";
|
|
14775
14632
|
function processDefineEmits(ctx, node, declId) {
|
|
14776
|
-
if (!isCallOf(node,
|
|
14633
|
+
if (!isCallOf(node, "defineEmits")) return false;
|
|
14777
14634
|
if (ctx.hasDefineEmitCall) ctx.error(`duplicate ${DEFINE_EMITS}() call`, node);
|
|
14778
14635
|
ctx.hasDefineEmitCall = true;
|
|
14779
14636
|
ctx.emitsRuntimeDecl = node.arguments[0];
|
|
@@ -14824,36 +14681,33 @@ function extractEventNames(ctx, eventName, emits) {
|
|
|
14824
14681
|
}
|
|
14825
14682
|
}
|
|
14826
14683
|
}
|
|
14827
|
-
|
|
14828
14684
|
//#endregion
|
|
14829
14685
|
//#region packages/compiler-sfc/src/script/defineExpose.ts
|
|
14830
14686
|
const DEFINE_EXPOSE = "defineExpose";
|
|
14831
14687
|
function processDefineExpose(ctx, node) {
|
|
14832
|
-
if (isCallOf(node,
|
|
14688
|
+
if (isCallOf(node, "defineExpose")) {
|
|
14833
14689
|
if (ctx.hasDefineExposeCall) ctx.error(`duplicate ${DEFINE_EXPOSE}() call`, node);
|
|
14834
14690
|
ctx.hasDefineExposeCall = true;
|
|
14835
14691
|
return true;
|
|
14836
14692
|
}
|
|
14837
14693
|
return false;
|
|
14838
14694
|
}
|
|
14839
|
-
|
|
14840
14695
|
//#endregion
|
|
14841
14696
|
//#region packages/compiler-sfc/src/script/defineSlots.ts
|
|
14842
14697
|
const DEFINE_SLOTS = "defineSlots";
|
|
14843
14698
|
function processDefineSlots(ctx, node, declId) {
|
|
14844
|
-
if (!isCallOf(node,
|
|
14699
|
+
if (!isCallOf(node, "defineSlots")) return false;
|
|
14845
14700
|
if (ctx.hasDefineSlotsCall) ctx.error(`duplicate ${DEFINE_SLOTS}() call`, node);
|
|
14846
14701
|
ctx.hasDefineSlotsCall = true;
|
|
14847
14702
|
if (node.arguments.length > 0) ctx.error(`${DEFINE_SLOTS}() cannot accept arguments`, node);
|
|
14848
14703
|
if (declId) ctx.s.overwrite(ctx.startOffset + node.start, ctx.startOffset + node.end, `${ctx.helper("useSlots")}()`);
|
|
14849
14704
|
return true;
|
|
14850
14705
|
}
|
|
14851
|
-
|
|
14852
14706
|
//#endregion
|
|
14853
14707
|
//#region packages/compiler-sfc/src/script/defineOptions.ts
|
|
14854
14708
|
const DEFINE_OPTIONS = "defineOptions";
|
|
14855
14709
|
function processDefineOptions(ctx, node) {
|
|
14856
|
-
if (!isCallOf(node,
|
|
14710
|
+
if (!isCallOf(node, "defineOptions")) return false;
|
|
14857
14711
|
if (ctx.hasDefineOptionsCall) ctx.error(`duplicate ${DEFINE_OPTIONS}() call`, node);
|
|
14858
14712
|
if (node.typeParameters) ctx.error(`${DEFINE_OPTIONS}() cannot accept type arguments`, node);
|
|
14859
14713
|
if (!node.arguments[0]) return true;
|
|
@@ -14885,7 +14739,6 @@ function processDefineOptions(ctx, node) {
|
|
|
14885
14739
|
if (slotsOption) ctx.error(`${DEFINE_OPTIONS}() cannot be used to declare slots. Use ${DEFINE_SLOTS}() instead.`, slotsOption);
|
|
14886
14740
|
return true;
|
|
14887
14741
|
}
|
|
14888
|
-
|
|
14889
14742
|
//#endregion
|
|
14890
14743
|
//#region packages/compiler-sfc/src/script/topLevelAwait.ts
|
|
14891
14744
|
/**
|
|
@@ -14929,7 +14782,6 @@ function processAwait(ctx, node, needSemi, isStatement) {
|
|
|
14929
14782
|
ctx.s.overwrite(node.start + startOffset, argumentStart + startOffset, `${needSemi ? `;` : ``}(\n ([__temp,__restore] = ${ctx.helper(`withAsyncContext`)}(${containsNestedAwait ? `async ` : ``}() => `);
|
|
14930
14783
|
ctx.s.appendLeft(node.end + startOffset, `)),\n ${isStatement ? `` : `__temp = `}await __temp,\n __restore()${isStatement ? `` : `,\n __temp`}\n)`);
|
|
14931
14784
|
}
|
|
14932
|
-
|
|
14933
14785
|
//#endregion
|
|
14934
14786
|
//#region packages/compiler-sfc/src/compileScript.ts
|
|
14935
14787
|
const MACROS = [
|
|
@@ -15284,7 +15136,7 @@ function compileScript(sfc, options) {
|
|
|
15284
15136
|
else ctx.s.appendRight(endOffset, `\n${vapor && !ssr ? `` : `return `}${returned}\n}\n\n`);
|
|
15285
15137
|
const genDefaultAs = options.genDefaultAs ? `const ${options.genDefaultAs} =` : `export default`;
|
|
15286
15138
|
let runtimeOptions = ``;
|
|
15287
|
-
if (!ctx.hasDefaultExportName && filename && filename !==
|
|
15139
|
+
if (!ctx.hasDefaultExportName && filename && filename !== "anonymous.vue") {
|
|
15288
15140
|
const match = filename.match(/([^/\\]+)\.\w+$/);
|
|
15289
15141
|
if (match) runtimeOptions += `\n __name: '${match[1]}',`;
|
|
15290
15142
|
}
|
|
@@ -15292,6 +15144,10 @@ function compileScript(sfc, options) {
|
|
|
15292
15144
|
if (propsDecl) runtimeOptions += `\n props: ${propsDecl},`;
|
|
15293
15145
|
const emitsDecl = genRuntimeEmits(ctx);
|
|
15294
15146
|
if (emitsDecl) runtimeOptions += `\n emits: ${emitsDecl},`;
|
|
15147
|
+
if (vapor && !ssr && sfc.template && !sfc.template.src) {
|
|
15148
|
+
var _options$templateOpti2;
|
|
15149
|
+
runtimeOptions += `\n __multiRoot: ${isMultiRoot(sfc.template.ast, (_options$templateOpti2 = options.templateOptions) === null || _options$templateOpti2 === void 0 ? void 0 : _options$templateOpti2.compilerOptions)},`;
|
|
15150
|
+
}
|
|
15295
15151
|
let definedOptions = "";
|
|
15296
15152
|
if (ctx.optionsRuntimeDecl) definedOptions = scriptSetup.content.slice(ctx.optionsRuntimeDecl.start, ctx.optionsRuntimeDecl.end).trim();
|
|
15297
15153
|
if (!ctx.hasDefineExposeCall && !inlineMode) setupPreambleLines.push(`__expose();`);
|
|
@@ -15312,8 +15168,8 @@ function compileScript(sfc, options) {
|
|
|
15312
15168
|
}
|
|
15313
15169
|
}
|
|
15314
15170
|
if (ctx.helperImports.size > 0) {
|
|
15315
|
-
var _options$
|
|
15316
|
-
const runtimeModuleName = (_options$
|
|
15171
|
+
var _options$templateOpti3;
|
|
15172
|
+
const runtimeModuleName = (_options$templateOpti3 = options.templateOptions) === null || _options$templateOpti3 === void 0 || (_options$templateOpti3 = _options$templateOpti3.compilerOptions) === null || _options$templateOpti3 === void 0 ? void 0 : _options$templateOpti3.runtimeModuleName;
|
|
15317
15173
|
const importSrc = runtimeModuleName ? JSON.stringify(runtimeModuleName) : `'vue'`;
|
|
15318
15174
|
ctx.s.prepend(`import { ${[...ctx.helperImports].map((h) => `${h} as _${h}`).join(", ")} } from ${importSrc}\n`);
|
|
15319
15175
|
}
|
|
@@ -15349,19 +15205,19 @@ function walkDeclaration(from, node, bindings, userImportAliases, hoistStatic, i
|
|
|
15349
15205
|
isAllLiteral = isConst && node.declarations.every((decl) => decl.id.type === "Identifier" && (0, _vue_compiler_dom.isStaticNode)(decl.init));
|
|
15350
15206
|
for (const { id, init: _init } of node.declarations) {
|
|
15351
15207
|
const init = _init && (0, _vue_compiler_dom.unwrapTSNode)(_init);
|
|
15352
|
-
const isConstMacroCall = isConst && isCallOf(init, (c) => c ===
|
|
15208
|
+
const isConstMacroCall = isConst && isCallOf(init, (c) => c === "defineProps" || c === "defineEmits" || c === "withDefaults" || c === "defineSlots");
|
|
15353
15209
|
if (id.type === "Identifier") {
|
|
15354
15210
|
let bindingType;
|
|
15355
15211
|
const userReactiveBinding = userImportAliases["reactive"];
|
|
15356
15212
|
if ((hoistStatic || from === "script") && (isAllLiteral || isConst && (0, _vue_compiler_dom.isStaticNode)(init))) bindingType = "literal-const";
|
|
15357
15213
|
else if (isCallOf(init, userReactiveBinding)) bindingType = isConst ? "setup-reactive-const" : "setup-let";
|
|
15358
|
-
else if (isConstMacroCall || isConst && canNeverBeRef(init, userReactiveBinding)) bindingType = isCallOf(init,
|
|
15359
|
-
else if (isConst) if (isCallOf(init, (m) => m === userImportAliases["ref"] || m === userImportAliases["computed"] || m === userImportAliases["shallowRef"] || m === userImportAliases["customRef"] || m === userImportAliases["toRef"] || m === userImportAliases["useTemplateRef"] || m ===
|
|
15214
|
+
else if (isConstMacroCall || isConst && canNeverBeRef(init, userReactiveBinding)) bindingType = isCallOf(init, "defineProps") ? "setup-reactive-const" : "setup-const";
|
|
15215
|
+
else if (isConst) if (isCallOf(init, (m) => m === userImportAliases["ref"] || m === userImportAliases["computed"] || m === userImportAliases["shallowRef"] || m === userImportAliases["customRef"] || m === userImportAliases["toRef"] || m === userImportAliases["useTemplateRef"] || m === "defineModel")) bindingType = "setup-ref";
|
|
15360
15216
|
else bindingType = "setup-maybe-ref";
|
|
15361
15217
|
else bindingType = "setup-let";
|
|
15362
15218
|
registerBinding(bindings, id, bindingType);
|
|
15363
15219
|
} else {
|
|
15364
|
-
if (isCallOf(init,
|
|
15220
|
+
if (isCallOf(init, "defineProps") && isPropsDestructureEnabled) continue;
|
|
15365
15221
|
if (id.type === "ObjectPattern") walkObjectPattern(id, bindings, isConst, isConstMacroCall);
|
|
15366
15222
|
else if (id.type === "ArrayPattern") walkArrayPattern(id, bindings, isConst, isConstMacroCall);
|
|
15367
15223
|
}
|
|
@@ -15446,10 +15302,9 @@ function mergeSourceMaps(scriptMap, templateMap, templateLineOffset) {
|
|
|
15446
15302
|
generator._file = scriptMap.file;
|
|
15447
15303
|
return generator.toJSON();
|
|
15448
15304
|
}
|
|
15449
|
-
|
|
15450
15305
|
//#endregion
|
|
15451
15306
|
//#region packages/compiler-sfc/src/index.ts
|
|
15452
|
-
const version = "3.6.0-beta.
|
|
15307
|
+
const version = "3.6.0-beta.8";
|
|
15453
15308
|
const parseCache = parseCache$1;
|
|
15454
15309
|
const errorMessages = {
|
|
15455
15310
|
..._vue_compiler_dom.errorMessages,
|
|
@@ -15462,7 +15317,6 @@ const walk = estree_walker.walk;
|
|
|
15462
15317
|
* ignoring the option instead of breaking.
|
|
15463
15318
|
*/
|
|
15464
15319
|
const shouldTransformRef = () => false;
|
|
15465
|
-
|
|
15466
15320
|
//#endregion
|
|
15467
15321
|
exports.MagicString = magic_string.default;
|
|
15468
15322
|
exports.babelParse = _babel_parser.parse;
|
|
@@ -15488,4 +15342,4 @@ exports.rewriteDefaultAST = rewriteDefaultAST;
|
|
|
15488
15342
|
exports.shouldTransformRef = shouldTransformRef;
|
|
15489
15343
|
exports.version = version;
|
|
15490
15344
|
exports.walk = walk;
|
|
15491
|
-
exports.walkIdentifiers = _vue_compiler_core.walkIdentifiers;
|
|
15345
|
+
exports.walkIdentifiers = _vue_compiler_core.walkIdentifiers;
|