@wisemen/vue-core-api-utils 0.0.1-beta.2 → 0.0.1-beta.3
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/index.js +335 -258
- package/package.json +8 -8
package/dist/index.js
CHANGED
|
@@ -36,10 +36,9 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
36
36
|
}) : target, mod));
|
|
37
37
|
|
|
38
38
|
//#endregion
|
|
39
|
-
//#region ../../node_modules/.pnpm/@vue+shared@3.5.
|
|
40
|
-
var require_shared_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+shared@3.5.
|
|
39
|
+
//#region ../../node_modules/.pnpm/@vue+shared@3.5.21/node_modules/@vue/shared/dist/shared.cjs.prod.js
|
|
40
|
+
var require_shared_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+shared@3.5.21/node_modules/@vue/shared/dist/shared.cjs.prod.js": ((exports) => {
|
|
41
41
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42
|
-
/*! #__NO_SIDE_EFFECTS__ */
|
|
43
42
|
/* @__NO_SIDE_EFFECTS__ */
|
|
44
43
|
function makeMap$1(str) {
|
|
45
44
|
const map$1 = /* @__PURE__ */ Object.create(null);
|
|
@@ -82,13 +81,13 @@ var require_shared_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.
|
|
|
82
81
|
const isBuiltInDirective = /* @__PURE__ */ makeMap$1("bind,cloak,else-if,else,for,html,if,model,on,once,pre,show,slot,text,memo");
|
|
83
82
|
const cacheStringFunction$1 = (fn) => {
|
|
84
83
|
const cache = /* @__PURE__ */ Object.create(null);
|
|
85
|
-
return (str) => {
|
|
84
|
+
return ((str) => {
|
|
86
85
|
return cache[str] || (cache[str] = fn(str));
|
|
87
|
-
};
|
|
86
|
+
});
|
|
88
87
|
};
|
|
89
|
-
const camelizeRE$1 =
|
|
88
|
+
const camelizeRE$1 = /-\w/g;
|
|
90
89
|
const camelize$1 = cacheStringFunction$1((str) => {
|
|
91
|
-
return str.replace(camelizeRE$1, (
|
|
90
|
+
return str.replace(camelizeRE$1, (c) => c.slice(1).toUpperCase());
|
|
92
91
|
});
|
|
93
92
|
const hyphenateRE$1 = /\B([A-Z])/g;
|
|
94
93
|
const hyphenate$1 = cacheStringFunction$1((str) => str.replace(hyphenateRE$1, "-$1").toLowerCase());
|
|
@@ -172,7 +171,7 @@ var require_shared_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.
|
|
|
172
171
|
[512]: `NEED_PATCH`,
|
|
173
172
|
[1024]: `DYNAMIC_SLOTS`,
|
|
174
173
|
[2048]: `DEV_ROOT_FRAGMENT`,
|
|
175
|
-
[-1]: `
|
|
174
|
+
[-1]: `CACHED`,
|
|
176
175
|
[-2]: `BAIL`
|
|
177
176
|
};
|
|
178
177
|
const ShapeFlags = {
|
|
@@ -440,6 +439,11 @@ var require_shared_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.
|
|
|
440
439
|
var _a$1;
|
|
441
440
|
return isSymbol(v) ? `Symbol(${(_a$1 = v.description) != null ? _a$1 : i})` : v;
|
|
442
441
|
};
|
|
442
|
+
function normalizeCssVarValue(value) {
|
|
443
|
+
if (value == null) return "initial";
|
|
444
|
+
if (typeof value === "string") return value === "" ? " " : value;
|
|
445
|
+
return String(value);
|
|
446
|
+
}
|
|
443
447
|
exports.EMPTY_ARR = EMPTY_ARR$1;
|
|
444
448
|
exports.EMPTY_OBJ = EMPTY_OBJ$1;
|
|
445
449
|
exports.NO = NO;
|
|
@@ -499,6 +503,7 @@ var require_shared_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.
|
|
|
499
503
|
exports.looseToNumber = looseToNumber;
|
|
500
504
|
exports.makeMap = makeMap$1;
|
|
501
505
|
exports.normalizeClass = normalizeClass;
|
|
506
|
+
exports.normalizeCssVarValue = normalizeCssVarValue;
|
|
502
507
|
exports.normalizeProps = normalizeProps;
|
|
503
508
|
exports.normalizeStyle = normalizeStyle;
|
|
504
509
|
exports.objectToString = objectToString;
|
|
@@ -515,10 +520,9 @@ var require_shared_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.
|
|
|
515
520
|
}) });
|
|
516
521
|
|
|
517
522
|
//#endregion
|
|
518
|
-
//#region ../../node_modules/.pnpm/@vue+shared@3.5.
|
|
519
|
-
var require_shared_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+shared@3.5.
|
|
523
|
+
//#region ../../node_modules/.pnpm/@vue+shared@3.5.21/node_modules/@vue/shared/dist/shared.cjs.js
|
|
524
|
+
var require_shared_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+shared@3.5.21/node_modules/@vue/shared/dist/shared.cjs.js": ((exports) => {
|
|
520
525
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
521
|
-
/*! #__NO_SIDE_EFFECTS__ */
|
|
522
526
|
/* @__NO_SIDE_EFFECTS__ */
|
|
523
527
|
function makeMap(str) {
|
|
524
528
|
const map$1 = /* @__PURE__ */ Object.create(null);
|
|
@@ -530,13 +534,13 @@ var require_shared_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/
|
|
|
530
534
|
const isArray = Array.isArray;
|
|
531
535
|
const cacheStringFunction = (fn) => {
|
|
532
536
|
const cache = /* @__PURE__ */ Object.create(null);
|
|
533
|
-
return (str) => {
|
|
537
|
+
return ((str) => {
|
|
534
538
|
return cache[str] || (cache[str] = fn(str));
|
|
535
|
-
};
|
|
539
|
+
});
|
|
536
540
|
};
|
|
537
|
-
const camelizeRE =
|
|
541
|
+
const camelizeRE = /-\w/g;
|
|
538
542
|
const camelize = cacheStringFunction((str) => {
|
|
539
|
-
return str.replace(camelizeRE, (
|
|
543
|
+
return str.replace(camelizeRE, (c) => c.slice(1).toUpperCase());
|
|
540
544
|
});
|
|
541
545
|
const hyphenateRE = /\B([A-Z])/g;
|
|
542
546
|
const hyphenate = cacheStringFunction((str) => str.replace(hyphenateRE, "-$1").toLowerCase());
|
|
@@ -551,8 +555,8 @@ var require_shared_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/
|
|
|
551
555
|
}) });
|
|
552
556
|
|
|
553
557
|
//#endregion
|
|
554
|
-
//#region ../../node_modules/.pnpm/@vue+shared@3.5.
|
|
555
|
-
var require_shared = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+shared@3.5.
|
|
558
|
+
//#region ../../node_modules/.pnpm/@vue+shared@3.5.21/node_modules/@vue/shared/index.js
|
|
559
|
+
var require_shared = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+shared@3.5.21/node_modules/@vue/shared/index.js": ((exports, module) => {
|
|
556
560
|
if (process.env.NODE_ENV === "production") module.exports = require_shared_cjs_prod();
|
|
557
561
|
else module.exports = require_shared_cjs();
|
|
558
562
|
}) });
|
|
@@ -1111,8 +1115,8 @@ var require_decode = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/enti
|
|
|
1111
1115
|
}) });
|
|
1112
1116
|
|
|
1113
1117
|
//#endregion
|
|
1114
|
-
//#region ../../node_modules/.pnpm/@babel+parser@7.28.
|
|
1115
|
-
var require_lib = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@babel+parser@7.28.
|
|
1118
|
+
//#region ../../node_modules/.pnpm/@babel+parser@7.28.4/node_modules/@babel/parser/lib/index.js
|
|
1119
|
+
var require_lib = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@babel+parser@7.28.4/node_modules/@babel/parser/lib/index.js": ((exports) => {
|
|
1116
1120
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1117
1121
|
function _objectWithoutPropertiesLoose(r, e) {
|
|
1118
1122
|
if (null == r) return {};
|
|
@@ -10336,6 +10340,10 @@ var require_lib = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@babel+
|
|
|
10336
10340
|
node.declare ??= false;
|
|
10337
10341
|
node.extends ??= [];
|
|
10338
10342
|
return;
|
|
10343
|
+
case "TSMappedType":
|
|
10344
|
+
node.optional ??= false;
|
|
10345
|
+
node.readonly ??= void 0;
|
|
10346
|
+
return;
|
|
10339
10347
|
case "TSModuleDeclaration":
|
|
10340
10348
|
node.declare ??= false;
|
|
10341
10349
|
node.global ??= node.kind === "global";
|
|
@@ -15962,8 +15970,8 @@ var require_source_map = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/
|
|
|
15962
15970
|
}) });
|
|
15963
15971
|
|
|
15964
15972
|
//#endregion
|
|
15965
|
-
//#region ../../node_modules/.pnpm/@vue+compiler-core@3.5.
|
|
15966
|
-
var require_compiler_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+compiler-core@3.5.
|
|
15973
|
+
//#region ../../node_modules/.pnpm/@vue+compiler-core@3.5.21/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js
|
|
15974
|
+
var require_compiler_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+compiler-core@3.5.21/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js": ((exports) => {
|
|
15967
15975
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15968
15976
|
var shared$11 = require_shared();
|
|
15969
15977
|
var decode_js$1 = require_decode();
|
|
@@ -16909,7 +16917,7 @@ var require_compiler_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mo
|
|
|
16909
16917
|
this.buffer = input;
|
|
16910
16918
|
while (this.index < this.buffer.length) {
|
|
16911
16919
|
const c = this.buffer.charCodeAt(this.index);
|
|
16912
|
-
if (c === 10) this.newlines.push(this.index);
|
|
16920
|
+
if (c === 10 && this.state !== 33) this.newlines.push(this.index);
|
|
16913
16921
|
switch (this.state) {
|
|
16914
16922
|
case 1:
|
|
16915
16923
|
this.stateText(c);
|
|
@@ -17336,11 +17344,11 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
17336
17344
|
function isReferencedIdentifier$1(id, parent, parentStack) {
|
|
17337
17345
|
if (!parent) return true;
|
|
17338
17346
|
if (id.name === "arguments") return false;
|
|
17339
|
-
if (isReferenced$1(id, parent)) return true;
|
|
17347
|
+
if (isReferenced$1(id, parent, parentStack[parentStack.length - 2])) return true;
|
|
17340
17348
|
switch (parent.type) {
|
|
17341
17349
|
case "AssignmentExpression":
|
|
17342
17350
|
case "AssignmentPattern": return true;
|
|
17343
|
-
case "
|
|
17351
|
+
case "ObjectProperty": return parent.key !== id && isInDestructureAssignment$1(parent, parentStack);
|
|
17344
17352
|
case "ArrayPattern": return isInDestructureAssignment$1(parent, parentStack);
|
|
17345
17353
|
}
|
|
17346
17354
|
return false;
|
|
@@ -17444,7 +17452,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
17444
17452
|
return false;
|
|
17445
17453
|
case "ObjectProperty":
|
|
17446
17454
|
if (parent.key === node) return !!parent.computed;
|
|
17447
|
-
return
|
|
17455
|
+
return !grandparent || grandparent.type !== "ObjectPattern";
|
|
17448
17456
|
case "ClassProperty":
|
|
17449
17457
|
if (parent.key === node) return !!parent.computed;
|
|
17450
17458
|
return true;
|
|
@@ -17462,7 +17470,9 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
17462
17470
|
case "FunctionExpression": return false;
|
|
17463
17471
|
case "ExportNamespaceSpecifier":
|
|
17464
17472
|
case "ExportDefaultSpecifier": return false;
|
|
17465
|
-
case "ExportSpecifier":
|
|
17473
|
+
case "ExportSpecifier":
|
|
17474
|
+
if (grandparent == null ? void 0 : grandparent.source) return false;
|
|
17475
|
+
return parent.local === node;
|
|
17466
17476
|
case "ImportDefaultSpecifier":
|
|
17467
17477
|
case "ImportNamespaceSpecifier":
|
|
17468
17478
|
case "ImportSpecifier": return false;
|
|
@@ -17503,7 +17513,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
17503
17513
|
case "base-transition": return BASE_TRANSITION$1;
|
|
17504
17514
|
}
|
|
17505
17515
|
}
|
|
17506
|
-
const nonIdentifierRE$1 =
|
|
17516
|
+
const nonIdentifierRE$1 = /^$|^\d|[^\$\w\xA0-\uFFFF]/;
|
|
17507
17517
|
const isSimpleIdentifier$1 = (name) => !nonIdentifierRE$1.test(name);
|
|
17508
17518
|
const validFirstIdentCharRE = /[A-Za-z_$\xA0-\uFFFF]/;
|
|
17509
17519
|
const validIdentCharRE = /[\.\?\w$\xA0-\uFFFF]/;
|
|
@@ -17571,7 +17581,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
17571
17581
|
}
|
|
17572
17582
|
};
|
|
17573
17583
|
const isMemberExpression = isMemberExpressionNode;
|
|
17574
|
-
const fnExpRE = /^\s*(async\s*)?(
|
|
17584
|
+
const fnExpRE = /^\s*(?:async\s*)?(?:\([^)]*?\)|[\w$_]+)\s*(?::[^=]+)?=>|^\s*(?:async\s+)?function(?:\s+[\w$]+)?\s*\(/;
|
|
17575
17585
|
const isFnExpressionBrowser = (exp) => fnExpRE.test(getExpSource(exp));
|
|
17576
17586
|
const isFnExpressionNode = (exp, context) => {
|
|
17577
17587
|
try {
|
|
@@ -17633,6 +17643,9 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
17633
17643
|
function isText$1(node) {
|
|
17634
17644
|
return node.type === 5 || node.type === 2;
|
|
17635
17645
|
}
|
|
17646
|
+
function isVPre$1(p$2) {
|
|
17647
|
+
return p$2.type === 7 && p$2.name === "pre";
|
|
17648
|
+
}
|
|
17636
17649
|
function isVSlot$1(p$2) {
|
|
17637
17650
|
return p$2.type === 7 && p$2.name === "slot";
|
|
17638
17651
|
}
|
|
@@ -17852,7 +17865,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
17852
17865
|
ondirarg(start, end) {
|
|
17853
17866
|
if (start === end) return;
|
|
17854
17867
|
const arg = getSlice$1(start, end);
|
|
17855
|
-
if (inVPre$1) {
|
|
17868
|
+
if (inVPre$1 && !isVPre$1(currentProp$1)) {
|
|
17856
17869
|
currentProp$1.name += arg;
|
|
17857
17870
|
setLocEnd$1(currentProp$1.nameLoc, end);
|
|
17858
17871
|
} else {
|
|
@@ -17862,7 +17875,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
17862
17875
|
},
|
|
17863
17876
|
ondirmodifier(start, end) {
|
|
17864
17877
|
const mod = getSlice$1(start, end);
|
|
17865
|
-
if (inVPre$1) {
|
|
17878
|
+
if (inVPre$1 && !isVPre$1(currentProp$1)) {
|
|
17866
17879
|
currentProp$1.name += "." + mod;
|
|
17867
17880
|
setLocEnd$1(currentProp$1.nameLoc, end);
|
|
17868
17881
|
} else if (currentProp$1.name === "slot") {
|
|
@@ -18121,7 +18134,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
18121
18134
|
return c > 64 && c < 91;
|
|
18122
18135
|
}
|
|
18123
18136
|
const windowsNewlineRE$1 = /\r\n/g;
|
|
18124
|
-
function condenseWhitespace$1(nodes
|
|
18137
|
+
function condenseWhitespace$1(nodes) {
|
|
18125
18138
|
const shouldCondense = currentOptions$1.whitespace !== "preserve";
|
|
18126
18139
|
let removedWhitespace = false;
|
|
18127
18140
|
for (let i = 0; i < nodes.length; i++) {
|
|
@@ -18260,11 +18273,11 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
18260
18273
|
return root;
|
|
18261
18274
|
}
|
|
18262
18275
|
function cacheStatic(root, context) {
|
|
18263
|
-
walk(root, void 0, context,
|
|
18276
|
+
walk(root, void 0, context, !!getSingleElementRoot(root));
|
|
18264
18277
|
}
|
|
18265
|
-
function
|
|
18266
|
-
const
|
|
18267
|
-
return children.length === 1 &&
|
|
18278
|
+
function getSingleElementRoot(root) {
|
|
18279
|
+
const children = root.children.filter((x) => x.type !== 3);
|
|
18280
|
+
return children.length === 1 && children[0].type === 1 && !isSlotOutlet$1(children[0]) ? children[0] : null;
|
|
18268
18281
|
}
|
|
18269
18282
|
function walk(node, parent, context, doNotHoistNode = false, inFor = false) {
|
|
18270
18283
|
const { children } = node;
|
|
@@ -18292,6 +18305,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
18292
18305
|
}
|
|
18293
18306
|
} else if (child.type === 12) {
|
|
18294
18307
|
if ((doNotHoistNode ? 0 : getConstantType(child, context)) >= 2) {
|
|
18308
|
+
if (child.codegenNode.type === 14 && child.codegenNode.arguments.length > 0) child.codegenNode.arguments.push("-1");
|
|
18295
18309
|
toCache.push(child);
|
|
18296
18310
|
continue;
|
|
18297
18311
|
}
|
|
@@ -18305,7 +18319,6 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
18305
18319
|
else if (child.type === 9) for (let i2 = 0; i2 < child.branches.length; i2++) walk(child.branches[i2], node, context, child.branches[i2].children.length === 1, inFor);
|
|
18306
18320
|
}
|
|
18307
18321
|
let cachedAsArray = false;
|
|
18308
|
-
const slotCacheKeys = [];
|
|
18309
18322
|
if (toCache.length === children.length && node.type === 1) {
|
|
18310
18323
|
if (node.tagType === 0 && node.codegenNode && node.codegenNode.type === 13 && shared$11.isArray(node.codegenNode.children)) {
|
|
18311
18324
|
node.codegenNode.children = getCacheExpression(createArrayExpression(node.codegenNode.children));
|
|
@@ -18313,7 +18326,6 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
18313
18326
|
} else if (node.tagType === 1 && node.codegenNode && node.codegenNode.type === 13 && node.codegenNode.children && !shared$11.isArray(node.codegenNode.children) && node.codegenNode.children.type === 15) {
|
|
18314
18327
|
const slot = getSlotNode(node.codegenNode, "default");
|
|
18315
18328
|
if (slot) {
|
|
18316
|
-
slotCacheKeys.push(context.cached.length);
|
|
18317
18329
|
slot.returns = getCacheExpression(createArrayExpression(slot.returns));
|
|
18318
18330
|
cachedAsArray = true;
|
|
18319
18331
|
}
|
|
@@ -18321,20 +18333,15 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
18321
18333
|
const slotName = findDir$1(node, "slot", true);
|
|
18322
18334
|
const slot = slotName && slotName.arg && getSlotNode(parent.codegenNode, slotName.arg);
|
|
18323
18335
|
if (slot) {
|
|
18324
|
-
slotCacheKeys.push(context.cached.length);
|
|
18325
18336
|
slot.returns = getCacheExpression(createArrayExpression(slot.returns));
|
|
18326
18337
|
cachedAsArray = true;
|
|
18327
18338
|
}
|
|
18328
18339
|
}
|
|
18329
18340
|
}
|
|
18330
|
-
if (!cachedAsArray) for (const child of toCache)
|
|
18331
|
-
slotCacheKeys.push(context.cached.length);
|
|
18332
|
-
child.codegenNode = context.cache(child.codegenNode);
|
|
18333
|
-
}
|
|
18334
|
-
if (slotCacheKeys.length && node.type === 1 && node.tagType === 1 && node.codegenNode && node.codegenNode.type === 13 && node.codegenNode.children && !shared$11.isArray(node.codegenNode.children) && node.codegenNode.children.type === 15) node.codegenNode.children.properties.push(createObjectProperty$1(`__`, createSimpleExpression$1(JSON.stringify(slotCacheKeys), false)));
|
|
18341
|
+
if (!cachedAsArray) for (const child of toCache) child.codegenNode = context.cache(child.codegenNode);
|
|
18335
18342
|
function getCacheExpression(value) {
|
|
18336
18343
|
const exp = context.cache(value);
|
|
18337
|
-
|
|
18344
|
+
exp.needArraySpread = true;
|
|
18338
18345
|
return exp;
|
|
18339
18346
|
}
|
|
18340
18347
|
function getSlotNode(node2, name) {
|
|
@@ -18590,12 +18597,12 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
18590
18597
|
const { helper } = context;
|
|
18591
18598
|
const { children } = root;
|
|
18592
18599
|
if (children.length === 1) {
|
|
18593
|
-
const
|
|
18594
|
-
if (
|
|
18595
|
-
const codegenNode =
|
|
18600
|
+
const singleElementRootChild = getSingleElementRoot(root);
|
|
18601
|
+
if (singleElementRootChild && singleElementRootChild.codegenNode) {
|
|
18602
|
+
const codegenNode = singleElementRootChild.codegenNode;
|
|
18596
18603
|
if (codegenNode.type === 13) convertToBlock$1(codegenNode, context);
|
|
18597
18604
|
root.codegenNode = codegenNode;
|
|
18598
|
-
} else root.codegenNode =
|
|
18605
|
+
} else root.codegenNode = children[0];
|
|
18599
18606
|
} else if (children.length > 1) root.codegenNode = createVNodeCall$1(context, helper(FRAGMENT$1), void 0, root.children, 64, void 0, void 0, true, void 0, false);
|
|
18600
18607
|
}
|
|
18601
18608
|
function traverseChildren$1(parent, context) {
|
|
@@ -18701,7 +18708,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
18701
18708
|
const content = node.content.replace(/^_ctx\./, "");
|
|
18702
18709
|
if (content !== node.content && isSimpleIdentifier$1(content)) name = content;
|
|
18703
18710
|
}
|
|
18704
|
-
addMapping(node.loc.start, name);
|
|
18711
|
+
if (node.loc.source) addMapping(node.loc.start, name);
|
|
18705
18712
|
}
|
|
18706
18713
|
if (newlineIndex === -3) advancePositionWithMutation$1(context, code$1);
|
|
18707
18714
|
else {
|
|
@@ -18713,7 +18720,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
18713
18720
|
context.column = code$1.length - newlineIndex;
|
|
18714
18721
|
}
|
|
18715
18722
|
}
|
|
18716
|
-
if (node && node.loc !== locStub$1) addMapping(node.loc.end);
|
|
18723
|
+
if (node && node.loc !== locStub$1 && node.loc.source) addMapping(node.loc.end);
|
|
18717
18724
|
}
|
|
18718
18725
|
},
|
|
18719
18726
|
indent() {
|
|
@@ -19377,7 +19384,7 @@ const ${helpers.map((s) => `_${helperNameMap$1[s]} = ${helperNameMap$1[s]}`).joi
|
|
|
19377
19384
|
function isConst$1(type) {
|
|
19378
19385
|
return type === "setup-const" || type === "literal-const";
|
|
19379
19386
|
}
|
|
19380
|
-
const transformIf$1 = createStructuralDirectiveTransform$1(/^(if|else|else-if)$/, (node, dir, context) => {
|
|
19387
|
+
const transformIf$1 = createStructuralDirectiveTransform$1(/^(?:if|else|else-if)$/, (node, dir, context) => {
|
|
19381
19388
|
return processIf$1(node, dir, context, (ifNode, branch, isRoot) => {
|
|
19382
19389
|
const siblings = context.parent.children;
|
|
19383
19390
|
let i = siblings.indexOf(ifNode);
|
|
@@ -19425,7 +19432,7 @@ const ${helpers.map((s) => `_${helperNameMap$1[s]} = ${helperNameMap$1[s]}`).joi
|
|
|
19425
19432
|
continue;
|
|
19426
19433
|
}
|
|
19427
19434
|
if (sibling && sibling.type === 9) {
|
|
19428
|
-
if (dir.name === "else-if" && sibling.branches[sibling.branches.length - 1].condition === void 0) context.onError(createCompilerError$1(30, node.loc));
|
|
19435
|
+
if ((dir.name === "else-if" || dir.name === "else") && sibling.branches[sibling.branches.length - 1].condition === void 0) context.onError(createCompilerError$1(30, node.loc));
|
|
19429
19436
|
context.removeNode();
|
|
19430
19437
|
const branch = createIfBranch$1(node, dir);
|
|
19431
19438
|
{
|
|
@@ -19513,7 +19520,7 @@ const ${helpers.map((s) => `_${helperNameMap$1[s]} = ${helperNameMap$1[s]}`).joi
|
|
|
19513
19520
|
if (arg.type !== 4) {
|
|
19514
19521
|
arg.children.unshift(`(`);
|
|
19515
19522
|
arg.children.push(`) || ""`);
|
|
19516
|
-
} else if (!arg.isStatic) arg.content = `${arg.content} || ""`;
|
|
19523
|
+
} else if (!arg.isStatic) arg.content = arg.content ? `${arg.content} || ""` : `""`;
|
|
19517
19524
|
if (modifiers.some((mod) => mod.content === "camel")) if (arg.type === 4) if (arg.isStatic) arg.content = shared$11.camelize(arg.content);
|
|
19518
19525
|
else arg.content = `${context.helperString(CAMELIZE$1)}(${arg.content})`;
|
|
19519
19526
|
else {
|
|
@@ -19718,7 +19725,7 @@ const ${helpers.map((s) => `_${helperNameMap$1[s]} = ${helperNameMap$1[s]}`).joi
|
|
|
19718
19725
|
const slotsProperties = [];
|
|
19719
19726
|
const dynamicSlots = [];
|
|
19720
19727
|
let hasDynamicSlots = context.scopes.vSlot > 0 || context.scopes.vFor > 0;
|
|
19721
|
-
if (!context.ssr && context.prefixIdentifiers) hasDynamicSlots = hasScopeRef(
|
|
19728
|
+
if (!context.ssr && context.prefixIdentifiers) hasDynamicSlots = node.props.some((prop) => isVSlot$1(prop) && (hasScopeRef(prop.arg, context.identifiers) || hasScopeRef(prop.exp, context.identifiers))) || children.some((child) => hasScopeRef(child, context.identifiers));
|
|
19722
19729
|
const onComponentSlot = findDir$1(node, "slot", true);
|
|
19723
19730
|
if (onComponentSlot) {
|
|
19724
19731
|
const { arg, exp } = onComponentSlot;
|
|
@@ -19754,14 +19761,14 @@ const ${helpers.map((s) => `_${helperNameMap$1[s]} = ${helperNameMap$1[s]}`).joi
|
|
|
19754
19761
|
if (vIf = findDir$1(slotElement, "if")) {
|
|
19755
19762
|
hasDynamicSlots = true;
|
|
19756
19763
|
dynamicSlots.push(createConditionalExpression$1(vIf.exp, buildDynamicSlot(slotName, slotFunction, conditionalBranchIndex++), defaultFallback$1));
|
|
19757
|
-
} else if (vElse = findDir$1(slotElement, /^else(
|
|
19764
|
+
} else if (vElse = findDir$1(slotElement, /^else(?:-if)?$/, true)) {
|
|
19758
19765
|
let j = i;
|
|
19759
19766
|
let prev;
|
|
19760
19767
|
while (j--) {
|
|
19761
19768
|
prev = children[j];
|
|
19762
|
-
if (prev.type !== 3) break;
|
|
19769
|
+
if (prev.type !== 3 && isNonWhitespaceContent(prev)) break;
|
|
19763
19770
|
}
|
|
19764
|
-
if (prev && isTemplateNode$1(prev) && findDir$1(prev, /^(else-)?if$/)) {
|
|
19771
|
+
if (prev && isTemplateNode$1(prev) && findDir$1(prev, /^(?:else-)?if$/)) {
|
|
19765
19772
|
let conditional = dynamicSlots[dynamicSlots.length - 1];
|
|
19766
19773
|
while (conditional.alternate.type === 19) conditional = conditional.alternate;
|
|
19767
19774
|
conditional.alternate = vElse.exp ? createConditionalExpression$1(vElse.exp, buildDynamicSlot(slotName, slotFunction, conditionalBranchIndex++), defaultFallback$1) : buildDynamicSlot(slotName, slotFunction, conditionalBranchIndex++);
|
|
@@ -20009,12 +20016,13 @@ const ${helpers.map((s) => `_${helperNameMap$1[s]} = ${helperNameMap$1[s]}`).joi
|
|
|
20009
20016
|
if (!arg && (isVBind || isVOn)) {
|
|
20010
20017
|
hasDynamicKeys = true;
|
|
20011
20018
|
if (exp) if (isVBind) {
|
|
20012
|
-
pushRefVForMarker();
|
|
20013
20019
|
pushMergeArg();
|
|
20014
20020
|
if (isCompatEnabled$1("COMPILER_V_BIND_OBJECT_ORDER", context)) {
|
|
20015
20021
|
mergeArgs.unshift(exp);
|
|
20016
20022
|
continue;
|
|
20017
20023
|
}
|
|
20024
|
+
pushRefVForMarker();
|
|
20025
|
+
pushMergeArg();
|
|
20018
20026
|
mergeArgs.push(exp);
|
|
20019
20027
|
} else pushMergeArg({
|
|
20020
20028
|
type: 14,
|
|
@@ -20488,7 +20496,7 @@ const ${helpers.map((s) => `_${helperNameMap$1[s]} = ${helperNameMap$1[s]}`).joi
|
|
|
20488
20496
|
const transformMemo = (node, context) => {
|
|
20489
20497
|
if (node.type === 1) {
|
|
20490
20498
|
const dir = findDir$1(node, "memo");
|
|
20491
|
-
if (!dir || seen.has(node)) return;
|
|
20499
|
+
if (!dir || seen.has(node) || context.inSSR) return;
|
|
20492
20500
|
seen.add(node);
|
|
20493
20501
|
return () => {
|
|
20494
20502
|
const codegenNode = node.codegenNode || context.currentNode.codegenNode;
|
|
@@ -20669,6 +20677,7 @@ const ${helpers.map((s) => `_${helperNameMap$1[s]} = ${helperNameMap$1[s]}`).joi
|
|
|
20669
20677
|
exports.isStaticPropertyKey = isStaticPropertyKey$1;
|
|
20670
20678
|
exports.isTemplateNode = isTemplateNode$1;
|
|
20671
20679
|
exports.isText = isText$1;
|
|
20680
|
+
exports.isVPre = isVPre$1;
|
|
20672
20681
|
exports.isVSlot = isVSlot$1;
|
|
20673
20682
|
exports.locStub = locStub$1;
|
|
20674
20683
|
exports.noopDirectiveTransform = noopDirectiveTransform;
|
|
@@ -20697,8 +20706,8 @@ const ${helpers.map((s) => `_${helperNameMap$1[s]} = ${helperNameMap$1[s]}`).joi
|
|
|
20697
20706
|
}) });
|
|
20698
20707
|
|
|
20699
20708
|
//#endregion
|
|
20700
|
-
//#region ../../node_modules/.pnpm/@vue+compiler-core@3.5.
|
|
20701
|
-
var require_compiler_core_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+compiler-core@3.5.
|
|
20709
|
+
//#region ../../node_modules/.pnpm/@vue+compiler-core@3.5.21/node_modules/@vue/compiler-core/dist/compiler-core.cjs.js
|
|
20710
|
+
var require_compiler_core_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+compiler-core@3.5.21/node_modules/@vue/compiler-core/dist/compiler-core.cjs.js": ((exports) => {
|
|
20702
20711
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20703
20712
|
var shared$10 = require_shared();
|
|
20704
20713
|
var decode_js = require_decode();
|
|
@@ -21476,7 +21485,7 @@ var require_compiler_core_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules
|
|
|
21476
21485
|
this.buffer = input;
|
|
21477
21486
|
while (this.index < this.buffer.length) {
|
|
21478
21487
|
const c = this.buffer.charCodeAt(this.index);
|
|
21479
|
-
if (c === 10) this.newlines.push(this.index);
|
|
21488
|
+
if (c === 10 && this.state !== 33) this.newlines.push(this.index);
|
|
21480
21489
|
switch (this.state) {
|
|
21481
21490
|
case 1:
|
|
21482
21491
|
this.stateText(c);
|
|
@@ -21787,11 +21796,11 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
21787
21796
|
function isReferencedIdentifier(id, parent, parentStack) {
|
|
21788
21797
|
if (!parent) return true;
|
|
21789
21798
|
if (id.name === "arguments") return false;
|
|
21790
|
-
if (isReferenced(id, parent)) return true;
|
|
21799
|
+
if (isReferenced(id, parent, parentStack[parentStack.length - 2])) return true;
|
|
21791
21800
|
switch (parent.type) {
|
|
21792
21801
|
case "AssignmentExpression":
|
|
21793
21802
|
case "AssignmentPattern": return true;
|
|
21794
|
-
case "
|
|
21803
|
+
case "ObjectProperty": return parent.key !== id && isInDestructureAssignment(parent, parentStack);
|
|
21795
21804
|
case "ArrayPattern": return isInDestructureAssignment(parent, parentStack);
|
|
21796
21805
|
}
|
|
21797
21806
|
return false;
|
|
@@ -21895,7 +21904,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
21895
21904
|
return false;
|
|
21896
21905
|
case "ObjectProperty":
|
|
21897
21906
|
if (parent.key === node) return !!parent.computed;
|
|
21898
|
-
return
|
|
21907
|
+
return !grandparent || grandparent.type !== "ObjectPattern";
|
|
21899
21908
|
case "ClassProperty":
|
|
21900
21909
|
if (parent.key === node) return !!parent.computed;
|
|
21901
21910
|
return true;
|
|
@@ -21913,7 +21922,9 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
21913
21922
|
case "FunctionExpression": return false;
|
|
21914
21923
|
case "ExportNamespaceSpecifier":
|
|
21915
21924
|
case "ExportDefaultSpecifier": return false;
|
|
21916
|
-
case "ExportSpecifier":
|
|
21925
|
+
case "ExportSpecifier":
|
|
21926
|
+
if (grandparent == null ? void 0 : grandparent.source) return false;
|
|
21927
|
+
return parent.local === node;
|
|
21917
21928
|
case "ImportDefaultSpecifier":
|
|
21918
21929
|
case "ImportNamespaceSpecifier":
|
|
21919
21930
|
case "ImportSpecifier": return false;
|
|
@@ -21950,7 +21961,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
21950
21961
|
case "base-transition": return BASE_TRANSITION;
|
|
21951
21962
|
}
|
|
21952
21963
|
}
|
|
21953
|
-
const nonIdentifierRE =
|
|
21964
|
+
const nonIdentifierRE = /^$|^\d|[^\$\w\xA0-\uFFFF]/;
|
|
21954
21965
|
const isSimpleIdentifier = (name) => !nonIdentifierRE.test(name);
|
|
21955
21966
|
function advancePositionWithClone(pos, source, numberOfCharacters = source.length) {
|
|
21956
21967
|
return advancePositionWithMutation({
|
|
@@ -21989,6 +22000,9 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
21989
22000
|
function isStaticArgOf(arg, name) {
|
|
21990
22001
|
return !!(arg && isStaticExp(arg) && arg.content === name);
|
|
21991
22002
|
}
|
|
22003
|
+
function isVPre(p$2) {
|
|
22004
|
+
return p$2.type === 7 && p$2.name === "pre";
|
|
22005
|
+
}
|
|
21992
22006
|
function isVSlot(p$2) {
|
|
21993
22007
|
return p$2.type === 7 && p$2.name === "slot";
|
|
21994
22008
|
}
|
|
@@ -22177,7 +22191,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
22177
22191
|
ondirarg(start, end) {
|
|
22178
22192
|
if (start === end) return;
|
|
22179
22193
|
const arg = getSlice(start, end);
|
|
22180
|
-
if (inVPre) {
|
|
22194
|
+
if (inVPre && !isVPre(currentProp)) {
|
|
22181
22195
|
currentProp.name += arg;
|
|
22182
22196
|
setLocEnd(currentProp.nameLoc, end);
|
|
22183
22197
|
} else {
|
|
@@ -22187,7 +22201,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
22187
22201
|
},
|
|
22188
22202
|
ondirmodifier(start, end) {
|
|
22189
22203
|
const mod = getSlice(start, end);
|
|
22190
|
-
if (inVPre) {
|
|
22204
|
+
if (inVPre && !isVPre(currentProp)) {
|
|
22191
22205
|
currentProp.name += "." + mod;
|
|
22192
22206
|
setLocEnd(currentProp.nameLoc, end);
|
|
22193
22207
|
} else if (currentProp.name === "slot") {
|
|
@@ -22462,7 +22476,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
22462
22476
|
return c > 64 && c < 91;
|
|
22463
22477
|
}
|
|
22464
22478
|
const windowsNewlineRE = /\r\n/g;
|
|
22465
|
-
function condenseWhitespace(nodes
|
|
22479
|
+
function condenseWhitespace(nodes) {
|
|
22466
22480
|
const shouldCondense = currentOptions.whitespace !== "preserve";
|
|
22467
22481
|
let removedWhitespace = false;
|
|
22468
22482
|
for (let i = 0; i < nodes.length; i++) {
|
|
@@ -22759,7 +22773,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
22759
22773
|
function isConst(type) {
|
|
22760
22774
|
return type === "setup-const" || type === "literal-const";
|
|
22761
22775
|
}
|
|
22762
|
-
const transformIf = createStructuralDirectiveTransform(/^(if|else|else-if)$/, (node, dir, context) => {
|
|
22776
|
+
const transformIf = createStructuralDirectiveTransform(/^(?:if|else|else-if)$/, (node, dir, context) => {
|
|
22763
22777
|
return processIf(node, dir, context, (ifNode, branch, isRoot) => {
|
|
22764
22778
|
const siblings = context.parent.children;
|
|
22765
22779
|
let i = siblings.indexOf(ifNode);
|
|
@@ -22809,7 +22823,7 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
22809
22823
|
continue;
|
|
22810
22824
|
}
|
|
22811
22825
|
if (sibling && sibling.type === 9) {
|
|
22812
|
-
if (dir.name === "else-if" && sibling.branches[sibling.branches.length - 1].condition === void 0) context.onError(createCompilerError(30, node.loc));
|
|
22826
|
+
if ((dir.name === "else-if" || dir.name === "else") && sibling.branches[sibling.branches.length - 1].condition === void 0) context.onError(createCompilerError(30, node.loc));
|
|
22813
22827
|
context.removeNode();
|
|
22814
22828
|
const branch = createIfBranch(node, dir);
|
|
22815
22829
|
if (comments.length && !(context.parent && context.parent.type === 1 && (context.parent.tag === "transition" || context.parent.tag === "Transition"))) branch.children = [...comments, ...branch.children];
|
|
@@ -23031,15 +23045,15 @@ Use a v-bind binding combined with a v-on listener that emits update:x event ins
|
|
|
23031
23045
|
}) });
|
|
23032
23046
|
|
|
23033
23047
|
//#endregion
|
|
23034
|
-
//#region ../../node_modules/.pnpm/@vue+compiler-core@3.5.
|
|
23035
|
-
var require_compiler_core = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+compiler-core@3.5.
|
|
23048
|
+
//#region ../../node_modules/.pnpm/@vue+compiler-core@3.5.21/node_modules/@vue/compiler-core/index.js
|
|
23049
|
+
var require_compiler_core = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+compiler-core@3.5.21/node_modules/@vue/compiler-core/index.js": ((exports, module) => {
|
|
23036
23050
|
if (process.env.NODE_ENV === "production") module.exports = require_compiler_core_cjs_prod();
|
|
23037
23051
|
else module.exports = require_compiler_core_cjs();
|
|
23038
23052
|
}) });
|
|
23039
23053
|
|
|
23040
23054
|
//#endregion
|
|
23041
|
-
//#region ../../node_modules/.pnpm/@vue+compiler-dom@3.5.
|
|
23042
|
-
var require_compiler_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+compiler-dom@3.5.
|
|
23055
|
+
//#region ../../node_modules/.pnpm/@vue+compiler-dom@3.5.21/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js
|
|
23056
|
+
var require_compiler_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+compiler-dom@3.5.21/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js": ((exports) => {
|
|
23043
23057
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23044
23058
|
var compilerCore$1 = require_compiler_core();
|
|
23045
23059
|
var shared$9 = require_shared();
|
|
@@ -23318,7 +23332,7 @@ var require_compiler_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
23318
23332
|
const getCachedNode$1 = (node) => {
|
|
23319
23333
|
if ((node.type === 1 && node.tagType === 0 || node.type === 12) && node.codegenNode && node.codegenNode.type === 20) return node.codegenNode;
|
|
23320
23334
|
};
|
|
23321
|
-
const dataAriaRE$1 = /^(data|aria)-/;
|
|
23335
|
+
const dataAriaRE$1 = /^(?:data|aria)-/;
|
|
23322
23336
|
const isStringifiableAttr$1 = (name, ns) => {
|
|
23323
23337
|
return (ns === 0 ? shared$9.isKnownHtmlAttr(name) : ns === 1 ? shared$9.isKnownSvgAttr(name) : ns === 2 ? shared$9.isKnownMathMLAttr(name) : false) || dataAriaRE$1.test(name);
|
|
23324
23338
|
};
|
|
@@ -23468,8 +23482,8 @@ var require_compiler_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
23468
23482
|
}) });
|
|
23469
23483
|
|
|
23470
23484
|
//#endregion
|
|
23471
|
-
//#region ../../node_modules/.pnpm/@vue+compiler-dom@3.5.
|
|
23472
|
-
var require_compiler_dom_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+compiler-dom@3.5.
|
|
23485
|
+
//#region ../../node_modules/.pnpm/@vue+compiler-dom@3.5.21/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.js
|
|
23486
|
+
var require_compiler_dom_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+compiler-dom@3.5.21/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.js": ((exports) => {
|
|
23473
23487
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
23474
23488
|
var compilerCore = require_compiler_core();
|
|
23475
23489
|
var shared$8 = require_shared();
|
|
@@ -23784,7 +23798,7 @@ var require_compiler_dom_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/
|
|
|
23784
23798
|
const getCachedNode = (node) => {
|
|
23785
23799
|
if ((node.type === 1 && node.tagType === 0 || node.type === 12) && node.codegenNode && node.codegenNode.type === 20) return node.codegenNode;
|
|
23786
23800
|
};
|
|
23787
|
-
const dataAriaRE = /^(data|aria)-/;
|
|
23801
|
+
const dataAriaRE = /^(?:data|aria)-/;
|
|
23788
23802
|
const isStringifiableAttr = (name, ns) => {
|
|
23789
23803
|
return (ns === 0 ? shared$8.isKnownHtmlAttr(name) : ns === 1 ? shared$8.isKnownSvgAttr(name) : ns === 2 ? shared$8.isKnownMathMLAttr(name) : false) || dataAriaRE.test(name);
|
|
23790
23804
|
};
|
|
@@ -23890,6 +23904,7 @@ var require_compiler_dom_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/
|
|
|
23890
23904
|
}
|
|
23891
23905
|
};
|
|
23892
23906
|
function isValidHTMLNesting(parent, child) {
|
|
23907
|
+
if (parent === "template") return true;
|
|
23893
23908
|
if (parent in onlyValidChildren) return onlyValidChildren[parent].has(child);
|
|
23894
23909
|
if (child in onlyValidParents) return onlyValidParents[child].has(parent);
|
|
23895
23910
|
if (parent in knownInvalidChildren) {
|
|
@@ -24115,15 +24130,15 @@ var require_compiler_dom_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/
|
|
|
24115
24130
|
}) });
|
|
24116
24131
|
|
|
24117
24132
|
//#endregion
|
|
24118
|
-
//#region ../../node_modules/.pnpm/@vue+compiler-dom@3.5.
|
|
24119
|
-
var require_compiler_dom = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+compiler-dom@3.5.
|
|
24133
|
+
//#region ../../node_modules/.pnpm/@vue+compiler-dom@3.5.21/node_modules/@vue/compiler-dom/index.js
|
|
24134
|
+
var require_compiler_dom = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+compiler-dom@3.5.21/node_modules/@vue/compiler-dom/index.js": ((exports, module) => {
|
|
24120
24135
|
if (process.env.NODE_ENV === "production") module.exports = require_compiler_dom_cjs_prod();
|
|
24121
24136
|
else module.exports = require_compiler_dom_cjs();
|
|
24122
24137
|
}) });
|
|
24123
24138
|
|
|
24124
24139
|
//#endregion
|
|
24125
|
-
//#region ../../node_modules/.pnpm/@vue+reactivity@3.5.
|
|
24126
|
-
var require_reactivity_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+reactivity@3.5.
|
|
24140
|
+
//#region ../../node_modules/.pnpm/@vue+reactivity@3.5.21/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js
|
|
24141
|
+
var require_reactivity_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+reactivity@3.5.21/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js": ((exports) => {
|
|
24127
24142
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24128
24143
|
var shared$7 = require_shared();
|
|
24129
24144
|
let activeEffectScope;
|
|
@@ -24557,6 +24572,10 @@ var require_reactivity_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modul
|
|
|
24557
24572
|
* Subscriber counter
|
|
24558
24573
|
*/
|
|
24559
24574
|
this.sc = 0;
|
|
24575
|
+
/**
|
|
24576
|
+
* @internal
|
|
24577
|
+
*/
|
|
24578
|
+
this.__v_skip = true;
|
|
24560
24579
|
}
|
|
24561
24580
|
track(debugInfo) {
|
|
24562
24581
|
if (!activeSub || !shouldTrack || activeSub === this.computed) return;
|
|
@@ -24891,7 +24910,7 @@ var require_reactivity_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modul
|
|
|
24891
24910
|
oldValue = toRaw(oldValue);
|
|
24892
24911
|
value = toRaw(value);
|
|
24893
24912
|
}
|
|
24894
|
-
if (!shared$7.isArray(target) && isRef(oldValue) && !isRef(value)) if (isOldValueReadonly) return
|
|
24913
|
+
if (!shared$7.isArray(target) && isRef(oldValue) && !isRef(value)) if (isOldValueReadonly) return true;
|
|
24895
24914
|
else {
|
|
24896
24915
|
oldValue.value = value;
|
|
24897
24916
|
return true;
|
|
@@ -24990,7 +25009,7 @@ var require_reactivity_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modul
|
|
|
24990
25009
|
get size() {
|
|
24991
25010
|
const target = this["__v_raw"];
|
|
24992
25011
|
!readonly$1 && track(toRaw(target), "iterate", ITERATE_KEY$1);
|
|
24993
|
-
return
|
|
25012
|
+
return target.size;
|
|
24994
25013
|
},
|
|
24995
25014
|
has(key) {
|
|
24996
25015
|
const target = this["__v_raw"];
|
|
@@ -25463,8 +25482,8 @@ var require_reactivity_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modul
|
|
|
25463
25482
|
oldValue === INITIAL_WATCHER_VALUE ? void 0 : isMultiSource && oldValue[0] === INITIAL_WATCHER_VALUE ? [] : oldValue,
|
|
25464
25483
|
boundCleanup
|
|
25465
25484
|
];
|
|
25466
|
-
call ? call(cb, 3, args) : cb(...args);
|
|
25467
25485
|
oldValue = newValue;
|
|
25486
|
+
call ? call(cb, 3, args) : cb(...args);
|
|
25468
25487
|
} finally {
|
|
25469
25488
|
activeWatcher = currentWatcher;
|
|
25470
25489
|
}
|
|
@@ -25494,9 +25513,9 @@ var require_reactivity_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modul
|
|
|
25494
25513
|
}
|
|
25495
25514
|
function traverse(value, depth = Infinity, seen$2) {
|
|
25496
25515
|
if (depth <= 0 || !shared$7.isObject(value) || value["__v_skip"]) return value;
|
|
25497
|
-
seen$2 = seen$2 || /* @__PURE__ */ new
|
|
25498
|
-
if (seen$2.
|
|
25499
|
-
seen$2.
|
|
25516
|
+
seen$2 = seen$2 || /* @__PURE__ */ new Map();
|
|
25517
|
+
if ((seen$2.get(value) || 0) >= depth) return value;
|
|
25518
|
+
seen$2.set(value, depth);
|
|
25500
25519
|
depth--;
|
|
25501
25520
|
if (isRef(value)) traverse(value.value, depth, seen$2);
|
|
25502
25521
|
else if (shared$7.isArray(value)) for (let i = 0; i < value.length; i++) traverse(value[i], depth, seen$2);
|
|
@@ -25562,8 +25581,8 @@ var require_reactivity_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modul
|
|
|
25562
25581
|
}) });
|
|
25563
25582
|
|
|
25564
25583
|
//#endregion
|
|
25565
|
-
//#region ../../node_modules/.pnpm/@vue+reactivity@3.5.
|
|
25566
|
-
var require_reactivity_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+reactivity@3.5.
|
|
25584
|
+
//#region ../../node_modules/.pnpm/@vue+reactivity@3.5.21/node_modules/@vue/reactivity/dist/reactivity.cjs.js
|
|
25585
|
+
var require_reactivity_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+reactivity@3.5.21/node_modules/@vue/reactivity/dist/reactivity.cjs.js": ((exports) => {
|
|
25567
25586
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25568
25587
|
var shared$6 = require_shared();
|
|
25569
25588
|
const ITERATE_KEY = Symbol("Object iterate");
|
|
@@ -25574,15 +25593,15 @@ var require_reactivity_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.p
|
|
|
25574
25593
|
}) });
|
|
25575
25594
|
|
|
25576
25595
|
//#endregion
|
|
25577
|
-
//#region ../../node_modules/.pnpm/@vue+reactivity@3.5.
|
|
25578
|
-
var require_reactivity = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+reactivity@3.5.
|
|
25596
|
+
//#region ../../node_modules/.pnpm/@vue+reactivity@3.5.21/node_modules/@vue/reactivity/index.js
|
|
25597
|
+
var require_reactivity = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+reactivity@3.5.21/node_modules/@vue/reactivity/index.js": ((exports, module) => {
|
|
25579
25598
|
if (process.env.NODE_ENV === "production") module.exports = require_reactivity_cjs_prod();
|
|
25580
25599
|
else module.exports = require_reactivity_cjs();
|
|
25581
25600
|
}) });
|
|
25582
25601
|
|
|
25583
25602
|
//#endregion
|
|
25584
|
-
//#region ../../node_modules/.pnpm/@vue+runtime-core@3.5.
|
|
25585
|
-
var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+runtime-core@3.5.
|
|
25603
|
+
//#region ../../node_modules/.pnpm/@vue+runtime-core@3.5.21/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js
|
|
25604
|
+
var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+runtime-core@3.5.21/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js": ((exports) => {
|
|
25586
25605
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25587
25606
|
var reactivity$1 = require_reactivity();
|
|
25588
25607
|
var shared$5 = require_shared();
|
|
@@ -25929,16 +25948,17 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
25929
25948
|
mount(container, mainAnchor);
|
|
25930
25949
|
updateCssVars(n2, true);
|
|
25931
25950
|
}
|
|
25932
|
-
if (isTeleportDeferred(n2.props))
|
|
25933
|
-
|
|
25934
|
-
|
|
25935
|
-
|
|
25936
|
-
|
|
25951
|
+
if (isTeleportDeferred(n2.props)) {
|
|
25952
|
+
n2.el.__isMounted = false;
|
|
25953
|
+
queuePostRenderEffect$1(() => {
|
|
25954
|
+
mountToTarget();
|
|
25955
|
+
delete n2.el.__isMounted;
|
|
25956
|
+
}, parentSuspense);
|
|
25957
|
+
} else mountToTarget();
|
|
25937
25958
|
} else {
|
|
25938
|
-
if (isTeleportDeferred(n2.props) &&
|
|
25959
|
+
if (isTeleportDeferred(n2.props) && n1.el.__isMounted === false) {
|
|
25939
25960
|
queuePostRenderEffect$1(() => {
|
|
25940
25961
|
TeleportImpl.process(n1, n2, container, anchor, parentComponent, parentSuspense, namespace, slotScopeIds, optimized, internals);
|
|
25941
|
-
delete n1.el.__isMounted;
|
|
25942
25962
|
}, parentSuspense);
|
|
25943
25963
|
return;
|
|
25944
25964
|
}
|
|
@@ -25995,15 +26015,17 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
25995
26015
|
if (isReorder) insert(anchor, container, parentAnchor);
|
|
25996
26016
|
}
|
|
25997
26017
|
function hydrateTeleport(node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized, { o: { nextSibling, parentNode, querySelector, insert, createText } }, hydrateChildren) {
|
|
26018
|
+
function hydrateDisabledTeleport(node2, vnode2, targetStart, targetAnchor) {
|
|
26019
|
+
vnode2.anchor = hydrateChildren(nextSibling(node2), vnode2, parentNode(node2), parentComponent, parentSuspense, slotScopeIds, optimized);
|
|
26020
|
+
vnode2.targetStart = targetStart;
|
|
26021
|
+
vnode2.targetAnchor = targetAnchor;
|
|
26022
|
+
}
|
|
25998
26023
|
const target = vnode.target = resolveTarget(vnode.props, querySelector);
|
|
26024
|
+
const disabled = isTeleportDisabled(vnode.props);
|
|
25999
26025
|
if (target) {
|
|
26000
|
-
const disabled = isTeleportDisabled(vnode.props);
|
|
26001
26026
|
const targetNode = target._lpa || target.firstChild;
|
|
26002
|
-
if (vnode.shapeFlag & 16) if (disabled)
|
|
26003
|
-
|
|
26004
|
-
vnode.targetStart = targetNode;
|
|
26005
|
-
vnode.targetAnchor = targetNode && nextSibling(targetNode);
|
|
26006
|
-
} else {
|
|
26027
|
+
if (vnode.shapeFlag & 16) if (disabled) hydrateDisabledTeleport(node, vnode, targetNode, targetNode && nextSibling(targetNode));
|
|
26028
|
+
else {
|
|
26007
26029
|
vnode.anchor = nextSibling(node);
|
|
26008
26030
|
let targetAnchor = targetNode;
|
|
26009
26031
|
while (targetAnchor) {
|
|
@@ -26021,6 +26043,8 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26021
26043
|
hydrateChildren(targetNode && nextSibling(targetNode), vnode, target, parentComponent, parentSuspense, slotScopeIds, optimized);
|
|
26022
26044
|
}
|
|
26023
26045
|
updateCssVars(vnode, disabled);
|
|
26046
|
+
} else if (disabled) {
|
|
26047
|
+
if (vnode.shapeFlag & 16) hydrateDisabledTeleport(node, vnode, node, nextSibling(node));
|
|
26024
26048
|
}
|
|
26025
26049
|
return vnode.anchor && nextSibling(vnode.anchor);
|
|
26026
26050
|
}
|
|
@@ -26096,7 +26120,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26096
26120
|
name: `BaseTransition`,
|
|
26097
26121
|
props: BaseTransitionPropsValidators,
|
|
26098
26122
|
setup(props, { slots }) {
|
|
26099
|
-
const instance = getCurrentInstance();
|
|
26123
|
+
const instance = getCurrentInstance$1();
|
|
26100
26124
|
const state = useTransitionState();
|
|
26101
26125
|
return () => {
|
|
26102
26126
|
const children = slots.default && getTransitionRawChildren(slots.default(), true);
|
|
@@ -26110,7 +26134,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26110
26134
|
let enterHooks = resolveTransitionHooks(innerChild, rawProps, state, instance, (hooks) => enterHooks = hooks);
|
|
26111
26135
|
if (innerChild.type !== Comment$1) setTransitionHooks(innerChild, enterHooks);
|
|
26112
26136
|
let oldInnerChild = instance.subTree && getInnerChild$1(instance.subTree);
|
|
26113
|
-
if (oldInnerChild && oldInnerChild.type !== Comment$1 && !isSameVNodeType(
|
|
26137
|
+
if (oldInnerChild && oldInnerChild.type !== Comment$1 && !isSameVNodeType(oldInnerChild, innerChild) && recursiveGetSubtree(instance).type !== Comment$1) {
|
|
26114
26138
|
let leavingHooks = resolveTransitionHooks(oldInnerChild, rawProps, state, instance);
|
|
26115
26139
|
setTransitionHooks(oldInnerChild, leavingHooks);
|
|
26116
26140
|
if (mode === "out-in" && innerChild.type !== Comment$1) {
|
|
@@ -26279,13 +26303,12 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26279
26303
|
if (keyedFragmentCount > 1) for (let i = 0; i < ret.length; i++) ret[i].patchFlag = -2;
|
|
26280
26304
|
return ret;
|
|
26281
26305
|
}
|
|
26282
|
-
/*! #__NO_SIDE_EFFECTS__ */
|
|
26283
26306
|
/* @__NO_SIDE_EFFECTS__ */
|
|
26284
26307
|
function defineComponent(options, extraOptions) {
|
|
26285
26308
|
return shared$5.isFunction(options) ? /* @__PURE__ */ (() => shared$5.extend({ name: options.name }, extraOptions, { setup: options }))() : options;
|
|
26286
26309
|
}
|
|
26287
26310
|
function useId() {
|
|
26288
|
-
const i = getCurrentInstance();
|
|
26311
|
+
const i = getCurrentInstance$1();
|
|
26289
26312
|
if (i) return (i.appContext.config.idPrefix || "v") + "-" + i.ids[0] + i.ids[1]++;
|
|
26290
26313
|
return "";
|
|
26291
26314
|
}
|
|
@@ -26297,7 +26320,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26297
26320
|
];
|
|
26298
26321
|
}
|
|
26299
26322
|
function useTemplateRef(key) {
|
|
26300
|
-
const i = getCurrentInstance();
|
|
26323
|
+
const i = getCurrentInstance$1();
|
|
26301
26324
|
const r = reactivity$1.shallowRef(null);
|
|
26302
26325
|
if (i) {
|
|
26303
26326
|
const refs = i.refs === shared$5.EMPTY_OBJ ? i.refs = {} : i.refs;
|
|
@@ -26309,6 +26332,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26309
26332
|
}
|
|
26310
26333
|
return r;
|
|
26311
26334
|
}
|
|
26335
|
+
const pendingSetRefMap = /* @__PURE__ */ new WeakMap();
|
|
26312
26336
|
function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
26313
26337
|
if (shared$5.isArray(rawRef)) {
|
|
26314
26338
|
rawRef.forEach((r, i) => setRef(r, oldRawRef && (shared$5.isArray(oldRawRef) ? oldRawRef[i] : oldRawRef), parentSuspense, vnode, isUnmount));
|
|
@@ -26325,14 +26349,19 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26325
26349
|
const refs = owner.refs === shared$5.EMPTY_OBJ ? owner.refs = {} : owner.refs;
|
|
26326
26350
|
const setupState = owner.setupState;
|
|
26327
26351
|
const rawSetupState = reactivity$1.toRaw(setupState);
|
|
26328
|
-
const canSetSetupRef = setupState === shared$5.EMPTY_OBJ ?
|
|
26352
|
+
const canSetSetupRef = setupState === shared$5.EMPTY_OBJ ? shared$5.NO : (key) => {
|
|
26329
26353
|
return shared$5.hasOwn(rawSetupState, key);
|
|
26330
26354
|
};
|
|
26331
26355
|
if (oldRef != null && oldRef !== ref$1) {
|
|
26356
|
+
invalidatePendingSetRef(oldRawRef);
|
|
26332
26357
|
if (shared$5.isString(oldRef)) {
|
|
26333
26358
|
refs[oldRef] = null;
|
|
26334
26359
|
if (canSetSetupRef(oldRef)) setupState[oldRef] = null;
|
|
26335
|
-
} else if (reactivity$1.isRef(oldRef))
|
|
26360
|
+
} else if (reactivity$1.isRef(oldRef)) {
|
|
26361
|
+
oldRef.value = null;
|
|
26362
|
+
const oldRawRefAtom = oldRawRef;
|
|
26363
|
+
if (oldRawRefAtom.k) refs[oldRawRefAtom.k] = null;
|
|
26364
|
+
}
|
|
26336
26365
|
}
|
|
26337
26366
|
if (shared$5.isFunction(ref$1)) callWithErrorHandling$1(ref$1, owner, 12, [value, refs]);
|
|
26338
26367
|
else {
|
|
@@ -26347,8 +26376,9 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26347
26376
|
refs[ref$1] = [refValue];
|
|
26348
26377
|
if (canSetSetupRef(ref$1)) setupState[ref$1] = refs[ref$1];
|
|
26349
26378
|
} else {
|
|
26350
|
-
|
|
26351
|
-
|
|
26379
|
+
const newVal = [refValue];
|
|
26380
|
+
ref$1.value = newVal;
|
|
26381
|
+
if (rawRef.k) refs[rawRef.k] = newVal;
|
|
26352
26382
|
}
|
|
26353
26383
|
else if (!existing.includes(refValue)) existing.push(refValue);
|
|
26354
26384
|
} else if (_isString) {
|
|
@@ -26360,12 +26390,27 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26360
26390
|
}
|
|
26361
26391
|
};
|
|
26362
26392
|
if (value) {
|
|
26363
|
-
|
|
26364
|
-
|
|
26365
|
-
|
|
26393
|
+
const job = () => {
|
|
26394
|
+
doSet();
|
|
26395
|
+
pendingSetRefMap.delete(rawRef);
|
|
26396
|
+
};
|
|
26397
|
+
job.id = -1;
|
|
26398
|
+
pendingSetRefMap.set(rawRef, job);
|
|
26399
|
+
queuePostRenderEffect$1(job, parentSuspense);
|
|
26400
|
+
} else {
|
|
26401
|
+
invalidatePendingSetRef(rawRef);
|
|
26402
|
+
doSet();
|
|
26403
|
+
}
|
|
26366
26404
|
}
|
|
26367
26405
|
}
|
|
26368
26406
|
}
|
|
26407
|
+
function invalidatePendingSetRef(rawRef) {
|
|
26408
|
+
const pendingSetRef = pendingSetRefMap.get(rawRef);
|
|
26409
|
+
if (pendingSetRef) {
|
|
26410
|
+
pendingSetRef.flags |= 8;
|
|
26411
|
+
pendingSetRefMap.delete(rawRef);
|
|
26412
|
+
}
|
|
26413
|
+
}
|
|
26369
26414
|
let hasLoggedMismatchError = false;
|
|
26370
26415
|
const logMismatchError = () => {
|
|
26371
26416
|
if (hasLoggedMismatchError) return;
|
|
@@ -26481,7 +26526,11 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26481
26526
|
if (isTemplateNode$2(el)) {
|
|
26482
26527
|
needCallTransitionHooks = needTransition(null, transition) && parentComponent && parentComponent.vnode.props && parentComponent.vnode.props.appear;
|
|
26483
26528
|
const content = el.content.firstChild;
|
|
26484
|
-
if (needCallTransitionHooks)
|
|
26529
|
+
if (needCallTransitionHooks) {
|
|
26530
|
+
const cls = content.getAttribute("class");
|
|
26531
|
+
if (cls) content.$cls = cls;
|
|
26532
|
+
transition.beforeEnter(content);
|
|
26533
|
+
}
|
|
26485
26534
|
replaceNode(content, el, parentComponent);
|
|
26486
26535
|
vnode.el = el = content;
|
|
26487
26536
|
}
|
|
@@ -26617,7 +26666,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26617
26666
|
else {
|
|
26618
26667
|
const list = allowedAttr.split(",");
|
|
26619
26668
|
if (allowedType === 0 && list.includes("children")) return true;
|
|
26620
|
-
return
|
|
26669
|
+
return list.includes(MismatchTypeString[allowedType]);
|
|
26621
26670
|
}
|
|
26622
26671
|
}
|
|
26623
26672
|
const requestIdleCallback$1 = shared$5.getGlobalThis().requestIdleCallback || ((cb) => setTimeout(cb, 1));
|
|
@@ -26699,7 +26748,6 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26699
26748
|
} else cb(node);
|
|
26700
26749
|
}
|
|
26701
26750
|
const isAsyncWrapper = (i) => !!i.type.__asyncLoader;
|
|
26702
|
-
/*! #__NO_SIDE_EFFECTS__ */
|
|
26703
26751
|
/* @__NO_SIDE_EFFECTS__ */
|
|
26704
26752
|
function defineAsyncComponent(source) {
|
|
26705
26753
|
if (shared$5.isFunction(source)) source = { loader: source };
|
|
@@ -26733,10 +26781,16 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26733
26781
|
name: "AsyncComponentWrapper",
|
|
26734
26782
|
__asyncLoader: load,
|
|
26735
26783
|
__asyncHydrate(el, instance, hydrate$2) {
|
|
26784
|
+
let patched = false;
|
|
26785
|
+
(instance.bu || (instance.bu = [])).push(() => patched = true);
|
|
26786
|
+
const performHydrate = () => {
|
|
26787
|
+
if (patched) return;
|
|
26788
|
+
hydrate$2();
|
|
26789
|
+
};
|
|
26736
26790
|
const doHydrate = hydrateStrategy ? () => {
|
|
26737
|
-
const teardown = hydrateStrategy(
|
|
26791
|
+
const teardown = hydrateStrategy(performHydrate, (cb) => forEachElement(el, cb));
|
|
26738
26792
|
if (teardown) (instance.bum || (instance.bum = [])).push(teardown);
|
|
26739
|
-
} :
|
|
26793
|
+
} : performHydrate;
|
|
26740
26794
|
if (resolvedComp) doHydrate();
|
|
26741
26795
|
else load().then(() => !instance.isUnmounted && doHydrate());
|
|
26742
26796
|
},
|
|
@@ -26811,7 +26865,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
26811
26865
|
max: [String, Number]
|
|
26812
26866
|
},
|
|
26813
26867
|
setup(props, { slots }) {
|
|
26814
|
-
const instance = getCurrentInstance();
|
|
26868
|
+
const instance = getCurrentInstance$1();
|
|
26815
26869
|
const sharedContext = instance.ctx;
|
|
26816
26870
|
if (!sharedContext.renderer) return () => {
|
|
26817
26871
|
const children = slots.default && slots.default();
|
|
@@ -27194,9 +27248,9 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
27194
27248
|
else ctx[key] = value;
|
|
27195
27249
|
return true;
|
|
27196
27250
|
},
|
|
27197
|
-
has({ _: { data, setupState, accessCache, ctx, appContext, propsOptions } }, key) {
|
|
27198
|
-
let normalizedProps;
|
|
27199
|
-
return !!accessCache[key] || data !== shared$5.EMPTY_OBJ && shared$5.hasOwn(data, key) || hasSetupBinding$1(setupState, key) || (normalizedProps = propsOptions[0]) && shared$5.hasOwn(normalizedProps, key) || shared$5.hasOwn(ctx, key) || shared$5.hasOwn(publicPropertiesMap$1, key) || shared$5.hasOwn(appContext.config.globalProperties, key);
|
|
27251
|
+
has({ _: { data, setupState, accessCache, ctx, appContext, propsOptions, type } }, key) {
|
|
27252
|
+
let normalizedProps, cssModules;
|
|
27253
|
+
return !!(accessCache[key] || data !== shared$5.EMPTY_OBJ && key[0] !== "$" && shared$5.hasOwn(data, key) || hasSetupBinding$1(setupState, key) || (normalizedProps = propsOptions[0]) && shared$5.hasOwn(normalizedProps, key) || shared$5.hasOwn(ctx, key) || shared$5.hasOwn(publicPropertiesMap$1, key) || shared$5.hasOwn(appContext.config.globalProperties, key) || (cssModules = type.__cssModules) && cssModules[key]);
|
|
27200
27254
|
},
|
|
27201
27255
|
defineProperty(target, key, descriptor) {
|
|
27202
27256
|
if (descriptor.get != null) target._.accessCache[key] = 0;
|
|
@@ -27234,8 +27288,8 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
27234
27288
|
function useAttrs() {
|
|
27235
27289
|
return getContext().attrs;
|
|
27236
27290
|
}
|
|
27237
|
-
function getContext() {
|
|
27238
|
-
const i = getCurrentInstance();
|
|
27291
|
+
function getContext(calledFunctionName) {
|
|
27292
|
+
const i = getCurrentInstance$1();
|
|
27239
27293
|
return i.setupContext || (i.setupContext = createSetupContext(i));
|
|
27240
27294
|
}
|
|
27241
27295
|
function normalizePropsOrEmits$1(props) {
|
|
@@ -27270,7 +27324,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
27270
27324
|
return ret;
|
|
27271
27325
|
}
|
|
27272
27326
|
function withAsyncContext(getAwaitable) {
|
|
27273
|
-
const ctx = getCurrentInstance();
|
|
27327
|
+
const ctx = getCurrentInstance$1();
|
|
27274
27328
|
let awaitable = getAwaitable();
|
|
27275
27329
|
unsetCurrentInstance();
|
|
27276
27330
|
if (shared$5.isPromise(awaitable)) awaitable = awaitable.catch((e) => {
|
|
@@ -27344,7 +27398,8 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
27344
27398
|
expose.forEach((key) => {
|
|
27345
27399
|
Object.defineProperty(exposed, key, {
|
|
27346
27400
|
get: () => publicThis[key],
|
|
27347
|
-
set: (val) => publicThis[key] = val
|
|
27401
|
+
set: (val) => publicThis[key] = val,
|
|
27402
|
+
enumerable: true
|
|
27348
27403
|
});
|
|
27349
27404
|
});
|
|
27350
27405
|
} else if (!instance.exposed) instance.exposed = {};
|
|
@@ -27596,15 +27651,15 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
27596
27651
|
}
|
|
27597
27652
|
}
|
|
27598
27653
|
function inject$1(key, defaultValue, treatDefaultAsFactory = false) {
|
|
27599
|
-
const instance =
|
|
27654
|
+
const instance = getCurrentInstance$1();
|
|
27600
27655
|
if (instance || currentApp$1) {
|
|
27601
|
-
|
|
27656
|
+
let provides = currentApp$1 ? currentApp$1._context.provides : instance ? instance.parent == null || instance.ce ? instance.vnode.appContext && instance.vnode.appContext.provides : instance.parent.provides : void 0;
|
|
27602
27657
|
if (provides && key in provides) return provides[key];
|
|
27603
27658
|
else if (arguments.length > 1) return treatDefaultAsFactory && shared$5.isFunction(defaultValue) ? defaultValue.call(instance && instance.proxy) : defaultValue;
|
|
27604
27659
|
}
|
|
27605
27660
|
}
|
|
27606
27661
|
function hasInjectionContext() {
|
|
27607
|
-
return !!(
|
|
27662
|
+
return !!(getCurrentInstance$1() || currentApp$1);
|
|
27608
27663
|
}
|
|
27609
27664
|
const internalObjectProto = {};
|
|
27610
27665
|
const createInternalObject = () => Object.create(internalObjectProto);
|
|
@@ -27771,7 +27826,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
27771
27826
|
if (key[0] !== "$" && !shared$5.isReservedProp(key)) return true;
|
|
27772
27827
|
return false;
|
|
27773
27828
|
}
|
|
27774
|
-
const isInternalKey = (key) => key
|
|
27829
|
+
const isInternalKey = (key) => key === "_" || key === "_ctx" || key === "$stable";
|
|
27775
27830
|
const normalizeSlotValue = (value) => shared$5.isArray(value) ? value.map(normalizeVNode) : [normalizeVNode(value)];
|
|
27776
27831
|
const normalizeSlot = (key, rawSlot, ctx) => {
|
|
27777
27832
|
if (rawSlot._n) return rawSlot;
|
|
@@ -27873,6 +27928,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
27873
27928
|
else if (shapeFlag & 128) type.process(n1, n2, container, anchor, parentComponent, parentSuspense, namespace, slotScopeIds, optimized, internals);
|
|
27874
27929
|
}
|
|
27875
27930
|
if (ref$1 != null && parentComponent) setRef(ref$1, n1 && n1.ref, parentSuspense, n2 || n1, !n2);
|
|
27931
|
+
else if (ref$1 == null && n1 && n1.ref != null) setRef(n1.ref, null, parentSuspense, n1, true);
|
|
27876
27932
|
};
|
|
27877
27933
|
const processText = (n1, n2, container, anchor) => {
|
|
27878
27934
|
if (n1 == null) hostInsert(n2.el = hostCreateText(n2.children), container, anchor);
|
|
@@ -27997,7 +28053,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
27997
28053
|
for (let i = 0; i < newChildren.length; i++) {
|
|
27998
28054
|
const oldVNode = oldChildren[i];
|
|
27999
28055
|
const newVNode = newChildren[i];
|
|
28000
|
-
const container = oldVNode.el && (oldVNode.type === Fragment$1 || !isSameVNodeType(oldVNode, newVNode) || oldVNode.shapeFlag &
|
|
28056
|
+
const container = oldVNode.el && (oldVNode.type === Fragment$1 || !isSameVNodeType(oldVNode, newVNode) || oldVNode.shapeFlag & 198) ? hostParentNode(oldVNode.el) : fallbackContainer;
|
|
28001
28057
|
patch(oldVNode, newVNode, container, null, parentComponent, parentSuspense, namespace, slotScopeIds, true);
|
|
28002
28058
|
}
|
|
28003
28059
|
};
|
|
@@ -28044,6 +28100,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
28044
28100
|
if (!initialVNode.el) {
|
|
28045
28101
|
const placeholder = instance.subTree = createVNode(Comment$1);
|
|
28046
28102
|
processCommentNode(null, placeholder, container, anchor);
|
|
28103
|
+
initialVNode.placeholder = placeholder.el;
|
|
28047
28104
|
}
|
|
28048
28105
|
} else setupRenderEffect(instance, initialVNode, container, anchor, parentSuspense, namespace, optimized);
|
|
28049
28106
|
};
|
|
@@ -28080,7 +28137,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
28080
28137
|
if (isAsyncWrapperVNode && type.__asyncHydrate) type.__asyncHydrate(el, instance, hydrateSubTree);
|
|
28081
28138
|
else hydrateSubTree();
|
|
28082
28139
|
} else {
|
|
28083
|
-
if (root.ce) root.ce._injectChildStyle(type);
|
|
28140
|
+
if (root.ce && root.ce._def.shadowRoot !== false) root.ce._injectChildStyle(type);
|
|
28084
28141
|
const subTree = instance.subTree = renderComponentRoot(instance);
|
|
28085
28142
|
patch(null, subTree, container, anchor, instance, parentSuspense, namespace);
|
|
28086
28143
|
initialVNode.el = subTree.el;
|
|
@@ -28262,7 +28319,8 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
28262
28319
|
for (i = toBePatched - 1; i >= 0; i--) {
|
|
28263
28320
|
const nextIndex = s2 + i;
|
|
28264
28321
|
const nextChild = c2[nextIndex];
|
|
28265
|
-
const
|
|
28322
|
+
const anchorVNode = c2[nextIndex + 1];
|
|
28323
|
+
const anchor = nextIndex + 1 < l2 ? anchorVNode.el || anchorVNode.placeholder : parentAnchor;
|
|
28266
28324
|
if (newIndexToOldIndexMap[i] === 0) patch(null, nextChild, container, anchor, parentComponent, parentSuspense, namespace, slotScopeIds, optimized);
|
|
28267
28325
|
else if (moved) if (j < 0 || i !== increasingNewIndexSequence[j]) move(nextChild, container, anchor, 2);
|
|
28268
28326
|
else j--;
|
|
@@ -28304,6 +28362,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
28304
28362
|
else hostInsert(el, container, anchor);
|
|
28305
28363
|
};
|
|
28306
28364
|
const performLeave = () => {
|
|
28365
|
+
if (el._isLeaving) el[leaveCbKey$1](true);
|
|
28307
28366
|
leave(el, () => {
|
|
28308
28367
|
remove2();
|
|
28309
28368
|
afterLeave && afterLeave();
|
|
@@ -28379,13 +28438,10 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
28379
28438
|
hostRemove(end);
|
|
28380
28439
|
};
|
|
28381
28440
|
const unmountComponent = (instance, parentSuspense, doRemove) => {
|
|
28382
|
-
const { bum, scope, job, subTree, um, m, a
|
|
28441
|
+
const { bum, scope, job, subTree, um, m, a } = instance;
|
|
28383
28442
|
invalidateMount(m);
|
|
28384
28443
|
invalidateMount(a);
|
|
28385
28444
|
if (bum) shared$5.invokeArrayFns(bum);
|
|
28386
|
-
if (parent && shared$5.isArray(slotCacheKeys)) slotCacheKeys.forEach((v) => {
|
|
28387
|
-
parent.renderCache[v] = void 0;
|
|
28388
|
-
});
|
|
28389
28445
|
scope.stop();
|
|
28390
28446
|
if (job) {
|
|
28391
28447
|
job.flags |= 8;
|
|
@@ -28395,10 +28451,6 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
28395
28451
|
queuePostRenderEffect$1(() => {
|
|
28396
28452
|
instance.isUnmounted = true;
|
|
28397
28453
|
}, parentSuspense);
|
|
28398
|
-
if (parentSuspense && parentSuspense.pendingBranch && !parentSuspense.isUnmounted && instance.asyncDep && !instance.asyncResolved && instance.suspenseId === parentSuspense.pendingId) {
|
|
28399
|
-
parentSuspense.deps--;
|
|
28400
|
-
if (parentSuspense.deps === 0) parentSuspense.resolve();
|
|
28401
|
-
}
|
|
28402
28454
|
};
|
|
28403
28455
|
const unmountChildren = (children, parentComponent, parentSuspense, doRemove = false, optimized = false, start = 0) => {
|
|
28404
28456
|
for (let i = start; i < children.length; i++) unmount(children[i], parentComponent, parentSuspense, doRemove, optimized);
|
|
@@ -28472,7 +28524,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
28472
28524
|
}
|
|
28473
28525
|
if (!shallow && c2.patchFlag !== -2) traverseStaticChildren(c1, c2);
|
|
28474
28526
|
}
|
|
28475
|
-
if (c2.type === Text$1) c2.el = c1.el;
|
|
28527
|
+
if (c2.type === Text$1 && c2.patchFlag !== -1) c2.el = c1.el;
|
|
28476
28528
|
if (c2.type === Comment$1 && !c2.el) c2.el = c1.el;
|
|
28477
28529
|
}
|
|
28478
28530
|
}
|
|
@@ -28605,7 +28657,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
28605
28657
|
};
|
|
28606
28658
|
}
|
|
28607
28659
|
function useModel(props, name, options = shared$5.EMPTY_OBJ) {
|
|
28608
|
-
const i = getCurrentInstance();
|
|
28660
|
+
const i = getCurrentInstance$1();
|
|
28609
28661
|
const camelizedName = shared$5.camelize(name);
|
|
28610
28662
|
const hyphenatedName = shared$5.hyphenate(name);
|
|
28611
28663
|
const modifiers = getModelModifiers(props, camelizedName);
|
|
@@ -28677,8 +28729,9 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
28677
28729
|
callWithAsyncErrorHandling$1(onceHandler, instance, 6, args);
|
|
28678
28730
|
}
|
|
28679
28731
|
}
|
|
28732
|
+
const mixinEmitsCache = /* @__PURE__ */ new WeakMap();
|
|
28680
28733
|
function normalizeEmitsOptions(comp, appContext, asMixin = false) {
|
|
28681
|
-
const cache = appContext.emitsCache;
|
|
28734
|
+
const cache = asMixin ? mixinEmitsCache : appContext.emitsCache;
|
|
28682
28735
|
const cached = cache.get(comp);
|
|
28683
28736
|
if (cached !== void 0) return cached;
|
|
28684
28737
|
const raw = comp.emits;
|
|
@@ -28868,7 +28921,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
28868
28921
|
const { activeBranch, pendingBranch, isInFallback, isHydrating } = suspense;
|
|
28869
28922
|
if (pendingBranch) {
|
|
28870
28923
|
suspense.pendingBranch = newBranch;
|
|
28871
|
-
if (isSameVNodeType(
|
|
28924
|
+
if (isSameVNodeType(pendingBranch, newBranch)) {
|
|
28872
28925
|
patch(pendingBranch, newBranch, suspense.hiddenContainer, null, parentComponent, suspense, namespace, slotScopeIds, optimized);
|
|
28873
28926
|
if (suspense.deps <= 0) suspense.resolve();
|
|
28874
28927
|
else if (isInFallback) {
|
|
@@ -28893,7 +28946,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
28893
28946
|
patch(activeBranch, newFallback, container, anchor, parentComponent, null, namespace, slotScopeIds, optimized);
|
|
28894
28947
|
setActiveBranch(suspense, newFallback);
|
|
28895
28948
|
}
|
|
28896
|
-
} else if (activeBranch && isSameVNodeType(
|
|
28949
|
+
} else if (activeBranch && isSameVNodeType(activeBranch, newBranch)) {
|
|
28897
28950
|
patch(activeBranch, newBranch, container, anchor, parentComponent, suspense, namespace, slotScopeIds, optimized);
|
|
28898
28951
|
suspense.resolve(true);
|
|
28899
28952
|
} else {
|
|
@@ -28901,7 +28954,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
28901
28954
|
if (suspense.deps <= 0) suspense.resolve();
|
|
28902
28955
|
}
|
|
28903
28956
|
}
|
|
28904
|
-
} else if (activeBranch && isSameVNodeType(
|
|
28957
|
+
} else if (activeBranch && isSameVNodeType(activeBranch, newBranch)) {
|
|
28905
28958
|
patch(activeBranch, newBranch, container, anchor, parentComponent, suspense, namespace, slotScopeIds, optimized);
|
|
28906
28959
|
setActiveBranch(suspense, newBranch);
|
|
28907
28960
|
} else {
|
|
@@ -29234,6 +29287,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
29234
29287
|
suspense: vnode.suspense,
|
|
29235
29288
|
ssContent: vnode.ssContent && cloneVNode(vnode.ssContent),
|
|
29236
29289
|
ssFallback: vnode.ssFallback && cloneVNode(vnode.ssFallback),
|
|
29290
|
+
placeholder: vnode.placeholder,
|
|
29237
29291
|
el: vnode.el,
|
|
29238
29292
|
anchor: vnode.anchor,
|
|
29239
29293
|
ctx: vnode.ctx,
|
|
@@ -29395,7 +29449,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
29395
29449
|
return instance;
|
|
29396
29450
|
}
|
|
29397
29451
|
let currentInstance$1 = null;
|
|
29398
|
-
const getCurrentInstance = () => currentInstance$1 || currentRenderingInstance$1;
|
|
29452
|
+
const getCurrentInstance$1 = () => currentInstance$1 || currentRenderingInstance$1;
|
|
29399
29453
|
let internalSetCurrentInstance$1;
|
|
29400
29454
|
let setInSSRSetupState$1;
|
|
29401
29455
|
{
|
|
@@ -29545,15 +29599,23 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
29545
29599
|
return reactivity$1.computed(getterOrOptions, debugOptions, isInSSRComponentSetup$1);
|
|
29546
29600
|
};
|
|
29547
29601
|
function h(type, propsOrChildren, children) {
|
|
29602
|
+
const doCreateVNode = (type2, props, children2) => {
|
|
29603
|
+
setBlockTracking(-1);
|
|
29604
|
+
try {
|
|
29605
|
+
return createVNode(type2, props, children2);
|
|
29606
|
+
} finally {
|
|
29607
|
+
setBlockTracking(1);
|
|
29608
|
+
}
|
|
29609
|
+
};
|
|
29548
29610
|
const l = arguments.length;
|
|
29549
29611
|
if (l === 2) if (shared$5.isObject(propsOrChildren) && !shared$5.isArray(propsOrChildren)) {
|
|
29550
|
-
if (isVNode(propsOrChildren)) return
|
|
29551
|
-
return
|
|
29552
|
-
} else return
|
|
29612
|
+
if (isVNode(propsOrChildren)) return doCreateVNode(type, null, [propsOrChildren]);
|
|
29613
|
+
return doCreateVNode(type, propsOrChildren);
|
|
29614
|
+
} else return doCreateVNode(type, null, propsOrChildren);
|
|
29553
29615
|
else {
|
|
29554
29616
|
if (l > 3) children = Array.prototype.slice.call(arguments, 2);
|
|
29555
29617
|
else if (l === 3 && isVNode(children)) children = [children];
|
|
29556
|
-
return
|
|
29618
|
+
return doCreateVNode(type, propsOrChildren, children);
|
|
29557
29619
|
}
|
|
29558
29620
|
}
|
|
29559
29621
|
function initCustomFormatter() {}
|
|
@@ -29572,7 +29634,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
29572
29634
|
if (isBlockTreeEnabled > 0 && currentBlock) currentBlock.push(cached);
|
|
29573
29635
|
return true;
|
|
29574
29636
|
}
|
|
29575
|
-
const version = "3.5.
|
|
29637
|
+
const version = "3.5.21";
|
|
29576
29638
|
const warn$1$1 = shared$5.NOOP;
|
|
29577
29639
|
const ErrorTypeStrings = ErrorTypeStrings$1$1;
|
|
29578
29640
|
const devtools = void 0;
|
|
@@ -29668,7 +29730,7 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
29668
29730
|
exports.defineProps = defineProps;
|
|
29669
29731
|
exports.defineSlots = defineSlots;
|
|
29670
29732
|
exports.devtools = devtools;
|
|
29671
|
-
exports.getCurrentInstance = getCurrentInstance;
|
|
29733
|
+
exports.getCurrentInstance = getCurrentInstance$1;
|
|
29672
29734
|
exports.getTransitionRawChildren = getTransitionRawChildren;
|
|
29673
29735
|
exports.guardReactiveProps = guardReactiveProps;
|
|
29674
29736
|
exports.h = h;
|
|
@@ -29741,8 +29803,8 @@ var require_runtime_core_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_mod
|
|
|
29741
29803
|
}) });
|
|
29742
29804
|
|
|
29743
29805
|
//#endregion
|
|
29744
|
-
//#region ../../node_modules/.pnpm/@vue+runtime-core@3.5.
|
|
29745
|
-
var require_runtime_core_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+runtime-core@3.5.
|
|
29806
|
+
//#region ../../node_modules/.pnpm/@vue+runtime-core@3.5.21/node_modules/@vue/runtime-core/dist/runtime-core.cjs.js
|
|
29807
|
+
var require_runtime_core_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+runtime-core@3.5.21/node_modules/@vue/runtime-core/dist/runtime-core.cjs.js": ((exports) => {
|
|
29746
29808
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29747
29809
|
var reactivity = require_reactivity();
|
|
29748
29810
|
var shared$4 = require_shared();
|
|
@@ -30039,11 +30101,14 @@ var require_runtime_core_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/
|
|
|
30039
30101
|
}
|
|
30040
30102
|
let isHmrUpdating = false;
|
|
30041
30103
|
const hmrDirtyComponents = /* @__PURE__ */ new Map();
|
|
30042
|
-
|
|
30043
|
-
|
|
30044
|
-
|
|
30045
|
-
|
|
30046
|
-
|
|
30104
|
+
{
|
|
30105
|
+
const g = shared$4.getGlobalThis();
|
|
30106
|
+
if (!g.__VUE_HMR_RUNTIME__) g.__VUE_HMR_RUNTIME__ = {
|
|
30107
|
+
createRecord: tryWrap(createRecord),
|
|
30108
|
+
rerender: tryWrap(rerender),
|
|
30109
|
+
reload: tryWrap(reload)
|
|
30110
|
+
};
|
|
30111
|
+
}
|
|
30047
30112
|
const map = /* @__PURE__ */ new Map();
|
|
30048
30113
|
function createRecord(id, initialDef) {
|
|
30049
30114
|
if (map.has(id)) return false;
|
|
@@ -30067,7 +30132,7 @@ var require_runtime_core_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/
|
|
|
30067
30132
|
}
|
|
30068
30133
|
instance.renderCache = [];
|
|
30069
30134
|
isHmrUpdating = true;
|
|
30070
|
-
instance.update();
|
|
30135
|
+
if (!(instance.job.flags & 8)) instance.update();
|
|
30071
30136
|
isHmrUpdating = false;
|
|
30072
30137
|
});
|
|
30073
30138
|
}
|
|
@@ -30094,10 +30159,12 @@ var require_runtime_core_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/
|
|
|
30094
30159
|
instance.ceReload(newComp.styles);
|
|
30095
30160
|
dirtyInstances.delete(instance);
|
|
30096
30161
|
} else if (instance.parent) queueJob(() => {
|
|
30097
|
-
|
|
30098
|
-
|
|
30099
|
-
|
|
30100
|
-
|
|
30162
|
+
if (!(instance.job.flags & 8)) {
|
|
30163
|
+
isHmrUpdating = true;
|
|
30164
|
+
instance.parent.update();
|
|
30165
|
+
isHmrUpdating = false;
|
|
30166
|
+
dirtyInstances.delete(instance);
|
|
30167
|
+
}
|
|
30101
30168
|
});
|
|
30102
30169
|
else if (instance.appContext.reload) instance.appContext.reload();
|
|
30103
30170
|
else if (typeof window !== "undefined") window.location.reload();
|
|
@@ -30258,9 +30325,9 @@ var require_runtime_core_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/
|
|
|
30258
30325
|
else ctx[key] = value;
|
|
30259
30326
|
return true;
|
|
30260
30327
|
},
|
|
30261
|
-
has({ _: { data, setupState, accessCache, ctx, appContext, propsOptions } }, key) {
|
|
30262
|
-
let normalizedProps;
|
|
30263
|
-
return !!accessCache[key] || data !== shared$4.EMPTY_OBJ && shared$4.hasOwn(data, key) || hasSetupBinding(setupState, key) || (normalizedProps = propsOptions[0]) && shared$4.hasOwn(normalizedProps, key) || shared$4.hasOwn(ctx, key) || shared$4.hasOwn(publicPropertiesMap, key) || shared$4.hasOwn(appContext.config.globalProperties, key);
|
|
30328
|
+
has({ _: { data, setupState, accessCache, ctx, appContext, propsOptions, type } }, key) {
|
|
30329
|
+
let normalizedProps, cssModules;
|
|
30330
|
+
return !!(accessCache[key] || data !== shared$4.EMPTY_OBJ && key[0] !== "$" && shared$4.hasOwn(data, key) || hasSetupBinding(setupState, key) || (normalizedProps = propsOptions[0]) && shared$4.hasOwn(normalizedProps, key) || shared$4.hasOwn(ctx, key) || shared$4.hasOwn(publicPropertiesMap, key) || shared$4.hasOwn(appContext.config.globalProperties, key) || (cssModules = type.__cssModules) && cssModules[key]);
|
|
30264
30331
|
},
|
|
30265
30332
|
defineProperty(target, key, descriptor) {
|
|
30266
30333
|
if (descriptor.get != null) target._.accessCache[key] = 0;
|
|
@@ -30389,9 +30456,9 @@ var require_runtime_core_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/
|
|
|
30389
30456
|
}
|
|
30390
30457
|
let currentApp = null;
|
|
30391
30458
|
function inject(key, defaultValue, treatDefaultAsFactory = false) {
|
|
30392
|
-
const instance =
|
|
30459
|
+
const instance = getCurrentInstance();
|
|
30393
30460
|
if (instance || currentApp) {
|
|
30394
|
-
|
|
30461
|
+
let provides = currentApp ? currentApp._context.provides : instance ? instance.parent == null || instance.ce ? instance.vnode.appContext && instance.vnode.appContext.provides : instance.parent.provides : void 0;
|
|
30395
30462
|
if (provides && key in provides) return provides[key];
|
|
30396
30463
|
else if (arguments.length > 1) return treatDefaultAsFactory && shared$4.isFunction(defaultValue) ? defaultValue.call(instance && instance.proxy) : defaultValue;
|
|
30397
30464
|
else warn$1(`injection "${String(key)}" not found.`);
|
|
@@ -30496,6 +30563,7 @@ var require_runtime_core_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/
|
|
|
30496
30563
|
const Static = Symbol.for("v-stc");
|
|
30497
30564
|
const emptyAppContext = createAppContext();
|
|
30498
30565
|
let currentInstance = null;
|
|
30566
|
+
const getCurrentInstance = () => currentInstance || currentRenderingInstance;
|
|
30499
30567
|
let internalSetCurrentInstance;
|
|
30500
30568
|
let setInSSRSetupState;
|
|
30501
30569
|
{
|
|
@@ -30537,7 +30605,7 @@ var require_runtime_core_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/
|
|
|
30537
30605
|
}));
|
|
30538
30606
|
else return instance.proxy;
|
|
30539
30607
|
}
|
|
30540
|
-
const classifyRE = /(?:^|[-_])
|
|
30608
|
+
const classifyRE = /(?:^|[-_])\w/g;
|
|
30541
30609
|
const classify = (str) => str.replace(classifyRE, (c) => c.toUpperCase()).replace(/[-_]/g, "");
|
|
30542
30610
|
function getComponentName(Component, includeInferred = true) {
|
|
30543
30611
|
return shared$4.isFunction(Component) ? Component.displayName || Component.name : Component.name || includeInferred && Component.__name;
|
|
@@ -30600,15 +30668,15 @@ var require_runtime_core_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/
|
|
|
30600
30668
|
}) });
|
|
30601
30669
|
|
|
30602
30670
|
//#endregion
|
|
30603
|
-
//#region ../../node_modules/.pnpm/@vue+runtime-core@3.5.
|
|
30604
|
-
var require_runtime_core = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+runtime-core@3.5.
|
|
30671
|
+
//#region ../../node_modules/.pnpm/@vue+runtime-core@3.5.21/node_modules/@vue/runtime-core/index.js
|
|
30672
|
+
var require_runtime_core = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+runtime-core@3.5.21/node_modules/@vue/runtime-core/index.js": ((exports, module) => {
|
|
30605
30673
|
if (process.env.NODE_ENV === "production") module.exports = require_runtime_core_cjs_prod();
|
|
30606
30674
|
else module.exports = require_runtime_core_cjs();
|
|
30607
30675
|
}) });
|
|
30608
30676
|
|
|
30609
30677
|
//#endregion
|
|
30610
|
-
//#region ../../node_modules/.pnpm/@vue+runtime-dom@3.5.
|
|
30611
|
-
var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+runtime-dom@3.5.
|
|
30678
|
+
//#region ../../node_modules/.pnpm/@vue+runtime-dom@3.5.21/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js
|
|
30679
|
+
var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+runtime-dom@3.5.21/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js": ((exports) => {
|
|
30612
30680
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30613
30681
|
var runtimeCore$1 = require_runtime_core();
|
|
30614
30682
|
var shared$3 = require_shared();
|
|
@@ -30867,7 +30935,7 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
30867
30935
|
type = timeout > 0 ? transitionTimeout > animationTimeout ? TRANSITION$1 : ANIMATION$1 : null;
|
|
30868
30936
|
propCount = type ? type === TRANSITION$1 ? transitionDurations.length : animationDurations.length : 0;
|
|
30869
30937
|
}
|
|
30870
|
-
const hasTransform = type === TRANSITION$1 && /\b(transform|all)(
|
|
30938
|
+
const hasTransform = type === TRANSITION$1 && /\b(?:transform|all)(?:,|$)/.test(getStyleProperties(`${TRANSITION$1}Property`).toString());
|
|
30871
30939
|
return {
|
|
30872
30940
|
type,
|
|
30873
30941
|
timeout,
|
|
@@ -30896,6 +30964,7 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
30896
30964
|
const vShowOriginalDisplay$1 = Symbol("_vod");
|
|
30897
30965
|
const vShowHidden$1 = Symbol("_vsh");
|
|
30898
30966
|
const vShow$1 = {
|
|
30967
|
+
name: "show",
|
|
30899
30968
|
beforeMount(el, { value }, { transition }) {
|
|
30900
30969
|
el[vShowOriginalDisplay$1] = el.style.display === "none" ? "" : el.style.display;
|
|
30901
30970
|
if (transition && value) transition.beforeEnter(el);
|
|
@@ -30930,7 +30999,7 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
30930
30999
|
}
|
|
30931
31000
|
const CSS_VAR_TEXT$1 = Symbol("");
|
|
30932
31001
|
function useCssVars$1(getter) {}
|
|
30933
|
-
const displayRE$1 = /(
|
|
31002
|
+
const displayRE$1 = /(?:^|;)\s*display\s*:/;
|
|
30934
31003
|
function patchStyle$1(el, prev, next) {
|
|
30935
31004
|
const style = el.style;
|
|
30936
31005
|
const isCssString = shared$3.isString(next);
|
|
@@ -31121,11 +31190,10 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
31121
31190
|
return key in el;
|
|
31122
31191
|
}
|
|
31123
31192
|
const REMOVAL$1 = {};
|
|
31124
|
-
/*! #__NO_SIDE_EFFECTS__ */
|
|
31125
31193
|
/* @__NO_SIDE_EFFECTS__ */
|
|
31126
31194
|
function defineCustomElement$1(options, extraOptions, _createApp) {
|
|
31127
|
-
|
|
31128
|
-
if (shared$3.isPlainObject(Comp)) shared$3.extend(Comp, extraOptions);
|
|
31195
|
+
let Comp = runtimeCore$1.defineComponent(options, extraOptions);
|
|
31196
|
+
if (shared$3.isPlainObject(Comp)) Comp = shared$3.extend({}, Comp, extraOptions);
|
|
31129
31197
|
class VueCustomElement extends VueElement$1 {
|
|
31130
31198
|
constructor(initialProps) {
|
|
31131
31199
|
super(Comp, initialProps, _createApp);
|
|
@@ -31134,10 +31202,9 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
31134
31202
|
VueCustomElement.def = Comp;
|
|
31135
31203
|
return VueCustomElement;
|
|
31136
31204
|
}
|
|
31137
|
-
|
|
31138
|
-
const defineSSRCustomElement$1 = /* @__NO_SIDE_EFFECTS__ */ (options, extraOptions) => {
|
|
31205
|
+
const defineSSRCustomElement$1 = /* @__NO_SIDE_EFFECTS__ */ ((options, extraOptions) => {
|
|
31139
31206
|
return /* @__PURE__ */ defineCustomElement$1(options, extraOptions, createSSRApp$1);
|
|
31140
|
-
};
|
|
31207
|
+
});
|
|
31141
31208
|
const BaseClass$1 = typeof HTMLElement !== "undefined" ? HTMLElement : class {};
|
|
31142
31209
|
var VueElement$1 = class VueElement$1 extends BaseClass$1 {
|
|
31143
31210
|
constructor(_def, _props = {}, _createApp = createApp$1) {
|
|
@@ -31168,21 +31235,18 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
31168
31235
|
this.attachShadow({ mode: "open" });
|
|
31169
31236
|
this._root = this.shadowRoot;
|
|
31170
31237
|
} else this._root = this;
|
|
31171
|
-
if (!this._def.__asyncLoader) this._resolveProps(this._def);
|
|
31172
31238
|
}
|
|
31173
31239
|
connectedCallback() {
|
|
31174
31240
|
if (!this.isConnected) return;
|
|
31175
|
-
if (!this.shadowRoot) this._parseSlots();
|
|
31241
|
+
if (!this.shadowRoot && !this._resolved) this._parseSlots();
|
|
31176
31242
|
this._connected = true;
|
|
31177
31243
|
let parent = this;
|
|
31178
31244
|
while (parent = parent && (parent.parentNode || parent.host)) if (parent instanceof VueElement$1) {
|
|
31179
31245
|
this._parent = parent;
|
|
31180
31246
|
break;
|
|
31181
31247
|
}
|
|
31182
|
-
if (!this._instance) if (this._resolved)
|
|
31183
|
-
|
|
31184
|
-
this._update();
|
|
31185
|
-
} else if (parent && parent._pendingResolve) this._pendingResolve = parent._pendingResolve.then(() => {
|
|
31248
|
+
if (!this._instance) if (this._resolved) this._mount(this._def);
|
|
31249
|
+
else if (parent && parent._pendingResolve) this._pendingResolve = parent._pendingResolve.then(() => {
|
|
31186
31250
|
this._pendingResolve = void 0;
|
|
31187
31251
|
this._resolveDef();
|
|
31188
31252
|
});
|
|
@@ -31191,9 +31255,12 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
31191
31255
|
_setParent(parent = this._parent) {
|
|
31192
31256
|
if (parent) {
|
|
31193
31257
|
this._instance.parent = parent._instance;
|
|
31194
|
-
this.
|
|
31258
|
+
this._inheritParentContext(parent);
|
|
31195
31259
|
}
|
|
31196
31260
|
}
|
|
31261
|
+
_inheritParentContext(parent = this._parent) {
|
|
31262
|
+
if (parent && this._app) Object.setPrototypeOf(this._app._context.provides, parent._instance.provides);
|
|
31263
|
+
}
|
|
31197
31264
|
disconnectedCallback() {
|
|
31198
31265
|
this._connected = false;
|
|
31199
31266
|
runtimeCore$1.nextTick(() => {
|
|
@@ -31231,16 +31298,20 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
31231
31298
|
}
|
|
31232
31299
|
}
|
|
31233
31300
|
this._numberProps = numberProps;
|
|
31234
|
-
|
|
31301
|
+
this._resolveProps(def$1);
|
|
31235
31302
|
if (this.shadowRoot) this._applyStyles(styles);
|
|
31236
31303
|
this._mount(def$1);
|
|
31237
31304
|
};
|
|
31238
31305
|
const asyncDef = this._def.__asyncLoader;
|
|
31239
|
-
if (asyncDef) this._pendingResolve = asyncDef().then((def$1) =>
|
|
31306
|
+
if (asyncDef) this._pendingResolve = asyncDef().then((def$1) => {
|
|
31307
|
+
def$1.configureApp = this._def.configureApp;
|
|
31308
|
+
resolve$1(this._def = def$1, true);
|
|
31309
|
+
});
|
|
31240
31310
|
else resolve$1(this._def);
|
|
31241
31311
|
}
|
|
31242
31312
|
_mount(def$1) {
|
|
31243
31313
|
this._app = this._createApp(def$1);
|
|
31314
|
+
this._inheritParentContext();
|
|
31244
31315
|
if (def$1.configureApp) def$1.configureApp(this._app);
|
|
31245
31316
|
this._app._ceVNode = this._createVNode();
|
|
31246
31317
|
this._app.mount(this._root);
|
|
@@ -31297,7 +31368,9 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
31297
31368
|
}
|
|
31298
31369
|
}
|
|
31299
31370
|
_update() {
|
|
31300
|
-
|
|
31371
|
+
const vnode = this._createVNode();
|
|
31372
|
+
if (this._app) vnode.appContext = this._app._context;
|
|
31373
|
+
render$1(vnode, this._root);
|
|
31301
31374
|
}
|
|
31302
31375
|
_createVNode() {
|
|
31303
31376
|
const baseProps = {};
|
|
@@ -31438,7 +31511,7 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
31438
31511
|
style.transform = style.webkitTransform = style.transitionDuration = "";
|
|
31439
31512
|
const cb = el[moveCbKey$1] = (e) => {
|
|
31440
31513
|
if (e && e.target !== el) return;
|
|
31441
|
-
if (!e ||
|
|
31514
|
+
if (!e || e.propertyName.endsWith("transform")) {
|
|
31442
31515
|
el.removeEventListener("transitionend", cb);
|
|
31443
31516
|
el[moveCbKey$1] = null;
|
|
31444
31517
|
removeTransitionClass$1(el, moveClass);
|
|
@@ -31730,13 +31803,13 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
31730
31803
|
const withModifiers$1 = (fn, modifiers) => {
|
|
31731
31804
|
const cache = fn._withMods || (fn._withMods = {});
|
|
31732
31805
|
const cacheKey = modifiers.join(".");
|
|
31733
|
-
return cache[cacheKey] || (cache[cacheKey] = (event, ...args) => {
|
|
31806
|
+
return cache[cacheKey] || (cache[cacheKey] = ((event, ...args) => {
|
|
31734
31807
|
for (let i = 0; i < modifiers.length; i++) {
|
|
31735
31808
|
const guard = modifierGuards$1[modifiers[i]];
|
|
31736
31809
|
if (guard && guard(event, modifiers)) return;
|
|
31737
31810
|
}
|
|
31738
31811
|
return fn(event, ...args);
|
|
31739
|
-
});
|
|
31812
|
+
}));
|
|
31740
31813
|
};
|
|
31741
31814
|
const keyNames$1 = {
|
|
31742
31815
|
esc: "escape",
|
|
@@ -31750,11 +31823,11 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
31750
31823
|
const withKeys$1 = (fn, modifiers) => {
|
|
31751
31824
|
const cache = fn._withKeys || (fn._withKeys = {});
|
|
31752
31825
|
const cacheKey = modifiers.join(".");
|
|
31753
|
-
return cache[cacheKey] || (cache[cacheKey] = (event) => {
|
|
31826
|
+
return cache[cacheKey] || (cache[cacheKey] = ((event) => {
|
|
31754
31827
|
if (!("key" in event)) return;
|
|
31755
31828
|
const eventKey = shared$3.hyphenate(event.key);
|
|
31756
31829
|
if (modifiers.some((k) => k === eventKey || keyNames$1[k] === eventKey)) return fn(event);
|
|
31757
|
-
});
|
|
31830
|
+
}));
|
|
31758
31831
|
};
|
|
31759
31832
|
const rendererOptions$1 = /* @__PURE__ */ shared$3.extend({ patchProp: patchProp$1 }, nodeOps$1);
|
|
31760
31833
|
let renderer$1;
|
|
@@ -31767,13 +31840,13 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
31767
31840
|
enabledHydration$1 = true;
|
|
31768
31841
|
return renderer$1;
|
|
31769
31842
|
}
|
|
31770
|
-
const render$1 = (...args) => {
|
|
31843
|
+
const render$1 = ((...args) => {
|
|
31771
31844
|
ensureRenderer$1().render(...args);
|
|
31772
|
-
};
|
|
31773
|
-
const hydrate$1 = (...args) => {
|
|
31845
|
+
});
|
|
31846
|
+
const hydrate$1 = ((...args) => {
|
|
31774
31847
|
ensureHydrationRenderer$1().hydrate(...args);
|
|
31775
|
-
};
|
|
31776
|
-
const createApp$1 = (...args) => {
|
|
31848
|
+
});
|
|
31849
|
+
const createApp$1 = ((...args) => {
|
|
31777
31850
|
const app = ensureRenderer$1().createApp(...args);
|
|
31778
31851
|
const { mount } = app;
|
|
31779
31852
|
app.mount = (containerOrSelector) => {
|
|
@@ -31790,8 +31863,8 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
31790
31863
|
return proxy;
|
|
31791
31864
|
};
|
|
31792
31865
|
return app;
|
|
31793
|
-
};
|
|
31794
|
-
const createSSRApp$1 = (...args) => {
|
|
31866
|
+
});
|
|
31867
|
+
const createSSRApp$1 = ((...args) => {
|
|
31795
31868
|
const app = ensureHydrationRenderer$1().createApp(...args);
|
|
31796
31869
|
const { mount } = app;
|
|
31797
31870
|
app.mount = (containerOrSelector) => {
|
|
@@ -31799,7 +31872,7 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
31799
31872
|
if (container) return mount(container, true, resolveRootNamespace$1(container));
|
|
31800
31873
|
};
|
|
31801
31874
|
return app;
|
|
31802
|
-
};
|
|
31875
|
+
});
|
|
31803
31876
|
function resolveRootNamespace$1(container) {
|
|
31804
31877
|
if (container instanceof SVGElement) return "svg";
|
|
31805
31878
|
if (typeof MathMLElement === "function" && container instanceof MathMLElement) return "mathml";
|
|
@@ -31844,8 +31917,8 @@ var require_runtime_dom_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modu
|
|
|
31844
31917
|
}) });
|
|
31845
31918
|
|
|
31846
31919
|
//#endregion
|
|
31847
|
-
//#region ../../node_modules/.pnpm/@vue+runtime-dom@3.5.
|
|
31848
|
-
var require_runtime_dom_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+runtime-dom@3.5.
|
|
31920
|
+
//#region ../../node_modules/.pnpm/@vue+runtime-dom@3.5.21/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.js
|
|
31921
|
+
var require_runtime_dom_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+runtime-dom@3.5.21/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.js": ((exports) => {
|
|
31849
31922
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
31850
31923
|
var runtimeCore = require_runtime_core();
|
|
31851
31924
|
var shared$2 = require_shared();
|
|
@@ -32108,7 +32181,7 @@ var require_runtime_dom_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.
|
|
|
32108
32181
|
type = timeout > 0 ? transitionTimeout > animationTimeout ? TRANSITION : ANIMATION : null;
|
|
32109
32182
|
propCount = type ? type === TRANSITION ? transitionDurations.length : animationDurations.length : 0;
|
|
32110
32183
|
}
|
|
32111
|
-
const hasTransform = type === TRANSITION && /\b(transform|all)(
|
|
32184
|
+
const hasTransform = type === TRANSITION && /\b(?:transform|all)(?:,|$)/.test(getStyleProperties(`${TRANSITION}Property`).toString());
|
|
32112
32185
|
return {
|
|
32113
32186
|
type,
|
|
32114
32187
|
timeout,
|
|
@@ -32137,6 +32210,7 @@ var require_runtime_dom_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.
|
|
|
32137
32210
|
const vShowOriginalDisplay = Symbol("_vod");
|
|
32138
32211
|
const vShowHidden = Symbol("_vsh");
|
|
32139
32212
|
const vShow = {
|
|
32213
|
+
name: "show",
|
|
32140
32214
|
beforeMount(el, { value }, { transition }) {
|
|
32141
32215
|
el[vShowOriginalDisplay] = el.style.display === "none" ? "" : el.style.display;
|
|
32142
32216
|
if (transition && value) transition.beforeEnter(el);
|
|
@@ -32160,7 +32234,6 @@ var require_runtime_dom_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.
|
|
|
32160
32234
|
setDisplay(el, value);
|
|
32161
32235
|
}
|
|
32162
32236
|
};
|
|
32163
|
-
vShow.name = "show";
|
|
32164
32237
|
function setDisplay(el, value) {
|
|
32165
32238
|
el.style.display = value ? el[vShowOriginalDisplay] : "none";
|
|
32166
32239
|
el[vShowHidden] = !value;
|
|
@@ -32172,7 +32245,7 @@ var require_runtime_dom_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.
|
|
|
32172
32245
|
}
|
|
32173
32246
|
const CSS_VAR_TEXT = Symbol("CSS_VAR_TEXT");
|
|
32174
32247
|
function useCssVars(getter) {}
|
|
32175
|
-
const displayRE = /(
|
|
32248
|
+
const displayRE = /(?:^|;)\s*display\s*:/;
|
|
32176
32249
|
function patchStyle(el, prev, next) {
|
|
32177
32250
|
const style = el.style;
|
|
32178
32251
|
const isCssString = shared$2.isString(next);
|
|
@@ -32373,11 +32446,10 @@ Expected function or array of functions, received type ${typeof value}.`);
|
|
|
32373
32446
|
return key in el;
|
|
32374
32447
|
}
|
|
32375
32448
|
const REMOVAL = {};
|
|
32376
|
-
/*! #__NO_SIDE_EFFECTS__ */
|
|
32377
32449
|
/* @__NO_SIDE_EFFECTS__ */
|
|
32378
32450
|
function defineCustomElement(options, extraOptions, _createApp) {
|
|
32379
|
-
|
|
32380
|
-
if (shared$2.isPlainObject(Comp)) shared$2.extend(Comp, extraOptions);
|
|
32451
|
+
let Comp = runtimeCore.defineComponent(options, extraOptions);
|
|
32452
|
+
if (shared$2.isPlainObject(Comp)) Comp = shared$2.extend({}, Comp, extraOptions);
|
|
32381
32453
|
class VueCustomElement extends VueElement {
|
|
32382
32454
|
constructor(initialProps) {
|
|
32383
32455
|
super(Comp, initialProps, _createApp);
|
|
@@ -32386,10 +32458,9 @@ Expected function or array of functions, received type ${typeof value}.`);
|
|
|
32386
32458
|
VueCustomElement.def = Comp;
|
|
32387
32459
|
return VueCustomElement;
|
|
32388
32460
|
}
|
|
32389
|
-
|
|
32390
|
-
const defineSSRCustomElement = /* @__NO_SIDE_EFFECTS__ */ (options, extraOptions) => {
|
|
32461
|
+
const defineSSRCustomElement = /* @__NO_SIDE_EFFECTS__ */ ((options, extraOptions) => {
|
|
32391
32462
|
return /* @__PURE__ */ defineCustomElement(options, extraOptions, createSSRApp);
|
|
32392
|
-
};
|
|
32463
|
+
});
|
|
32393
32464
|
const BaseClass = typeof HTMLElement !== "undefined" ? HTMLElement : class {};
|
|
32394
32465
|
var VueElement = class VueElement extends BaseClass {
|
|
32395
32466
|
constructor(_def, _props = {}, _createApp = createApp) {
|
|
@@ -32423,21 +32494,18 @@ Expected function or array of functions, received type ${typeof value}.`);
|
|
|
32423
32494
|
this._root = this.shadowRoot;
|
|
32424
32495
|
} else this._root = this;
|
|
32425
32496
|
}
|
|
32426
|
-
if (!this._def.__asyncLoader) this._resolveProps(this._def);
|
|
32427
32497
|
}
|
|
32428
32498
|
connectedCallback() {
|
|
32429
32499
|
if (!this.isConnected) return;
|
|
32430
|
-
if (!this.shadowRoot) this._parseSlots();
|
|
32500
|
+
if (!this.shadowRoot && !this._resolved) this._parseSlots();
|
|
32431
32501
|
this._connected = true;
|
|
32432
32502
|
let parent = this;
|
|
32433
32503
|
while (parent = parent && (parent.parentNode || parent.host)) if (parent instanceof VueElement) {
|
|
32434
32504
|
this._parent = parent;
|
|
32435
32505
|
break;
|
|
32436
32506
|
}
|
|
32437
|
-
if (!this._instance) if (this._resolved)
|
|
32438
|
-
|
|
32439
|
-
this._update();
|
|
32440
|
-
} else if (parent && parent._pendingResolve) this._pendingResolve = parent._pendingResolve.then(() => {
|
|
32507
|
+
if (!this._instance) if (this._resolved) this._mount(this._def);
|
|
32508
|
+
else if (parent && parent._pendingResolve) this._pendingResolve = parent._pendingResolve.then(() => {
|
|
32441
32509
|
this._pendingResolve = void 0;
|
|
32442
32510
|
this._resolveDef();
|
|
32443
32511
|
});
|
|
@@ -32446,9 +32514,12 @@ Expected function or array of functions, received type ${typeof value}.`);
|
|
|
32446
32514
|
_setParent(parent = this._parent) {
|
|
32447
32515
|
if (parent) {
|
|
32448
32516
|
this._instance.parent = parent._instance;
|
|
32449
|
-
this.
|
|
32517
|
+
this._inheritParentContext(parent);
|
|
32450
32518
|
}
|
|
32451
32519
|
}
|
|
32520
|
+
_inheritParentContext(parent = this._parent) {
|
|
32521
|
+
if (parent && this._app) Object.setPrototypeOf(this._app._context.provides, parent._instance.provides);
|
|
32522
|
+
}
|
|
32452
32523
|
disconnectedCallback() {
|
|
32453
32524
|
this._connected = false;
|
|
32454
32525
|
runtimeCore.nextTick(() => {
|
|
@@ -32486,18 +32557,22 @@ Expected function or array of functions, received type ${typeof value}.`);
|
|
|
32486
32557
|
}
|
|
32487
32558
|
}
|
|
32488
32559
|
this._numberProps = numberProps;
|
|
32489
|
-
|
|
32560
|
+
this._resolveProps(def$1);
|
|
32490
32561
|
if (this.shadowRoot) this._applyStyles(styles);
|
|
32491
32562
|
else if (styles) runtimeCore.warn("Custom element style injection is not supported when using shadowRoot: false");
|
|
32492
32563
|
this._mount(def$1);
|
|
32493
32564
|
};
|
|
32494
32565
|
const asyncDef = this._def.__asyncLoader;
|
|
32495
|
-
if (asyncDef) this._pendingResolve = asyncDef().then((def$1) =>
|
|
32566
|
+
if (asyncDef) this._pendingResolve = asyncDef().then((def$1) => {
|
|
32567
|
+
def$1.configureApp = this._def.configureApp;
|
|
32568
|
+
resolve$1(this._def = def$1, true);
|
|
32569
|
+
});
|
|
32496
32570
|
else resolve$1(this._def);
|
|
32497
32571
|
}
|
|
32498
32572
|
_mount(def$1) {
|
|
32499
32573
|
if (!def$1.name) def$1.name = "VueElement";
|
|
32500
32574
|
this._app = this._createApp(def$1);
|
|
32575
|
+
this._inheritParentContext();
|
|
32501
32576
|
if (def$1.configureApp) def$1.configureApp(this._app);
|
|
32502
32577
|
this._app._ceVNode = this._createVNode();
|
|
32503
32578
|
this._app.mount(this._root);
|
|
@@ -32555,7 +32630,9 @@ Expected function or array of functions, received type ${typeof value}.`);
|
|
|
32555
32630
|
}
|
|
32556
32631
|
}
|
|
32557
32632
|
_update() {
|
|
32558
|
-
|
|
32633
|
+
const vnode = this._createVNode();
|
|
32634
|
+
if (this._app) vnode.appContext = this._app._context;
|
|
32635
|
+
render(vnode, this._root);
|
|
32559
32636
|
}
|
|
32560
32637
|
_createVNode() {
|
|
32561
32638
|
const baseProps = {};
|
|
@@ -32733,7 +32810,7 @@ Expected function or array of functions, received type ${typeof value}.`);
|
|
|
32733
32810
|
style.transform = style.webkitTransform = style.transitionDuration = "";
|
|
32734
32811
|
const cb = el[moveCbKey] = (e) => {
|
|
32735
32812
|
if (e && e.target !== el) return;
|
|
32736
|
-
if (!e ||
|
|
32813
|
+
if (!e || e.propertyName.endsWith("transform")) {
|
|
32737
32814
|
el.removeEventListener("transitionend", cb);
|
|
32738
32815
|
el[moveCbKey] = null;
|
|
32739
32816
|
removeTransitionClass(el, moveClass);
|
|
@@ -33029,13 +33106,13 @@ Expected function or array of functions, received type ${typeof value}.`);
|
|
|
33029
33106
|
const withModifiers = (fn, modifiers) => {
|
|
33030
33107
|
const cache = fn._withMods || (fn._withMods = {});
|
|
33031
33108
|
const cacheKey = modifiers.join(".");
|
|
33032
|
-
return cache[cacheKey] || (cache[cacheKey] = (event, ...args) => {
|
|
33109
|
+
return cache[cacheKey] || (cache[cacheKey] = ((event, ...args) => {
|
|
33033
33110
|
for (let i = 0; i < modifiers.length; i++) {
|
|
33034
33111
|
const guard = modifierGuards[modifiers[i]];
|
|
33035
33112
|
if (guard && guard(event, modifiers)) return;
|
|
33036
33113
|
}
|
|
33037
33114
|
return fn(event, ...args);
|
|
33038
|
-
});
|
|
33115
|
+
}));
|
|
33039
33116
|
};
|
|
33040
33117
|
const keyNames = {
|
|
33041
33118
|
esc: "escape",
|
|
@@ -33049,11 +33126,11 @@ Expected function or array of functions, received type ${typeof value}.`);
|
|
|
33049
33126
|
const withKeys = (fn, modifiers) => {
|
|
33050
33127
|
const cache = fn._withKeys || (fn._withKeys = {});
|
|
33051
33128
|
const cacheKey = modifiers.join(".");
|
|
33052
|
-
return cache[cacheKey] || (cache[cacheKey] = (event) => {
|
|
33129
|
+
return cache[cacheKey] || (cache[cacheKey] = ((event) => {
|
|
33053
33130
|
if (!("key" in event)) return;
|
|
33054
33131
|
const eventKey = shared$2.hyphenate(event.key);
|
|
33055
33132
|
if (modifiers.some((k) => k === eventKey || keyNames[k] === eventKey)) return fn(event);
|
|
33056
|
-
});
|
|
33133
|
+
}));
|
|
33057
33134
|
};
|
|
33058
33135
|
const rendererOptions = /* @__PURE__ */ shared$2.extend({ patchProp }, nodeOps);
|
|
33059
33136
|
let renderer;
|
|
@@ -33066,13 +33143,13 @@ Expected function or array of functions, received type ${typeof value}.`);
|
|
|
33066
33143
|
enabledHydration = true;
|
|
33067
33144
|
return renderer;
|
|
33068
33145
|
}
|
|
33069
|
-
const render = (...args) => {
|
|
33146
|
+
const render = ((...args) => {
|
|
33070
33147
|
ensureRenderer().render(...args);
|
|
33071
|
-
};
|
|
33072
|
-
const hydrate = (...args) => {
|
|
33148
|
+
});
|
|
33149
|
+
const hydrate = ((...args) => {
|
|
33073
33150
|
ensureHydrationRenderer().hydrate(...args);
|
|
33074
|
-
};
|
|
33075
|
-
const createApp = (...args) => {
|
|
33151
|
+
});
|
|
33152
|
+
const createApp = ((...args) => {
|
|
33076
33153
|
const app = ensureRenderer().createApp(...args);
|
|
33077
33154
|
injectNativeTagCheck(app);
|
|
33078
33155
|
injectCompilerOptionsCheck(app);
|
|
@@ -33091,8 +33168,8 @@ Expected function or array of functions, received type ${typeof value}.`);
|
|
|
33091
33168
|
return proxy;
|
|
33092
33169
|
};
|
|
33093
33170
|
return app;
|
|
33094
|
-
};
|
|
33095
|
-
const createSSRApp = (...args) => {
|
|
33171
|
+
});
|
|
33172
|
+
const createSSRApp = ((...args) => {
|
|
33096
33173
|
const app = ensureHydrationRenderer().createApp(...args);
|
|
33097
33174
|
injectNativeTagCheck(app);
|
|
33098
33175
|
injectCompilerOptionsCheck(app);
|
|
@@ -33102,7 +33179,7 @@ Expected function or array of functions, received type ${typeof value}.`);
|
|
|
33102
33179
|
if (container) return mount(container, true, resolveRootNamespace(container));
|
|
33103
33180
|
};
|
|
33104
33181
|
return app;
|
|
33105
|
-
};
|
|
33182
|
+
});
|
|
33106
33183
|
function resolveRootNamespace(container) {
|
|
33107
33184
|
if (container instanceof SVGElement) return "svg";
|
|
33108
33185
|
if (typeof MathMLElement === "function" && container instanceof MathMLElement) return "mathml";
|
|
@@ -33185,15 +33262,15 @@ Expected function or array of functions, received type ${typeof value}.`);
|
|
|
33185
33262
|
}) });
|
|
33186
33263
|
|
|
33187
33264
|
//#endregion
|
|
33188
|
-
//#region ../../node_modules/.pnpm/@vue+runtime-dom@3.5.
|
|
33189
|
-
var require_runtime_dom = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+runtime-dom@3.5.
|
|
33265
|
+
//#region ../../node_modules/.pnpm/@vue+runtime-dom@3.5.21/node_modules/@vue/runtime-dom/index.js
|
|
33266
|
+
var require_runtime_dom = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/@vue+runtime-dom@3.5.21/node_modules/@vue/runtime-dom/index.js": ((exports, module) => {
|
|
33190
33267
|
if (process.env.NODE_ENV === "production") module.exports = require_runtime_dom_cjs_prod();
|
|
33191
33268
|
else module.exports = require_runtime_dom_cjs();
|
|
33192
33269
|
}) });
|
|
33193
33270
|
|
|
33194
33271
|
//#endregion
|
|
33195
|
-
//#region ../../node_modules/.pnpm/vue@3.5.
|
|
33196
|
-
var require_vue_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/vue@3.5.
|
|
33272
|
+
//#region ../../node_modules/.pnpm/vue@3.5.21_typescript@5.9.2/node_modules/vue/dist/vue.cjs.prod.js
|
|
33273
|
+
var require_vue_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/vue@3.5.21_typescript@5.9.2/node_modules/vue/dist/vue.cjs.prod.js": ((exports) => {
|
|
33197
33274
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33198
33275
|
var compilerDom$1 = require_compiler_dom();
|
|
33199
33276
|
var runtimeDom$1 = require_runtime_dom();
|
|
@@ -33235,8 +33312,8 @@ var require_vue_cjs_prod = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnp
|
|
|
33235
33312
|
}) });
|
|
33236
33313
|
|
|
33237
33314
|
//#endregion
|
|
33238
|
-
//#region ../../node_modules/.pnpm/vue@3.5.
|
|
33239
|
-
var require_vue_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/vue@3.5.
|
|
33315
|
+
//#region ../../node_modules/.pnpm/vue@3.5.21_typescript@5.9.2/node_modules/vue/dist/vue.cjs.js
|
|
33316
|
+
var require_vue_cjs = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/vue@3.5.21_typescript@5.9.2/node_modules/vue/dist/vue.cjs.js": ((exports) => {
|
|
33240
33317
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
33241
33318
|
var compilerDom = require_compiler_dom();
|
|
33242
33319
|
var runtimeDom = require_runtime_dom();
|
|
@@ -33288,14 +33365,14 @@ ${codeFrame}` : message);
|
|
|
33288
33365
|
}) });
|
|
33289
33366
|
|
|
33290
33367
|
//#endregion
|
|
33291
|
-
//#region ../../node_modules/.pnpm/vue@3.5.
|
|
33292
|
-
var require_vue = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/vue@3.5.
|
|
33368
|
+
//#region ../../node_modules/.pnpm/vue@3.5.21_typescript@5.9.2/node_modules/vue/index.js
|
|
33369
|
+
var require_vue = /* @__PURE__ */ __commonJS({ "../../node_modules/.pnpm/vue@3.5.21_typescript@5.9.2/node_modules/vue/index.js": ((exports, module) => {
|
|
33293
33370
|
if (process.env.NODE_ENV === "production") module.exports = require_vue_cjs_prod();
|
|
33294
33371
|
else module.exports = require_vue_cjs();
|
|
33295
33372
|
}) });
|
|
33296
33373
|
|
|
33297
33374
|
//#endregion
|
|
33298
|
-
//#region ../../node_modules/.pnpm/vue@3.5.
|
|
33375
|
+
//#region ../../node_modules/.pnpm/vue@3.5.21_typescript@5.9.2/node_modules/vue/index.mjs
|
|
33299
33376
|
var vue_exports = {};
|
|
33300
33377
|
__reExport(vue_exports, /* @__PURE__ */ __toESM(require_vue(), 1));
|
|
33301
33378
|
|