@scalar/cli 1.8.3 → 1.8.5
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/docs.html +65 -60
- package/index.js +999 -607
- package/package.json +11 -11
package/index.js
CHANGED
|
@@ -3385,7 +3385,7 @@ var require_Document = __commonJS({
|
|
|
3385
3385
|
var applyReviver = require_applyReviver();
|
|
3386
3386
|
var createNode = require_createNode();
|
|
3387
3387
|
var directives = require_directives();
|
|
3388
|
-
var
|
|
3388
|
+
var Document2 = class _Document {
|
|
3389
3389
|
constructor(value, replacer, options2) {
|
|
3390
3390
|
this.commentBefore = null;
|
|
3391
3391
|
this.comment = null;
|
|
@@ -3675,7 +3675,7 @@ var require_Document = __commonJS({
|
|
|
3675
3675
|
return true;
|
|
3676
3676
|
throw new Error("Expected a YAML collection as document contents");
|
|
3677
3677
|
}
|
|
3678
|
-
exports2.Document =
|
|
3678
|
+
exports2.Document = Document2;
|
|
3679
3679
|
}
|
|
3680
3680
|
});
|
|
3681
3681
|
|
|
@@ -5036,13 +5036,13 @@ var require_compose_node = __commonJS({
|
|
|
5036
5036
|
var require_compose_doc = __commonJS({
|
|
5037
5037
|
"../../node_modules/.pnpm/yaml@2.6.1/node_modules/yaml/dist/compose/compose-doc.js"(exports2) {
|
|
5038
5038
|
"use strict";
|
|
5039
|
-
var
|
|
5039
|
+
var Document2 = require_Document();
|
|
5040
5040
|
var composeNode = require_compose_node();
|
|
5041
5041
|
var resolveEnd = require_resolve_end();
|
|
5042
5042
|
var resolveProps = require_resolve_props();
|
|
5043
5043
|
function composeDoc(options2, directives, { offset, start, value, end }, onError) {
|
|
5044
5044
|
const opts = Object.assign({ _directives: directives }, options2);
|
|
5045
|
-
const doc = new
|
|
5045
|
+
const doc = new Document2.Document(void 0, opts);
|
|
5046
5046
|
const ctx = {
|
|
5047
5047
|
atKey: false,
|
|
5048
5048
|
atRoot: true,
|
|
@@ -5080,7 +5080,7 @@ var require_composer = __commonJS({
|
|
|
5080
5080
|
"../../node_modules/.pnpm/yaml@2.6.1/node_modules/yaml/dist/compose/composer.js"(exports2) {
|
|
5081
5081
|
"use strict";
|
|
5082
5082
|
var directives = require_directives();
|
|
5083
|
-
var
|
|
5083
|
+
var Document2 = require_Document();
|
|
5084
5084
|
var errors = require_errors();
|
|
5085
5085
|
var identity = require_identity();
|
|
5086
5086
|
var composeDoc = require_compose_doc();
|
|
@@ -5267,7 +5267,7 @@ ${end.comment}` : end.comment;
|
|
|
5267
5267
|
this.doc = null;
|
|
5268
5268
|
} else if (forceDoc) {
|
|
5269
5269
|
const opts = Object.assign({ _directives: this.directives }, this.options);
|
|
5270
|
-
const doc = new
|
|
5270
|
+
const doc = new Document2.Document(void 0, opts);
|
|
5271
5271
|
if (this.atDirectives)
|
|
5272
5272
|
this.onError(endOffset, "MISSING_CHAR", "Missing directives-end indicator line");
|
|
5273
5273
|
doc.range = [0, endOffset, endOffset];
|
|
@@ -7161,7 +7161,7 @@ var require_public_api = __commonJS({
|
|
|
7161
7161
|
"../../node_modules/.pnpm/yaml@2.6.1/node_modules/yaml/dist/public-api.js"(exports2) {
|
|
7162
7162
|
"use strict";
|
|
7163
7163
|
var composer = require_composer();
|
|
7164
|
-
var
|
|
7164
|
+
var Document2 = require_Document();
|
|
7165
7165
|
var errors = require_errors();
|
|
7166
7166
|
var log = require_log();
|
|
7167
7167
|
var identity = require_identity();
|
|
@@ -7244,7 +7244,7 @@ var require_public_api = __commonJS({
|
|
|
7244
7244
|
}
|
|
7245
7245
|
if (identity.isDocument(value) && !_replacer)
|
|
7246
7246
|
return value.toString(options2);
|
|
7247
|
-
return new
|
|
7247
|
+
return new Document2.Document(value, _replacer, options2).toString(options2);
|
|
7248
7248
|
}
|
|
7249
7249
|
exports2.parse = parse5;
|
|
7250
7250
|
exports2.parseAllDocuments = parseAllDocuments;
|
|
@@ -7258,7 +7258,7 @@ var require_dist = __commonJS({
|
|
|
7258
7258
|
"../../node_modules/.pnpm/yaml@2.6.1/node_modules/yaml/dist/index.js"(exports2) {
|
|
7259
7259
|
"use strict";
|
|
7260
7260
|
var composer = require_composer();
|
|
7261
|
-
var
|
|
7261
|
+
var Document2 = require_Document();
|
|
7262
7262
|
var Schema = require_Schema();
|
|
7263
7263
|
var errors = require_errors();
|
|
7264
7264
|
var Alias = require_Alias();
|
|
@@ -7274,7 +7274,7 @@ var require_dist = __commonJS({
|
|
|
7274
7274
|
var publicApi = require_public_api();
|
|
7275
7275
|
var visit = require_visit();
|
|
7276
7276
|
exports2.Composer = composer.Composer;
|
|
7277
|
-
exports2.Document =
|
|
7277
|
+
exports2.Document = Document2.Document;
|
|
7278
7278
|
exports2.Schema = Schema.Schema;
|
|
7279
7279
|
exports2.YAMLError = errors.YAMLError;
|
|
7280
7280
|
exports2.YAMLParseError = errors.YAMLParseError;
|
|
@@ -11888,9 +11888,9 @@ var require_gray_matter = __commonJS({
|
|
|
11888
11888
|
}
|
|
11889
11889
|
});
|
|
11890
11890
|
|
|
11891
|
-
// ../../node_modules/.pnpm/@vue+shared@3.5.
|
|
11891
|
+
// ../../node_modules/.pnpm/@vue+shared@3.5.32/node_modules/@vue/shared/dist/shared.cjs.prod.js
|
|
11892
11892
|
var require_shared_cjs_prod = __commonJS({
|
|
11893
|
-
"../../node_modules/.pnpm/@vue+shared@3.5.
|
|
11893
|
+
"../../node_modules/.pnpm/@vue+shared@3.5.32/node_modules/@vue/shared/dist/shared.cjs.prod.js"(exports2) {
|
|
11894
11894
|
"use strict";
|
|
11895
11895
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
11896
11896
|
// @__NO_SIDE_EFFECTS__
|
|
@@ -12477,9 +12477,9 @@ var require_shared_cjs_prod = __commonJS({
|
|
|
12477
12477
|
}
|
|
12478
12478
|
});
|
|
12479
12479
|
|
|
12480
|
-
// ../../node_modules/.pnpm/@vue+shared@3.5.
|
|
12480
|
+
// ../../node_modules/.pnpm/@vue+shared@3.5.32/node_modules/@vue/shared/dist/shared.cjs.js
|
|
12481
12481
|
var require_shared_cjs = __commonJS({
|
|
12482
|
-
"../../node_modules/.pnpm/@vue+shared@3.5.
|
|
12482
|
+
"../../node_modules/.pnpm/@vue+shared@3.5.32/node_modules/@vue/shared/dist/shared.cjs.js"(exports2) {
|
|
12483
12483
|
"use strict";
|
|
12484
12484
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
12485
12485
|
// @__NO_SIDE_EFFECTS__
|
|
@@ -13074,9 +13074,9 @@ var require_shared_cjs = __commonJS({
|
|
|
13074
13074
|
}
|
|
13075
13075
|
});
|
|
13076
13076
|
|
|
13077
|
-
// ../../node_modules/.pnpm/@vue+shared@3.5.
|
|
13077
|
+
// ../../node_modules/.pnpm/@vue+shared@3.5.32/node_modules/@vue/shared/index.js
|
|
13078
13078
|
var require_shared = __commonJS({
|
|
13079
|
-
"../../node_modules/.pnpm/@vue+shared@3.5.
|
|
13079
|
+
"../../node_modules/.pnpm/@vue+shared@3.5.32/node_modules/@vue/shared/index.js"(exports2, module2) {
|
|
13080
13080
|
"use strict";
|
|
13081
13081
|
if (process.env.NODE_ENV === "production") {
|
|
13082
13082
|
module2.exports = require_shared_cjs_prod();
|
|
@@ -13086,9 +13086,9 @@ var require_shared = __commonJS({
|
|
|
13086
13086
|
}
|
|
13087
13087
|
});
|
|
13088
13088
|
|
|
13089
|
-
// ../../node_modules/.pnpm/entities@7.0.
|
|
13089
|
+
// ../../node_modules/.pnpm/entities@7.0.1/node_modules/entities/dist/commonjs/decode-codepoint.js
|
|
13090
13090
|
var require_decode_codepoint = __commonJS({
|
|
13091
|
-
"../../node_modules/.pnpm/entities@7.0.
|
|
13091
|
+
"../../node_modules/.pnpm/entities@7.0.1/node_modules/entities/dist/commonjs/decode-codepoint.js"(exports2) {
|
|
13092
13092
|
"use strict";
|
|
13093
13093
|
var _a2;
|
|
13094
13094
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
@@ -13150,9 +13150,9 @@ var require_decode_codepoint = __commonJS({
|
|
|
13150
13150
|
}
|
|
13151
13151
|
});
|
|
13152
13152
|
|
|
13153
|
-
// ../../node_modules/.pnpm/entities@7.0.
|
|
13153
|
+
// ../../node_modules/.pnpm/entities@7.0.1/node_modules/entities/dist/commonjs/internal/decode-shared.js
|
|
13154
13154
|
var require_decode_shared = __commonJS({
|
|
13155
|
-
"../../node_modules/.pnpm/entities@7.0.
|
|
13155
|
+
"../../node_modules/.pnpm/entities@7.0.1/node_modules/entities/dist/commonjs/internal/decode-shared.js"(exports2) {
|
|
13156
13156
|
"use strict";
|
|
13157
13157
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
13158
13158
|
exports2.decodeBase64 = decodeBase64;
|
|
@@ -13187,9 +13187,9 @@ var require_decode_shared = __commonJS({
|
|
|
13187
13187
|
}
|
|
13188
13188
|
});
|
|
13189
13189
|
|
|
13190
|
-
// ../../node_modules/.pnpm/entities@7.0.
|
|
13190
|
+
// ../../node_modules/.pnpm/entities@7.0.1/node_modules/entities/dist/commonjs/generated/decode-data-html.js
|
|
13191
13191
|
var require_decode_data_html = __commonJS({
|
|
13192
|
-
"../../node_modules/.pnpm/entities@7.0.
|
|
13192
|
+
"../../node_modules/.pnpm/entities@7.0.1/node_modules/entities/dist/commonjs/generated/decode-data-html.js"(exports2) {
|
|
13193
13193
|
"use strict";
|
|
13194
13194
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
13195
13195
|
exports2.htmlDecodeTree = void 0;
|
|
@@ -13198,9 +13198,9 @@ var require_decode_data_html = __commonJS({
|
|
|
13198
13198
|
}
|
|
13199
13199
|
});
|
|
13200
13200
|
|
|
13201
|
-
// ../../node_modules/.pnpm/entities@7.0.
|
|
13201
|
+
// ../../node_modules/.pnpm/entities@7.0.1/node_modules/entities/dist/commonjs/generated/decode-data-xml.js
|
|
13202
13202
|
var require_decode_data_xml = __commonJS({
|
|
13203
|
-
"../../node_modules/.pnpm/entities@7.0.
|
|
13203
|
+
"../../node_modules/.pnpm/entities@7.0.1/node_modules/entities/dist/commonjs/generated/decode-data-xml.js"(exports2) {
|
|
13204
13204
|
"use strict";
|
|
13205
13205
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
13206
13206
|
exports2.xmlDecodeTree = void 0;
|
|
@@ -13209,9 +13209,9 @@ var require_decode_data_xml = __commonJS({
|
|
|
13209
13209
|
}
|
|
13210
13210
|
});
|
|
13211
13211
|
|
|
13212
|
-
// ../../node_modules/.pnpm/entities@7.0.
|
|
13212
|
+
// ../../node_modules/.pnpm/entities@7.0.1/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js
|
|
13213
13213
|
var require_bin_trie_flags = __commonJS({
|
|
13214
|
-
"../../node_modules/.pnpm/entities@7.0.
|
|
13214
|
+
"../../node_modules/.pnpm/entities@7.0.1/node_modules/entities/dist/commonjs/internal/bin-trie-flags.js"(exports2) {
|
|
13215
13215
|
"use strict";
|
|
13216
13216
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
13217
13217
|
exports2.BinTrieFlags = void 0;
|
|
@@ -13225,9 +13225,9 @@ var require_bin_trie_flags = __commonJS({
|
|
|
13225
13225
|
}
|
|
13226
13226
|
});
|
|
13227
13227
|
|
|
13228
|
-
// ../../node_modules/.pnpm/entities@7.0.
|
|
13228
|
+
// ../../node_modules/.pnpm/entities@7.0.1/node_modules/entities/dist/commonjs/decode.js
|
|
13229
13229
|
var require_decode = __commonJS({
|
|
13230
|
-
"../../node_modules/.pnpm/entities@7.0.
|
|
13230
|
+
"../../node_modules/.pnpm/entities@7.0.1/node_modules/entities/dist/commonjs/decode.js"(exports2) {
|
|
13231
13231
|
"use strict";
|
|
13232
13232
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
13233
13233
|
exports2.xmlDecodeTree = exports2.htmlDecodeTree = exports2.replaceCodePoint = exports2.fromCodePoint = exports2.decodeCodePoint = exports2.EntityDecoder = exports2.DecodingMode = void 0;
|
|
@@ -13293,6 +13293,7 @@ var require_decode = __commonJS({
|
|
|
13293
13293
|
this.treeIndex = 0;
|
|
13294
13294
|
this.excess = 1;
|
|
13295
13295
|
this.decodeMode = DecodingMode.Strict;
|
|
13296
|
+
this.runConsumed = 0;
|
|
13296
13297
|
}
|
|
13297
13298
|
/** Resets the instance to make it reusable. */
|
|
13298
13299
|
startEntity(decodeMode) {
|
|
@@ -13302,6 +13303,7 @@ var require_decode = __commonJS({
|
|
|
13302
13303
|
this.treeIndex = 0;
|
|
13303
13304
|
this.excess = 1;
|
|
13304
13305
|
this.consumed = 1;
|
|
13306
|
+
this.runConsumed = 0;
|
|
13305
13307
|
}
|
|
13306
13308
|
/**
|
|
13307
13309
|
* Write an entity to the decoder. This can be called multiple times with partial entities.
|
|
@@ -13454,33 +13456,32 @@ var require_decode = __commonJS({
|
|
|
13454
13456
|
while (offset < input.length) {
|
|
13455
13457
|
if (valueLength === 0 && (current & bin_trie_flags_js_1.BinTrieFlags.FLAG13) !== 0) {
|
|
13456
13458
|
const runLength = (current & bin_trie_flags_js_1.BinTrieFlags.BRANCH_LENGTH) >> 7;
|
|
13457
|
-
|
|
13458
|
-
|
|
13459
|
-
|
|
13460
|
-
if (input.charCodeAt(offset) !== firstChar) {
|
|
13461
|
-
return this.result === 0 ? 0 : this.emitNotTerminatedNamedEntity();
|
|
13462
|
-
}
|
|
13463
|
-
offset++;
|
|
13464
|
-
this.excess++;
|
|
13465
|
-
const remaining = runLength - 1;
|
|
13466
|
-
for (let runPos = 1; runPos < runLength; runPos += 2) {
|
|
13467
|
-
const packedWord = decodeTree[this.treeIndex + 1 + (runPos - 1 >> 1)];
|
|
13468
|
-
const low = packedWord & 255;
|
|
13469
|
-
if (input.charCodeAt(offset) !== low) {
|
|
13459
|
+
if (this.runConsumed === 0) {
|
|
13460
|
+
const firstChar = current & bin_trie_flags_js_1.BinTrieFlags.JUMP_TABLE;
|
|
13461
|
+
if (input.charCodeAt(offset) !== firstChar) {
|
|
13470
13462
|
return this.result === 0 ? 0 : this.emitNotTerminatedNamedEntity();
|
|
13471
13463
|
}
|
|
13472
13464
|
offset++;
|
|
13473
13465
|
this.excess++;
|
|
13474
|
-
|
|
13475
|
-
|
|
13476
|
-
|
|
13477
|
-
|
|
13478
|
-
|
|
13479
|
-
|
|
13480
|
-
|
|
13466
|
+
this.runConsumed++;
|
|
13467
|
+
}
|
|
13468
|
+
while (this.runConsumed < runLength) {
|
|
13469
|
+
if (offset >= input.length) {
|
|
13470
|
+
return -1;
|
|
13471
|
+
}
|
|
13472
|
+
const charIndexInPacked = this.runConsumed - 1;
|
|
13473
|
+
const packedWord = decodeTree[this.treeIndex + 1 + (charIndexInPacked >> 1)];
|
|
13474
|
+
const expectedChar = charIndexInPacked % 2 === 0 ? packedWord & 255 : packedWord >> 8 & 255;
|
|
13475
|
+
if (input.charCodeAt(offset) !== expectedChar) {
|
|
13476
|
+
this.runConsumed = 0;
|
|
13477
|
+
return this.result === 0 ? 0 : this.emitNotTerminatedNamedEntity();
|
|
13481
13478
|
}
|
|
13479
|
+
offset++;
|
|
13480
|
+
this.excess++;
|
|
13481
|
+
this.runConsumed++;
|
|
13482
13482
|
}
|
|
13483
|
-
this.
|
|
13483
|
+
this.runConsumed = 0;
|
|
13484
|
+
this.treeIndex += 1 + (runLength >> 1);
|
|
13484
13485
|
current = decodeTree[this.treeIndex];
|
|
13485
13486
|
valueLength = (current & bin_trie_flags_js_1.BinTrieFlags.VALUE_LENGTH) >> 14;
|
|
13486
13487
|
}
|
|
@@ -13664,9 +13665,9 @@ var require_decode = __commonJS({
|
|
|
13664
13665
|
}
|
|
13665
13666
|
});
|
|
13666
13667
|
|
|
13667
|
-
// ../../node_modules/.pnpm/@babel+parser@7.
|
|
13668
|
+
// ../../node_modules/.pnpm/@babel+parser@7.29.2/node_modules/@babel/parser/lib/index.js
|
|
13668
13669
|
var require_lib2 = __commonJS({
|
|
13669
|
-
"../../node_modules/.pnpm/@babel+parser@7.
|
|
13670
|
+
"../../node_modules/.pnpm/@babel+parser@7.29.2/node_modules/@babel/parser/lib/index.js"(exports2) {
|
|
13670
13671
|
"use strict";
|
|
13671
13672
|
Object.defineProperty(exports2, "__esModule", {
|
|
13672
13673
|
value: true
|
|
@@ -22907,7 +22908,7 @@ var require_lib2 = __commonJS({
|
|
|
22907
22908
|
return this.finishCallExpression(node2, state.optionalChainMember);
|
|
22908
22909
|
}
|
|
22909
22910
|
const tokenType = this.state.type;
|
|
22910
|
-
if (tokenType === 48 || tokenType === 52 || tokenType !== 10 && tokenCanStartExpression(tokenType) && !this.hasPrecedingLineBreak()) {
|
|
22911
|
+
if (tokenType === 48 || tokenType === 52 || tokenType !== 10 && tokenType !== 93 && tokenType !== 120 && tokenCanStartExpression(tokenType) && !this.hasPrecedingLineBreak()) {
|
|
22911
22912
|
return;
|
|
22912
22913
|
}
|
|
22913
22914
|
const node = this.startNodeAt(startLoc);
|
|
@@ -23376,8 +23377,18 @@ var require_lib2 = __commonJS({
|
|
|
23376
23377
|
}
|
|
23377
23378
|
parseClassSuper(node) {
|
|
23378
23379
|
super.parseClassSuper(node);
|
|
23379
|
-
if (node.superClass
|
|
23380
|
-
node.
|
|
23380
|
+
if (node.superClass) {
|
|
23381
|
+
if (node.superClass.type === "TSInstantiationExpression") {
|
|
23382
|
+
const tsInstantiationExpression = node.superClass;
|
|
23383
|
+
const superClass2 = tsInstantiationExpression.expression;
|
|
23384
|
+
this.takeSurroundingComments(superClass2, superClass2.start, superClass2.end);
|
|
23385
|
+
const superTypeArguments = tsInstantiationExpression.typeParameters;
|
|
23386
|
+
this.takeSurroundingComments(superTypeArguments, superTypeArguments.start, superTypeArguments.end);
|
|
23387
|
+
node.superClass = superClass2;
|
|
23388
|
+
node.superTypeParameters = superTypeArguments;
|
|
23389
|
+
} else if (this.match(47) || this.match(51)) {
|
|
23390
|
+
node.superTypeParameters = this.tsParseTypeArgumentsInExpression();
|
|
23391
|
+
}
|
|
23381
23392
|
}
|
|
23382
23393
|
if (this.eatContextual(113)) {
|
|
23383
23394
|
node.implements = this.tsParseHeritageClause("implements");
|
|
@@ -25057,7 +25068,7 @@ var require_lib2 = __commonJS({
|
|
|
25057
25068
|
this.next();
|
|
25058
25069
|
return this.parseAsyncFunctionExpression(this.startNodeAtNode(id));
|
|
25059
25070
|
} else if (tokenIsIdentifier(type2)) {
|
|
25060
|
-
if (this.lookaheadCharCode() === 61) {
|
|
25071
|
+
if (canBeArrow && this.lookaheadCharCode() === 61) {
|
|
25061
25072
|
return this.parseAsyncArrowUnaryFunction(this.startNodeAtNode(id));
|
|
25062
25073
|
} else {
|
|
25063
25074
|
return id;
|
|
@@ -30344,9 +30355,9 @@ var require_source_map = __commonJS({
|
|
|
30344
30355
|
}
|
|
30345
30356
|
});
|
|
30346
30357
|
|
|
30347
|
-
// ../../node_modules/.pnpm/@vue+compiler-core@3.5.
|
|
30358
|
+
// ../../node_modules/.pnpm/@vue+compiler-core@3.5.32/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js
|
|
30348
30359
|
var require_compiler_core_cjs_prod = __commonJS({
|
|
30349
|
-
"../../node_modules/.pnpm/@vue+compiler-core@3.5.
|
|
30360
|
+
"../../node_modules/.pnpm/@vue+compiler-core@3.5.32/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js"(exports2) {
|
|
30350
30361
|
"use strict";
|
|
30351
30362
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
30352
30363
|
var shared = require_shared();
|
|
@@ -35293,7 +35304,7 @@ const ${helpers.map((s) => `_${helperNameMap[s]} = ${helperNameMap[s]}`).join(",
|
|
|
35293
35304
|
loop.body = createBlockStatement([
|
|
35294
35305
|
createCompoundExpression([`const _memo = (`, memo.exp, `)`]),
|
|
35295
35306
|
createCompoundExpression([
|
|
35296
|
-
`if (_cached`,
|
|
35307
|
+
`if (_cached && _cached.el`,
|
|
35297
35308
|
...keyExp ? [` && _cached.key === `, keyExp] : [],
|
|
35298
35309
|
` && ${context.helperString(
|
|
35299
35310
|
IS_MEMO_SAME
|
|
@@ -37111,9 +37122,9 @@ const ${helpers.map((s) => `_${helperNameMap[s]} = ${helperNameMap[s]}`).join(",
|
|
|
37111
37122
|
}
|
|
37112
37123
|
});
|
|
37113
37124
|
|
|
37114
|
-
// ../../node_modules/.pnpm/@vue+compiler-core@3.5.
|
|
37125
|
+
// ../../node_modules/.pnpm/@vue+compiler-core@3.5.32/node_modules/@vue/compiler-core/dist/compiler-core.cjs.js
|
|
37115
37126
|
var require_compiler_core_cjs = __commonJS({
|
|
37116
|
-
"../../node_modules/.pnpm/@vue+compiler-core@3.5.
|
|
37127
|
+
"../../node_modules/.pnpm/@vue+compiler-core@3.5.32/node_modules/@vue/compiler-core/dist/compiler-core.cjs.js"(exports2) {
|
|
37117
37128
|
"use strict";
|
|
37118
37129
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
37119
37130
|
var shared = require_shared();
|
|
@@ -42146,7 +42157,7 @@ const ${helpers.map((s) => `_${helperNameMap[s]} = ${helperNameMap[s]}`).join(",
|
|
|
42146
42157
|
loop.body = createBlockStatement([
|
|
42147
42158
|
createCompoundExpression([`const _memo = (`, memo.exp, `)`]),
|
|
42148
42159
|
createCompoundExpression([
|
|
42149
|
-
`if (_cached`,
|
|
42160
|
+
`if (_cached && _cached.el`,
|
|
42150
42161
|
...keyExp ? [` && _cached.key === `, keyExp] : [],
|
|
42151
42162
|
` && ${context.helperString(
|
|
42152
42163
|
IS_MEMO_SAME
|
|
@@ -44002,9 +44013,9 @@ const ${helpers.map((s) => `_${helperNameMap[s]} = ${helperNameMap[s]}`).join(",
|
|
|
44002
44013
|
}
|
|
44003
44014
|
});
|
|
44004
44015
|
|
|
44005
|
-
// ../../node_modules/.pnpm/@vue+compiler-core@3.5.
|
|
44016
|
+
// ../../node_modules/.pnpm/@vue+compiler-core@3.5.32/node_modules/@vue/compiler-core/index.js
|
|
44006
44017
|
var require_compiler_core = __commonJS({
|
|
44007
|
-
"../../node_modules/.pnpm/@vue+compiler-core@3.5.
|
|
44018
|
+
"../../node_modules/.pnpm/@vue+compiler-core@3.5.32/node_modules/@vue/compiler-core/index.js"(exports2, module2) {
|
|
44008
44019
|
"use strict";
|
|
44009
44020
|
if (process.env.NODE_ENV === "production") {
|
|
44010
44021
|
module2.exports = require_compiler_core_cjs_prod();
|
|
@@ -44014,9 +44025,9 @@ var require_compiler_core = __commonJS({
|
|
|
44014
44025
|
}
|
|
44015
44026
|
});
|
|
44016
44027
|
|
|
44017
|
-
// ../../node_modules/.pnpm/@vue+compiler-dom@3.5.
|
|
44028
|
+
// ../../node_modules/.pnpm/@vue+compiler-dom@3.5.32/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js
|
|
44018
44029
|
var require_compiler_dom_cjs_prod = __commonJS({
|
|
44019
|
-
"../../node_modules/.pnpm/@vue+compiler-dom@3.5.
|
|
44030
|
+
"../../node_modules/.pnpm/@vue+compiler-dom@3.5.32/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js"(exports2) {
|
|
44020
44031
|
"use strict";
|
|
44021
44032
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44022
44033
|
var compilerCore = require_compiler_core();
|
|
@@ -44689,9 +44700,9 @@ var require_compiler_dom_cjs_prod = __commonJS({
|
|
|
44689
44700
|
}
|
|
44690
44701
|
});
|
|
44691
44702
|
|
|
44692
|
-
// ../../node_modules/.pnpm/@vue+compiler-dom@3.5.
|
|
44703
|
+
// ../../node_modules/.pnpm/@vue+compiler-dom@3.5.32/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.js
|
|
44693
44704
|
var require_compiler_dom_cjs = __commonJS({
|
|
44694
|
-
"../../node_modules/.pnpm/@vue+compiler-dom@3.5.
|
|
44705
|
+
"../../node_modules/.pnpm/@vue+compiler-dom@3.5.32/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.js"(exports2) {
|
|
44695
44706
|
"use strict";
|
|
44696
44707
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
44697
44708
|
var compilerCore = require_compiler_core();
|
|
@@ -45606,9 +45617,9 @@ var require_compiler_dom_cjs = __commonJS({
|
|
|
45606
45617
|
}
|
|
45607
45618
|
});
|
|
45608
45619
|
|
|
45609
|
-
// ../../node_modules/.pnpm/@vue+compiler-dom@3.5.
|
|
45620
|
+
// ../../node_modules/.pnpm/@vue+compiler-dom@3.5.32/node_modules/@vue/compiler-dom/index.js
|
|
45610
45621
|
var require_compiler_dom = __commonJS({
|
|
45611
|
-
"../../node_modules/.pnpm/@vue+compiler-dom@3.5.
|
|
45622
|
+
"../../node_modules/.pnpm/@vue+compiler-dom@3.5.32/node_modules/@vue/compiler-dom/index.js"(exports2, module2) {
|
|
45612
45623
|
"use strict";
|
|
45613
45624
|
if (process.env.NODE_ENV === "production") {
|
|
45614
45625
|
module2.exports = require_compiler_dom_cjs_prod();
|
|
@@ -45618,14 +45629,15 @@ var require_compiler_dom = __commonJS({
|
|
|
45618
45629
|
}
|
|
45619
45630
|
});
|
|
45620
45631
|
|
|
45621
|
-
// ../../node_modules/.pnpm/@vue+reactivity@3.5.
|
|
45632
|
+
// ../../node_modules/.pnpm/@vue+reactivity@3.5.32/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js
|
|
45622
45633
|
var require_reactivity_cjs_prod = __commonJS({
|
|
45623
|
-
"../../node_modules/.pnpm/@vue+reactivity@3.5.
|
|
45634
|
+
"../../node_modules/.pnpm/@vue+reactivity@3.5.32/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js"(exports2) {
|
|
45624
45635
|
"use strict";
|
|
45625
45636
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
45626
45637
|
var shared = require_shared();
|
|
45627
45638
|
var activeEffectScope;
|
|
45628
45639
|
var EffectScope = class {
|
|
45640
|
+
// TODO isolatedDeclarations "__v_skip"
|
|
45629
45641
|
constructor(detached = false) {
|
|
45630
45642
|
this.detached = detached;
|
|
45631
45643
|
this._active = true;
|
|
@@ -45633,6 +45645,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
45633
45645
|
this.effects = [];
|
|
45634
45646
|
this.cleanups = [];
|
|
45635
45647
|
this._isPaused = false;
|
|
45648
|
+
this.__v_skip = true;
|
|
45636
45649
|
this.parent = activeEffectScope;
|
|
45637
45650
|
if (!detached && activeEffectScope) {
|
|
45638
45651
|
this.index = (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(
|
|
@@ -46254,18 +46267,18 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46254
46267
|
return depMap && depMap.get(key);
|
|
46255
46268
|
}
|
|
46256
46269
|
function reactiveReadArray(array2) {
|
|
46257
|
-
const raw = toRaw(array2);
|
|
46270
|
+
const raw = /* @__PURE__ */ toRaw(array2);
|
|
46258
46271
|
if (raw === array2) return raw;
|
|
46259
46272
|
track(raw, "iterate", ARRAY_ITERATE_KEY);
|
|
46260
|
-
return isShallow(array2) ? raw : raw.map(toReactive);
|
|
46273
|
+
return /* @__PURE__ */ isShallow(array2) ? raw : raw.map(toReactive);
|
|
46261
46274
|
}
|
|
46262
46275
|
function shallowReadArray(arr) {
|
|
46263
|
-
track(arr = toRaw(arr), "iterate", ARRAY_ITERATE_KEY);
|
|
46276
|
+
track(arr = /* @__PURE__ */ toRaw(arr), "iterate", ARRAY_ITERATE_KEY);
|
|
46264
46277
|
return arr;
|
|
46265
46278
|
}
|
|
46266
46279
|
function toWrapped(target, item) {
|
|
46267
|
-
if (isReadonly(target)) {
|
|
46268
|
-
return isReactive(target) ? toReadonly(toReactive(item)) : toReadonly(item);
|
|
46280
|
+
if (/* @__PURE__ */ isReadonly(target)) {
|
|
46281
|
+
return /* @__PURE__ */ isReactive(target) ? toReadonly(toReactive(item)) : toReadonly(item);
|
|
46269
46282
|
}
|
|
46270
46283
|
return toReactive(item);
|
|
46271
46284
|
}
|
|
@@ -46385,7 +46398,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46385
46398
|
function iterator(self2, method, wrapValue) {
|
|
46386
46399
|
const arr = shallowReadArray(self2);
|
|
46387
46400
|
const iter = arr[method]();
|
|
46388
|
-
if (arr !== self2 &&
|
|
46401
|
+
if (arr !== self2 && !/* @__PURE__ */ isShallow(self2)) {
|
|
46389
46402
|
iter._next = iter.next;
|
|
46390
46403
|
iter.next = () => {
|
|
46391
46404
|
const result = iter._next();
|
|
@@ -46400,7 +46413,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46400
46413
|
var arrayProto = Array.prototype;
|
|
46401
46414
|
function apply(self2, method, fn, thisArg, wrappedRetFn, args) {
|
|
46402
46415
|
const arr = shallowReadArray(self2);
|
|
46403
|
-
const needsWrap = arr !== self2 &&
|
|
46416
|
+
const needsWrap = arr !== self2 && !/* @__PURE__ */ isShallow(self2);
|
|
46404
46417
|
const methodFn = arr[method];
|
|
46405
46418
|
if (methodFn !== arrayProto[method]) {
|
|
46406
46419
|
const result2 = methodFn.apply(self2, args);
|
|
@@ -46423,10 +46436,17 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46423
46436
|
}
|
|
46424
46437
|
function reduce(self2, method, fn, args) {
|
|
46425
46438
|
const arr = shallowReadArray(self2);
|
|
46439
|
+
const needsWrap = arr !== self2 && !/* @__PURE__ */ isShallow(self2);
|
|
46426
46440
|
let wrappedFn = fn;
|
|
46441
|
+
let wrapInitialAccumulator = false;
|
|
46427
46442
|
if (arr !== self2) {
|
|
46428
|
-
if (
|
|
46443
|
+
if (needsWrap) {
|
|
46444
|
+
wrapInitialAccumulator = args.length === 0;
|
|
46429
46445
|
wrappedFn = function(acc, item, index) {
|
|
46446
|
+
if (wrapInitialAccumulator) {
|
|
46447
|
+
wrapInitialAccumulator = false;
|
|
46448
|
+
acc = toWrapped(self2, acc);
|
|
46449
|
+
}
|
|
46430
46450
|
return fn.call(this, acc, toWrapped(self2, item), index, self2);
|
|
46431
46451
|
};
|
|
46432
46452
|
} else if (fn.length > 3) {
|
|
@@ -46435,14 +46455,15 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46435
46455
|
};
|
|
46436
46456
|
}
|
|
46437
46457
|
}
|
|
46438
|
-
|
|
46458
|
+
const result = arr[method](wrappedFn, ...args);
|
|
46459
|
+
return wrapInitialAccumulator ? toWrapped(self2, result) : result;
|
|
46439
46460
|
}
|
|
46440
46461
|
function searchProxy(self2, method, args) {
|
|
46441
|
-
const arr = toRaw(self2);
|
|
46462
|
+
const arr = /* @__PURE__ */ toRaw(self2);
|
|
46442
46463
|
track(arr, "iterate", ARRAY_ITERATE_KEY);
|
|
46443
46464
|
const res = arr[method](...args);
|
|
46444
|
-
if ((res === -1 || res === false) && isProxy(args[0])) {
|
|
46445
|
-
args[0] = toRaw(args[0]);
|
|
46465
|
+
if ((res === -1 || res === false) && /* @__PURE__ */ isProxy(args[0])) {
|
|
46466
|
+
args[0] = /* @__PURE__ */ toRaw(args[0]);
|
|
46446
46467
|
return arr[method](...args);
|
|
46447
46468
|
}
|
|
46448
46469
|
return res;
|
|
@@ -46450,7 +46471,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46450
46471
|
function noTracking(self2, method, args = []) {
|
|
46451
46472
|
pauseTracking();
|
|
46452
46473
|
startBatch();
|
|
46453
|
-
const res = toRaw(self2)[method].apply(self2, args);
|
|
46474
|
+
const res = (/* @__PURE__ */ toRaw(self2))[method].apply(self2, args);
|
|
46454
46475
|
endBatch();
|
|
46455
46476
|
resetTracking();
|
|
46456
46477
|
return res;
|
|
@@ -46461,7 +46482,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46461
46482
|
);
|
|
46462
46483
|
function hasOwnProperty2(key) {
|
|
46463
46484
|
if (!shared.isSymbol(key)) key = String(key);
|
|
46464
|
-
const obj = toRaw(this);
|
|
46485
|
+
const obj = /* @__PURE__ */ toRaw(this);
|
|
46465
46486
|
track(obj, "has", key);
|
|
46466
46487
|
return obj.hasOwnProperty(key);
|
|
46467
46488
|
}
|
|
@@ -46503,7 +46524,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46503
46524
|
// if this is a proxy wrapping a ref, return methods using the raw ref
|
|
46504
46525
|
// as receiver so that we don't have to call `toRaw` on the ref in all
|
|
46505
46526
|
// its class methods
|
|
46506
|
-
isRef(target) ? target : receiver
|
|
46527
|
+
/* @__PURE__ */ isRef(target) ? target : receiver
|
|
46507
46528
|
);
|
|
46508
46529
|
if (shared.isSymbol(key) ? builtInSymbols.has(key) : isNonTrackableKeys(key)) {
|
|
46509
46530
|
return res;
|
|
@@ -46514,12 +46535,12 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46514
46535
|
if (isShallow2) {
|
|
46515
46536
|
return res;
|
|
46516
46537
|
}
|
|
46517
|
-
if (isRef(res)) {
|
|
46538
|
+
if (/* @__PURE__ */ isRef(res)) {
|
|
46518
46539
|
const value = targetIsArray && shared.isIntegerKey(key) ? res : res.value;
|
|
46519
|
-
return isReadonly2 && shared.isObject(value) ? readonly2(value) : value;
|
|
46540
|
+
return isReadonly2 && shared.isObject(value) ? /* @__PURE__ */ readonly2(value) : value;
|
|
46520
46541
|
}
|
|
46521
46542
|
if (shared.isObject(res)) {
|
|
46522
|
-
return isReadonly2 ? readonly2(res) : reactive(res);
|
|
46543
|
+
return isReadonly2 ? /* @__PURE__ */ readonly2(res) : /* @__PURE__ */ reactive(res);
|
|
46523
46544
|
}
|
|
46524
46545
|
return res;
|
|
46525
46546
|
}
|
|
@@ -46532,12 +46553,12 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46532
46553
|
let oldValue = target[key];
|
|
46533
46554
|
const isArrayWithIntegerKey = shared.isArray(target) && shared.isIntegerKey(key);
|
|
46534
46555
|
if (!this._isShallow) {
|
|
46535
|
-
const isOldValueReadonly = isReadonly(oldValue);
|
|
46536
|
-
if (
|
|
46537
|
-
oldValue = toRaw(oldValue);
|
|
46538
|
-
value = toRaw(value);
|
|
46556
|
+
const isOldValueReadonly = /* @__PURE__ */ isReadonly(oldValue);
|
|
46557
|
+
if (!/* @__PURE__ */ isShallow(value) && !/* @__PURE__ */ isReadonly(value)) {
|
|
46558
|
+
oldValue = /* @__PURE__ */ toRaw(oldValue);
|
|
46559
|
+
value = /* @__PURE__ */ toRaw(value);
|
|
46539
46560
|
}
|
|
46540
|
-
if (!isArrayWithIntegerKey && isRef(oldValue) &&
|
|
46561
|
+
if (!isArrayWithIntegerKey && /* @__PURE__ */ isRef(oldValue) && !/* @__PURE__ */ isRef(value)) {
|
|
46541
46562
|
if (isOldValueReadonly) {
|
|
46542
46563
|
return true;
|
|
46543
46564
|
} else {
|
|
@@ -46551,9 +46572,9 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46551
46572
|
target,
|
|
46552
46573
|
key,
|
|
46553
46574
|
value,
|
|
46554
|
-
isRef(target) ? target : receiver
|
|
46575
|
+
/* @__PURE__ */ isRef(target) ? target : receiver
|
|
46555
46576
|
);
|
|
46556
|
-
if (target === toRaw(receiver)) {
|
|
46577
|
+
if (target === /* @__PURE__ */ toRaw(receiver)) {
|
|
46557
46578
|
if (!hadKey) {
|
|
46558
46579
|
trigger(target, "add", key, value);
|
|
46559
46580
|
} else if (shared.hasChanged(value, oldValue)) {
|
|
@@ -46607,7 +46628,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46607
46628
|
function createIterableMethod(method, isReadonly2, isShallow2) {
|
|
46608
46629
|
return function(...args) {
|
|
46609
46630
|
const target = this["__v_raw"];
|
|
46610
|
-
const rawTarget = toRaw(target);
|
|
46631
|
+
const rawTarget = /* @__PURE__ */ toRaw(target);
|
|
46611
46632
|
const targetIsMap = shared.isMap(rawTarget);
|
|
46612
46633
|
const isPair = method === "entries" || method === Symbol.iterator && targetIsMap;
|
|
46613
46634
|
const isKeyOnly = method === "keys" && targetIsMap;
|
|
@@ -46618,20 +46639,20 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46618
46639
|
"iterate",
|
|
46619
46640
|
isKeyOnly ? MAP_KEY_ITERATE_KEY : ITERATE_KEY
|
|
46620
46641
|
);
|
|
46621
|
-
return
|
|
46622
|
-
// iterator
|
|
46623
|
-
|
|
46624
|
-
|
|
46625
|
-
|
|
46626
|
-
|
|
46627
|
-
done
|
|
46628
|
-
|
|
46629
|
-
|
|
46630
|
-
|
|
46631
|
-
|
|
46632
|
-
|
|
46642
|
+
return shared.extend(
|
|
46643
|
+
// inheriting all iterator properties
|
|
46644
|
+
Object.create(innerIterator),
|
|
46645
|
+
{
|
|
46646
|
+
// iterator protocol
|
|
46647
|
+
next() {
|
|
46648
|
+
const { value, done } = innerIterator.next();
|
|
46649
|
+
return done ? { value, done } : {
|
|
46650
|
+
value: isPair ? [wrap2(value[0]), wrap2(value[1])] : wrap2(value),
|
|
46651
|
+
done
|
|
46652
|
+
};
|
|
46653
|
+
}
|
|
46633
46654
|
}
|
|
46634
|
-
|
|
46655
|
+
);
|
|
46635
46656
|
};
|
|
46636
46657
|
}
|
|
46637
46658
|
function createReadonlyMethod(type) {
|
|
@@ -46643,8 +46664,8 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46643
46664
|
const instrumentations = {
|
|
46644
46665
|
get(key) {
|
|
46645
46666
|
const target = this["__v_raw"];
|
|
46646
|
-
const rawTarget = toRaw(target);
|
|
46647
|
-
const rawKey = toRaw(key);
|
|
46667
|
+
const rawTarget = /* @__PURE__ */ toRaw(target);
|
|
46668
|
+
const rawKey = /* @__PURE__ */ toRaw(key);
|
|
46648
46669
|
if (!readonly3) {
|
|
46649
46670
|
if (shared.hasChanged(key, rawKey)) {
|
|
46650
46671
|
track(rawTarget, "get", key);
|
|
@@ -46663,13 +46684,13 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46663
46684
|
},
|
|
46664
46685
|
get size() {
|
|
46665
46686
|
const target = this["__v_raw"];
|
|
46666
|
-
!readonly3 && track(toRaw(target), "iterate", ITERATE_KEY);
|
|
46687
|
+
!readonly3 && track(/* @__PURE__ */ toRaw(target), "iterate", ITERATE_KEY);
|
|
46667
46688
|
return target.size;
|
|
46668
46689
|
},
|
|
46669
46690
|
has(key) {
|
|
46670
46691
|
const target = this["__v_raw"];
|
|
46671
|
-
const rawTarget = toRaw(target);
|
|
46672
|
-
const rawKey = toRaw(key);
|
|
46692
|
+
const rawTarget = /* @__PURE__ */ toRaw(target);
|
|
46693
|
+
const rawKey = /* @__PURE__ */ toRaw(key);
|
|
46673
46694
|
if (!readonly3) {
|
|
46674
46695
|
if (shared.hasChanged(key, rawKey)) {
|
|
46675
46696
|
track(rawTarget, "has", key);
|
|
@@ -46681,7 +46702,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46681
46702
|
forEach(callback, thisArg) {
|
|
46682
46703
|
const observed = this;
|
|
46683
46704
|
const target = observed["__v_raw"];
|
|
46684
|
-
const rawTarget = toRaw(target);
|
|
46705
|
+
const rawTarget = /* @__PURE__ */ toRaw(target);
|
|
46685
46706
|
const wrap2 = shallow ? toShallow : readonly3 ? toReadonly : toReactive;
|
|
46686
46707
|
!readonly3 && track(rawTarget, "iterate", ITERATE_KEY);
|
|
46687
46708
|
return target.forEach((value, key) => {
|
|
@@ -46698,27 +46719,26 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46698
46719
|
clear: createReadonlyMethod("clear")
|
|
46699
46720
|
} : {
|
|
46700
46721
|
add(value) {
|
|
46701
|
-
|
|
46702
|
-
value = toRaw(value);
|
|
46703
|
-
}
|
|
46704
|
-
const target = toRaw(this);
|
|
46722
|
+
const target = /* @__PURE__ */ toRaw(this);
|
|
46705
46723
|
const proto = getProto(target);
|
|
46706
|
-
const
|
|
46724
|
+
const rawValue = /* @__PURE__ */ toRaw(value);
|
|
46725
|
+
const valueToAdd = !shallow && !/* @__PURE__ */ isShallow(value) && !/* @__PURE__ */ isReadonly(value) ? rawValue : value;
|
|
46726
|
+
const hadKey = proto.has.call(target, valueToAdd) || shared.hasChanged(value, valueToAdd) && proto.has.call(target, value) || shared.hasChanged(rawValue, valueToAdd) && proto.has.call(target, rawValue);
|
|
46707
46727
|
if (!hadKey) {
|
|
46708
|
-
target.add(
|
|
46709
|
-
trigger(target, "add",
|
|
46728
|
+
target.add(valueToAdd);
|
|
46729
|
+
trigger(target, "add", valueToAdd, valueToAdd);
|
|
46710
46730
|
}
|
|
46711
46731
|
return this;
|
|
46712
46732
|
},
|
|
46713
46733
|
set(key, value) {
|
|
46714
|
-
if (!shallow &&
|
|
46715
|
-
value = toRaw(value);
|
|
46734
|
+
if (!shallow && !/* @__PURE__ */ isShallow(value) && !/* @__PURE__ */ isReadonly(value)) {
|
|
46735
|
+
value = /* @__PURE__ */ toRaw(value);
|
|
46716
46736
|
}
|
|
46717
|
-
const target = toRaw(this);
|
|
46737
|
+
const target = /* @__PURE__ */ toRaw(this);
|
|
46718
46738
|
const { has, get } = getProto(target);
|
|
46719
46739
|
let hadKey = has.call(target, key);
|
|
46720
46740
|
if (!hadKey) {
|
|
46721
|
-
key = toRaw(key);
|
|
46741
|
+
key = /* @__PURE__ */ toRaw(key);
|
|
46722
46742
|
hadKey = has.call(target, key);
|
|
46723
46743
|
}
|
|
46724
46744
|
const oldValue = get.call(target, key);
|
|
@@ -46731,11 +46751,11 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46731
46751
|
return this;
|
|
46732
46752
|
},
|
|
46733
46753
|
delete(key) {
|
|
46734
|
-
const target = toRaw(this);
|
|
46754
|
+
const target = /* @__PURE__ */ toRaw(this);
|
|
46735
46755
|
const { has, get } = getProto(target);
|
|
46736
46756
|
let hadKey = has.call(target, key);
|
|
46737
46757
|
if (!hadKey) {
|
|
46738
|
-
key = toRaw(key);
|
|
46758
|
+
key = /* @__PURE__ */ toRaw(key);
|
|
46739
46759
|
hadKey = has.call(target, key);
|
|
46740
46760
|
}
|
|
46741
46761
|
get ? get.call(target, key) : void 0;
|
|
@@ -46746,7 +46766,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46746
46766
|
return result;
|
|
46747
46767
|
},
|
|
46748
46768
|
clear() {
|
|
46749
|
-
const target = toRaw(this);
|
|
46769
|
+
const target = /* @__PURE__ */ toRaw(this);
|
|
46750
46770
|
const hadItems = target.size !== 0;
|
|
46751
46771
|
const result = target.clear();
|
|
46752
46772
|
if (hadItems) {
|
|
@@ -46822,8 +46842,9 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46822
46842
|
function getTargetType(value) {
|
|
46823
46843
|
return value["__v_skip"] || !Object.isExtensible(value) ? 0 : targetTypeMap(shared.toRawType(value));
|
|
46824
46844
|
}
|
|
46845
|
+
// @__NO_SIDE_EFFECTS__
|
|
46825
46846
|
function reactive(target) {
|
|
46826
|
-
if (isReadonly(target)) {
|
|
46847
|
+
if (/* @__PURE__ */ isReadonly(target)) {
|
|
46827
46848
|
return target;
|
|
46828
46849
|
}
|
|
46829
46850
|
return createReactiveObject(
|
|
@@ -46834,6 +46855,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46834
46855
|
reactiveMap
|
|
46835
46856
|
);
|
|
46836
46857
|
}
|
|
46858
|
+
// @__NO_SIDE_EFFECTS__
|
|
46837
46859
|
function shallowReactive(target) {
|
|
46838
46860
|
return createReactiveObject(
|
|
46839
46861
|
target,
|
|
@@ -46843,6 +46865,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46843
46865
|
shallowReactiveMap
|
|
46844
46866
|
);
|
|
46845
46867
|
}
|
|
46868
|
+
// @__NO_SIDE_EFFECTS__
|
|
46846
46869
|
function readonly2(target) {
|
|
46847
46870
|
return createReactiveObject(
|
|
46848
46871
|
target,
|
|
@@ -46852,6 +46875,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46852
46875
|
readonlyMap
|
|
46853
46876
|
);
|
|
46854
46877
|
}
|
|
46878
|
+
// @__NO_SIDE_EFFECTS__
|
|
46855
46879
|
function shallowReadonly2(target) {
|
|
46856
46880
|
return createReactiveObject(
|
|
46857
46881
|
target,
|
|
@@ -46883,24 +46907,29 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46883
46907
|
proxyMap.set(target, proxy);
|
|
46884
46908
|
return proxy;
|
|
46885
46909
|
}
|
|
46910
|
+
// @__NO_SIDE_EFFECTS__
|
|
46886
46911
|
function isReactive(value) {
|
|
46887
|
-
if (isReadonly(value)) {
|
|
46888
|
-
return isReactive(value["__v_raw"]);
|
|
46912
|
+
if (/* @__PURE__ */ isReadonly(value)) {
|
|
46913
|
+
return /* @__PURE__ */ isReactive(value["__v_raw"]);
|
|
46889
46914
|
}
|
|
46890
46915
|
return !!(value && value["__v_isReactive"]);
|
|
46891
46916
|
}
|
|
46917
|
+
// @__NO_SIDE_EFFECTS__
|
|
46892
46918
|
function isReadonly(value) {
|
|
46893
46919
|
return !!(value && value["__v_isReadonly"]);
|
|
46894
46920
|
}
|
|
46921
|
+
// @__NO_SIDE_EFFECTS__
|
|
46895
46922
|
function isShallow(value) {
|
|
46896
46923
|
return !!(value && value["__v_isShallow"]);
|
|
46897
46924
|
}
|
|
46925
|
+
// @__NO_SIDE_EFFECTS__
|
|
46898
46926
|
function isProxy(value) {
|
|
46899
46927
|
return value ? !!value["__v_raw"] : false;
|
|
46900
46928
|
}
|
|
46929
|
+
// @__NO_SIDE_EFFECTS__
|
|
46901
46930
|
function toRaw(observed) {
|
|
46902
46931
|
const raw = observed && observed["__v_raw"];
|
|
46903
|
-
return raw ? toRaw(raw) : observed;
|
|
46932
|
+
return raw ? /* @__PURE__ */ toRaw(raw) : observed;
|
|
46904
46933
|
}
|
|
46905
46934
|
function markRaw(value) {
|
|
46906
46935
|
if (!shared.hasOwn(value, "__v_skip") && Object.isExtensible(value)) {
|
|
@@ -46908,19 +46937,22 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46908
46937
|
}
|
|
46909
46938
|
return value;
|
|
46910
46939
|
}
|
|
46911
|
-
var toReactive = (value) => shared.isObject(value) ? reactive(value) : value;
|
|
46912
|
-
var toReadonly = (value) => shared.isObject(value) ? readonly2(value) : value;
|
|
46940
|
+
var toReactive = (value) => shared.isObject(value) ? /* @__PURE__ */ reactive(value) : value;
|
|
46941
|
+
var toReadonly = (value) => shared.isObject(value) ? /* @__PURE__ */ readonly2(value) : value;
|
|
46942
|
+
// @__NO_SIDE_EFFECTS__
|
|
46913
46943
|
function isRef(r) {
|
|
46914
46944
|
return r ? r["__v_isRef"] === true : false;
|
|
46915
46945
|
}
|
|
46946
|
+
// @__NO_SIDE_EFFECTS__
|
|
46916
46947
|
function ref(value) {
|
|
46917
46948
|
return createRef(value, false);
|
|
46918
46949
|
}
|
|
46950
|
+
// @__NO_SIDE_EFFECTS__
|
|
46919
46951
|
function shallowRef(value) {
|
|
46920
46952
|
return createRef(value, true);
|
|
46921
46953
|
}
|
|
46922
46954
|
function createRef(rawValue, shallow) {
|
|
46923
|
-
if (isRef(rawValue)) {
|
|
46955
|
+
if (/* @__PURE__ */ isRef(rawValue)) {
|
|
46924
46956
|
return rawValue;
|
|
46925
46957
|
}
|
|
46926
46958
|
return new RefImpl(rawValue, shallow);
|
|
@@ -46930,7 +46962,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46930
46962
|
this.dep = new Dep();
|
|
46931
46963
|
this["__v_isRef"] = true;
|
|
46932
46964
|
this["__v_isShallow"] = false;
|
|
46933
|
-
this._rawValue = isShallow2 ? value : toRaw(value);
|
|
46965
|
+
this._rawValue = isShallow2 ? value : /* @__PURE__ */ toRaw(value);
|
|
46934
46966
|
this._value = isShallow2 ? value : toReactive(value);
|
|
46935
46967
|
this["__v_isShallow"] = isShallow2;
|
|
46936
46968
|
}
|
|
@@ -46942,8 +46974,8 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46942
46974
|
}
|
|
46943
46975
|
set value(newValue) {
|
|
46944
46976
|
const oldValue = this._rawValue;
|
|
46945
|
-
const useDirectValue = this["__v_isShallow"] || isShallow(newValue) || isReadonly(newValue);
|
|
46946
|
-
newValue = useDirectValue ? newValue : toRaw(newValue);
|
|
46977
|
+
const useDirectValue = this["__v_isShallow"] || /* @__PURE__ */ isShallow(newValue) || /* @__PURE__ */ isReadonly(newValue);
|
|
46978
|
+
newValue = useDirectValue ? newValue : /* @__PURE__ */ toRaw(newValue);
|
|
46947
46979
|
if (shared.hasChanged(newValue, oldValue)) {
|
|
46948
46980
|
this._rawValue = newValue;
|
|
46949
46981
|
this._value = useDirectValue ? newValue : toReactive(newValue);
|
|
@@ -46961,7 +46993,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46961
46993
|
}
|
|
46962
46994
|
}
|
|
46963
46995
|
function unref(ref2) {
|
|
46964
|
-
return isRef(ref2) ? ref2.value : ref2;
|
|
46996
|
+
return /* @__PURE__ */ isRef(ref2) ? ref2.value : ref2;
|
|
46965
46997
|
}
|
|
46966
46998
|
function toValue(source) {
|
|
46967
46999
|
return shared.isFunction(source) ? source() : unref(source);
|
|
@@ -46970,7 +47002,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46970
47002
|
get: (target, key, receiver) => key === "__v_raw" ? target : unref(Reflect.get(target, key, receiver)),
|
|
46971
47003
|
set: (target, key, value, receiver) => {
|
|
46972
47004
|
const oldValue = target[key];
|
|
46973
|
-
if (isRef(oldValue) &&
|
|
47005
|
+
if (/* @__PURE__ */ isRef(oldValue) && !/* @__PURE__ */ isRef(value)) {
|
|
46974
47006
|
oldValue.value = value;
|
|
46975
47007
|
return true;
|
|
46976
47008
|
} else {
|
|
@@ -46979,7 +47011,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
46979
47011
|
}
|
|
46980
47012
|
};
|
|
46981
47013
|
function proxyRefs(objectWithRefs) {
|
|
46982
|
-
return isReactive(objectWithRefs) ? objectWithRefs : new Proxy(objectWithRefs, shallowUnwrapHandlers);
|
|
47014
|
+
return /* @__PURE__ */ isReactive(objectWithRefs) ? objectWithRefs : new Proxy(objectWithRefs, shallowUnwrapHandlers);
|
|
46983
47015
|
}
|
|
46984
47016
|
var CustomRefImpl = class {
|
|
46985
47017
|
constructor(factory) {
|
|
@@ -47000,6 +47032,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
47000
47032
|
function customRef(factory) {
|
|
47001
47033
|
return new CustomRefImpl(factory);
|
|
47002
47034
|
}
|
|
47035
|
+
// @__NO_SIDE_EFFECTS__
|
|
47003
47036
|
function toRefs(object2) {
|
|
47004
47037
|
const ret = shared.isArray(object2) ? new Array(object2.length) : {};
|
|
47005
47038
|
for (const key in object2) {
|
|
@@ -47008,18 +47041,18 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
47008
47041
|
return ret;
|
|
47009
47042
|
}
|
|
47010
47043
|
var ObjectRefImpl = class {
|
|
47011
|
-
constructor(_object,
|
|
47044
|
+
constructor(_object, key, _defaultValue) {
|
|
47012
47045
|
this._object = _object;
|
|
47013
|
-
this._key = _key;
|
|
47014
47046
|
this._defaultValue = _defaultValue;
|
|
47015
47047
|
this["__v_isRef"] = true;
|
|
47016
47048
|
this._value = void 0;
|
|
47017
|
-
this.
|
|
47049
|
+
this._key = shared.isSymbol(key) ? key : String(key);
|
|
47050
|
+
this._raw = /* @__PURE__ */ toRaw(_object);
|
|
47018
47051
|
let shallow = true;
|
|
47019
47052
|
let obj = _object;
|
|
47020
|
-
if (!shared.isArray(_object) || !shared.isIntegerKey(
|
|
47053
|
+
if (!shared.isArray(_object) || shared.isSymbol(this._key) || !shared.isIntegerKey(this._key)) {
|
|
47021
47054
|
do {
|
|
47022
|
-
shallow =
|
|
47055
|
+
shallow = !/* @__PURE__ */ isProxy(obj) || /* @__PURE__ */ isShallow(obj);
|
|
47023
47056
|
} while (shallow && (obj = obj["__v_raw"]));
|
|
47024
47057
|
}
|
|
47025
47058
|
this._shallow = shallow;
|
|
@@ -47032,9 +47065,9 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
47032
47065
|
return this._value = val === void 0 ? this._defaultValue : val;
|
|
47033
47066
|
}
|
|
47034
47067
|
set value(newVal) {
|
|
47035
|
-
if (this._shallow && isRef(this._raw[this._key])) {
|
|
47068
|
+
if (this._shallow && /* @__PURE__ */ isRef(this._raw[this._key])) {
|
|
47036
47069
|
const nestedRef = this._object[this._key];
|
|
47037
|
-
if (isRef(nestedRef)) {
|
|
47070
|
+
if (/* @__PURE__ */ isRef(nestedRef)) {
|
|
47038
47071
|
nestedRef.value = newVal;
|
|
47039
47072
|
return;
|
|
47040
47073
|
}
|
|
@@ -47056,15 +47089,16 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
47056
47089
|
return this._value = this._getter();
|
|
47057
47090
|
}
|
|
47058
47091
|
};
|
|
47092
|
+
// @__NO_SIDE_EFFECTS__
|
|
47059
47093
|
function toRef(source, key, defaultValue) {
|
|
47060
|
-
if (isRef(source)) {
|
|
47094
|
+
if (/* @__PURE__ */ isRef(source)) {
|
|
47061
47095
|
return source;
|
|
47062
47096
|
} else if (shared.isFunction(source)) {
|
|
47063
47097
|
return new GetterRefImpl(source);
|
|
47064
47098
|
} else if (shared.isObject(source) && arguments.length > 1) {
|
|
47065
47099
|
return propertyToRef(source, key, defaultValue);
|
|
47066
47100
|
} else {
|
|
47067
|
-
return ref(source);
|
|
47101
|
+
return /* @__PURE__ */ ref(source);
|
|
47068
47102
|
}
|
|
47069
47103
|
}
|
|
47070
47104
|
function propertyToRef(source, key, defaultValue) {
|
|
@@ -47111,6 +47145,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
47111
47145
|
}
|
|
47112
47146
|
}
|
|
47113
47147
|
};
|
|
47148
|
+
// @__NO_SIDE_EFFECTS__
|
|
47114
47149
|
function computed(getterOrOptions, debugOptions, isSSR2 = false) {
|
|
47115
47150
|
let getter;
|
|
47116
47151
|
let setter;
|
|
@@ -47167,7 +47202,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
47167
47202
|
const { immediate, deep, once, scheduler, augmentJob, call } = options2;
|
|
47168
47203
|
const reactiveGetter = (source2) => {
|
|
47169
47204
|
if (deep) return source2;
|
|
47170
|
-
if (isShallow(source2) || deep === false || deep === 0)
|
|
47205
|
+
if (/* @__PURE__ */ isShallow(source2) || deep === false || deep === 0)
|
|
47171
47206
|
return traverse(source2, 1);
|
|
47172
47207
|
return traverse(source2);
|
|
47173
47208
|
};
|
|
@@ -47177,19 +47212,19 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
47177
47212
|
let boundCleanup;
|
|
47178
47213
|
let forceTrigger = false;
|
|
47179
47214
|
let isMultiSource = false;
|
|
47180
|
-
if (isRef(source)) {
|
|
47215
|
+
if (/* @__PURE__ */ isRef(source)) {
|
|
47181
47216
|
getter = () => source.value;
|
|
47182
|
-
forceTrigger = isShallow(source);
|
|
47183
|
-
} else if (isReactive(source)) {
|
|
47217
|
+
forceTrigger = /* @__PURE__ */ isShallow(source);
|
|
47218
|
+
} else if (/* @__PURE__ */ isReactive(source)) {
|
|
47184
47219
|
getter = () => reactiveGetter(source);
|
|
47185
47220
|
forceTrigger = true;
|
|
47186
47221
|
} else if (shared.isArray(source)) {
|
|
47187
47222
|
isMultiSource = true;
|
|
47188
|
-
forceTrigger = source.some((s) => isReactive(s) || isShallow(s));
|
|
47223
|
+
forceTrigger = source.some((s) => /* @__PURE__ */ isReactive(s) || /* @__PURE__ */ isShallow(s));
|
|
47189
47224
|
getter = () => source.map((s) => {
|
|
47190
|
-
if (isRef(s)) {
|
|
47225
|
+
if (/* @__PURE__ */ isRef(s)) {
|
|
47191
47226
|
return s.value;
|
|
47192
|
-
} else if (isReactive(s)) {
|
|
47227
|
+
} else if (/* @__PURE__ */ isReactive(s)) {
|
|
47193
47228
|
return reactiveGetter(s);
|
|
47194
47229
|
} else if (shared.isFunction(s)) {
|
|
47195
47230
|
return call ? call(s, 2) : s();
|
|
@@ -47315,7 +47350,7 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
47315
47350
|
}
|
|
47316
47351
|
seen.set(value, depth);
|
|
47317
47352
|
depth--;
|
|
47318
|
-
if (isRef(value)) {
|
|
47353
|
+
if (/* @__PURE__ */ isRef(value)) {
|
|
47319
47354
|
traverse(value.value, depth, seen);
|
|
47320
47355
|
} else if (shared.isArray(value)) {
|
|
47321
47356
|
for (let i = 0; i < value.length; i++) {
|
|
@@ -47390,9 +47425,9 @@ var require_reactivity_cjs_prod = __commonJS({
|
|
|
47390
47425
|
}
|
|
47391
47426
|
});
|
|
47392
47427
|
|
|
47393
|
-
// ../../node_modules/.pnpm/@vue+reactivity@3.5.
|
|
47428
|
+
// ../../node_modules/.pnpm/@vue+reactivity@3.5.32/node_modules/@vue/reactivity/dist/reactivity.cjs.js
|
|
47394
47429
|
var require_reactivity_cjs = __commonJS({
|
|
47395
|
-
"../../node_modules/.pnpm/@vue+reactivity@3.5.
|
|
47430
|
+
"../../node_modules/.pnpm/@vue+reactivity@3.5.32/node_modules/@vue/reactivity/dist/reactivity.cjs.js"(exports2) {
|
|
47396
47431
|
"use strict";
|
|
47397
47432
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
47398
47433
|
var shared = require_shared();
|
|
@@ -47401,6 +47436,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
47401
47436
|
}
|
|
47402
47437
|
var activeEffectScope;
|
|
47403
47438
|
var EffectScope = class {
|
|
47439
|
+
// TODO isolatedDeclarations "__v_skip"
|
|
47404
47440
|
constructor(detached = false) {
|
|
47405
47441
|
this.detached = detached;
|
|
47406
47442
|
this._active = true;
|
|
@@ -47408,6 +47444,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
47408
47444
|
this.effects = [];
|
|
47409
47445
|
this.cleanups = [];
|
|
47410
47446
|
this._isPaused = false;
|
|
47447
|
+
this.__v_skip = true;
|
|
47411
47448
|
this.parent = activeEffectScope;
|
|
47412
47449
|
if (!detached && activeEffectScope) {
|
|
47413
47450
|
this.index = (activeEffectScope.scopes || (activeEffectScope.scopes = [])).push(
|
|
@@ -48087,18 +48124,18 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48087
48124
|
return depMap && depMap.get(key);
|
|
48088
48125
|
}
|
|
48089
48126
|
function reactiveReadArray(array2) {
|
|
48090
|
-
const raw = toRaw(array2);
|
|
48127
|
+
const raw = /* @__PURE__ */ toRaw(array2);
|
|
48091
48128
|
if (raw === array2) return raw;
|
|
48092
48129
|
track(raw, "iterate", ARRAY_ITERATE_KEY);
|
|
48093
|
-
return isShallow(array2) ? raw : raw.map(toReactive);
|
|
48130
|
+
return /* @__PURE__ */ isShallow(array2) ? raw : raw.map(toReactive);
|
|
48094
48131
|
}
|
|
48095
48132
|
function shallowReadArray(arr) {
|
|
48096
|
-
track(arr = toRaw(arr), "iterate", ARRAY_ITERATE_KEY);
|
|
48133
|
+
track(arr = /* @__PURE__ */ toRaw(arr), "iterate", ARRAY_ITERATE_KEY);
|
|
48097
48134
|
return arr;
|
|
48098
48135
|
}
|
|
48099
48136
|
function toWrapped(target, item) {
|
|
48100
|
-
if (isReadonly(target)) {
|
|
48101
|
-
return isReactive(target) ? toReadonly(toReactive(item)) : toReadonly(item);
|
|
48137
|
+
if (/* @__PURE__ */ isReadonly(target)) {
|
|
48138
|
+
return /* @__PURE__ */ isReactive(target) ? toReadonly(toReactive(item)) : toReadonly(item);
|
|
48102
48139
|
}
|
|
48103
48140
|
return toReactive(item);
|
|
48104
48141
|
}
|
|
@@ -48218,7 +48255,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48218
48255
|
function iterator(self2, method, wrapValue) {
|
|
48219
48256
|
const arr = shallowReadArray(self2);
|
|
48220
48257
|
const iter = arr[method]();
|
|
48221
|
-
if (arr !== self2 &&
|
|
48258
|
+
if (arr !== self2 && !/* @__PURE__ */ isShallow(self2)) {
|
|
48222
48259
|
iter._next = iter.next;
|
|
48223
48260
|
iter.next = () => {
|
|
48224
48261
|
const result = iter._next();
|
|
@@ -48233,7 +48270,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48233
48270
|
var arrayProto = Array.prototype;
|
|
48234
48271
|
function apply(self2, method, fn, thisArg, wrappedRetFn, args) {
|
|
48235
48272
|
const arr = shallowReadArray(self2);
|
|
48236
|
-
const needsWrap = arr !== self2 &&
|
|
48273
|
+
const needsWrap = arr !== self2 && !/* @__PURE__ */ isShallow(self2);
|
|
48237
48274
|
const methodFn = arr[method];
|
|
48238
48275
|
if (methodFn !== arrayProto[method]) {
|
|
48239
48276
|
const result2 = methodFn.apply(self2, args);
|
|
@@ -48256,10 +48293,17 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48256
48293
|
}
|
|
48257
48294
|
function reduce(self2, method, fn, args) {
|
|
48258
48295
|
const arr = shallowReadArray(self2);
|
|
48296
|
+
const needsWrap = arr !== self2 && !/* @__PURE__ */ isShallow(self2);
|
|
48259
48297
|
let wrappedFn = fn;
|
|
48298
|
+
let wrapInitialAccumulator = false;
|
|
48260
48299
|
if (arr !== self2) {
|
|
48261
|
-
if (
|
|
48300
|
+
if (needsWrap) {
|
|
48301
|
+
wrapInitialAccumulator = args.length === 0;
|
|
48262
48302
|
wrappedFn = function(acc, item, index) {
|
|
48303
|
+
if (wrapInitialAccumulator) {
|
|
48304
|
+
wrapInitialAccumulator = false;
|
|
48305
|
+
acc = toWrapped(self2, acc);
|
|
48306
|
+
}
|
|
48263
48307
|
return fn.call(this, acc, toWrapped(self2, item), index, self2);
|
|
48264
48308
|
};
|
|
48265
48309
|
} else if (fn.length > 3) {
|
|
@@ -48268,14 +48312,15 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48268
48312
|
};
|
|
48269
48313
|
}
|
|
48270
48314
|
}
|
|
48271
|
-
|
|
48315
|
+
const result = arr[method](wrappedFn, ...args);
|
|
48316
|
+
return wrapInitialAccumulator ? toWrapped(self2, result) : result;
|
|
48272
48317
|
}
|
|
48273
48318
|
function searchProxy(self2, method, args) {
|
|
48274
|
-
const arr = toRaw(self2);
|
|
48319
|
+
const arr = /* @__PURE__ */ toRaw(self2);
|
|
48275
48320
|
track(arr, "iterate", ARRAY_ITERATE_KEY);
|
|
48276
48321
|
const res = arr[method](...args);
|
|
48277
|
-
if ((res === -1 || res === false) && isProxy(args[0])) {
|
|
48278
|
-
args[0] = toRaw(args[0]);
|
|
48322
|
+
if ((res === -1 || res === false) && /* @__PURE__ */ isProxy(args[0])) {
|
|
48323
|
+
args[0] = /* @__PURE__ */ toRaw(args[0]);
|
|
48279
48324
|
return arr[method](...args);
|
|
48280
48325
|
}
|
|
48281
48326
|
return res;
|
|
@@ -48283,7 +48328,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48283
48328
|
function noTracking(self2, method, args = []) {
|
|
48284
48329
|
pauseTracking();
|
|
48285
48330
|
startBatch();
|
|
48286
|
-
const res = toRaw(self2)[method].apply(self2, args);
|
|
48331
|
+
const res = (/* @__PURE__ */ toRaw(self2))[method].apply(self2, args);
|
|
48287
48332
|
endBatch();
|
|
48288
48333
|
resetTracking();
|
|
48289
48334
|
return res;
|
|
@@ -48294,7 +48339,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48294
48339
|
);
|
|
48295
48340
|
function hasOwnProperty2(key) {
|
|
48296
48341
|
if (!shared.isSymbol(key)) key = String(key);
|
|
48297
|
-
const obj = toRaw(this);
|
|
48342
|
+
const obj = /* @__PURE__ */ toRaw(this);
|
|
48298
48343
|
track(obj, "has", key);
|
|
48299
48344
|
return obj.hasOwnProperty(key);
|
|
48300
48345
|
}
|
|
@@ -48336,7 +48381,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48336
48381
|
// if this is a proxy wrapping a ref, return methods using the raw ref
|
|
48337
48382
|
// as receiver so that we don't have to call `toRaw` on the ref in all
|
|
48338
48383
|
// its class methods
|
|
48339
|
-
isRef(target) ? target : receiver
|
|
48384
|
+
/* @__PURE__ */ isRef(target) ? target : receiver
|
|
48340
48385
|
);
|
|
48341
48386
|
if (shared.isSymbol(key) ? builtInSymbols.has(key) : isNonTrackableKeys(key)) {
|
|
48342
48387
|
return res;
|
|
@@ -48347,12 +48392,12 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48347
48392
|
if (isShallow2) {
|
|
48348
48393
|
return res;
|
|
48349
48394
|
}
|
|
48350
|
-
if (isRef(res)) {
|
|
48395
|
+
if (/* @__PURE__ */ isRef(res)) {
|
|
48351
48396
|
const value = targetIsArray && shared.isIntegerKey(key) ? res : res.value;
|
|
48352
|
-
return isReadonly2 && shared.isObject(value) ? readonly2(value) : value;
|
|
48397
|
+
return isReadonly2 && shared.isObject(value) ? /* @__PURE__ */ readonly2(value) : value;
|
|
48353
48398
|
}
|
|
48354
48399
|
if (shared.isObject(res)) {
|
|
48355
|
-
return isReadonly2 ? readonly2(res) : reactive(res);
|
|
48400
|
+
return isReadonly2 ? /* @__PURE__ */ readonly2(res) : /* @__PURE__ */ reactive(res);
|
|
48356
48401
|
}
|
|
48357
48402
|
return res;
|
|
48358
48403
|
}
|
|
@@ -48365,12 +48410,12 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48365
48410
|
let oldValue = target[key];
|
|
48366
48411
|
const isArrayWithIntegerKey = shared.isArray(target) && shared.isIntegerKey(key);
|
|
48367
48412
|
if (!this._isShallow) {
|
|
48368
|
-
const isOldValueReadonly = isReadonly(oldValue);
|
|
48369
|
-
if (
|
|
48370
|
-
oldValue = toRaw(oldValue);
|
|
48371
|
-
value = toRaw(value);
|
|
48413
|
+
const isOldValueReadonly = /* @__PURE__ */ isReadonly(oldValue);
|
|
48414
|
+
if (!/* @__PURE__ */ isShallow(value) && !/* @__PURE__ */ isReadonly(value)) {
|
|
48415
|
+
oldValue = /* @__PURE__ */ toRaw(oldValue);
|
|
48416
|
+
value = /* @__PURE__ */ toRaw(value);
|
|
48372
48417
|
}
|
|
48373
|
-
if (!isArrayWithIntegerKey && isRef(oldValue) &&
|
|
48418
|
+
if (!isArrayWithIntegerKey && /* @__PURE__ */ isRef(oldValue) && !/* @__PURE__ */ isRef(value)) {
|
|
48374
48419
|
if (isOldValueReadonly) {
|
|
48375
48420
|
{
|
|
48376
48421
|
warn2(
|
|
@@ -48390,9 +48435,9 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48390
48435
|
target,
|
|
48391
48436
|
key,
|
|
48392
48437
|
value,
|
|
48393
|
-
isRef(target) ? target : receiver
|
|
48438
|
+
/* @__PURE__ */ isRef(target) ? target : receiver
|
|
48394
48439
|
);
|
|
48395
|
-
if (target === toRaw(receiver)) {
|
|
48440
|
+
if (target === /* @__PURE__ */ toRaw(receiver)) {
|
|
48396
48441
|
if (!hadKey) {
|
|
48397
48442
|
trigger(target, "add", key, value);
|
|
48398
48443
|
} else if (shared.hasChanged(value, oldValue)) {
|
|
@@ -48458,7 +48503,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48458
48503
|
function createIterableMethod(method, isReadonly2, isShallow2) {
|
|
48459
48504
|
return function(...args) {
|
|
48460
48505
|
const target = this["__v_raw"];
|
|
48461
|
-
const rawTarget = toRaw(target);
|
|
48506
|
+
const rawTarget = /* @__PURE__ */ toRaw(target);
|
|
48462
48507
|
const targetIsMap = shared.isMap(rawTarget);
|
|
48463
48508
|
const isPair = method === "entries" || method === Symbol.iterator && targetIsMap;
|
|
48464
48509
|
const isKeyOnly = method === "keys" && targetIsMap;
|
|
@@ -48469,20 +48514,20 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48469
48514
|
"iterate",
|
|
48470
48515
|
isKeyOnly ? MAP_KEY_ITERATE_KEY : ITERATE_KEY
|
|
48471
48516
|
);
|
|
48472
|
-
return
|
|
48473
|
-
// iterator
|
|
48474
|
-
|
|
48475
|
-
|
|
48476
|
-
|
|
48477
|
-
|
|
48478
|
-
done
|
|
48479
|
-
|
|
48480
|
-
|
|
48481
|
-
|
|
48482
|
-
|
|
48483
|
-
|
|
48517
|
+
return shared.extend(
|
|
48518
|
+
// inheriting all iterator properties
|
|
48519
|
+
Object.create(innerIterator),
|
|
48520
|
+
{
|
|
48521
|
+
// iterator protocol
|
|
48522
|
+
next() {
|
|
48523
|
+
const { value, done } = innerIterator.next();
|
|
48524
|
+
return done ? { value, done } : {
|
|
48525
|
+
value: isPair ? [wrap2(value[0]), wrap2(value[1])] : wrap2(value),
|
|
48526
|
+
done
|
|
48527
|
+
};
|
|
48528
|
+
}
|
|
48484
48529
|
}
|
|
48485
|
-
|
|
48530
|
+
);
|
|
48486
48531
|
};
|
|
48487
48532
|
}
|
|
48488
48533
|
function createReadonlyMethod(type) {
|
|
@@ -48491,7 +48536,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48491
48536
|
const key = args[0] ? `on key "${args[0]}" ` : ``;
|
|
48492
48537
|
warn2(
|
|
48493
48538
|
`${shared.capitalize(type)} operation ${key}failed: target is readonly.`,
|
|
48494
|
-
toRaw(this)
|
|
48539
|
+
/* @__PURE__ */ toRaw(this)
|
|
48495
48540
|
);
|
|
48496
48541
|
}
|
|
48497
48542
|
return type === "delete" ? false : type === "clear" ? void 0 : this;
|
|
@@ -48501,8 +48546,8 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48501
48546
|
const instrumentations = {
|
|
48502
48547
|
get(key) {
|
|
48503
48548
|
const target = this["__v_raw"];
|
|
48504
|
-
const rawTarget = toRaw(target);
|
|
48505
|
-
const rawKey = toRaw(key);
|
|
48549
|
+
const rawTarget = /* @__PURE__ */ toRaw(target);
|
|
48550
|
+
const rawKey = /* @__PURE__ */ toRaw(key);
|
|
48506
48551
|
if (!readonly3) {
|
|
48507
48552
|
if (shared.hasChanged(key, rawKey)) {
|
|
48508
48553
|
track(rawTarget, "get", key);
|
|
@@ -48521,13 +48566,13 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48521
48566
|
},
|
|
48522
48567
|
get size() {
|
|
48523
48568
|
const target = this["__v_raw"];
|
|
48524
|
-
!readonly3 && track(toRaw(target), "iterate", ITERATE_KEY);
|
|
48569
|
+
!readonly3 && track(/* @__PURE__ */ toRaw(target), "iterate", ITERATE_KEY);
|
|
48525
48570
|
return target.size;
|
|
48526
48571
|
},
|
|
48527
48572
|
has(key) {
|
|
48528
48573
|
const target = this["__v_raw"];
|
|
48529
|
-
const rawTarget = toRaw(target);
|
|
48530
|
-
const rawKey = toRaw(key);
|
|
48574
|
+
const rawTarget = /* @__PURE__ */ toRaw(target);
|
|
48575
|
+
const rawKey = /* @__PURE__ */ toRaw(key);
|
|
48531
48576
|
if (!readonly3) {
|
|
48532
48577
|
if (shared.hasChanged(key, rawKey)) {
|
|
48533
48578
|
track(rawTarget, "has", key);
|
|
@@ -48539,7 +48584,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48539
48584
|
forEach(callback, thisArg) {
|
|
48540
48585
|
const observed = this;
|
|
48541
48586
|
const target = observed["__v_raw"];
|
|
48542
|
-
const rawTarget = toRaw(target);
|
|
48587
|
+
const rawTarget = /* @__PURE__ */ toRaw(target);
|
|
48543
48588
|
const wrap2 = shallow ? toShallow : readonly3 ? toReadonly : toReactive;
|
|
48544
48589
|
!readonly3 && track(rawTarget, "iterate", ITERATE_KEY);
|
|
48545
48590
|
return target.forEach((value, key) => {
|
|
@@ -48556,27 +48601,26 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48556
48601
|
clear: createReadonlyMethod("clear")
|
|
48557
48602
|
} : {
|
|
48558
48603
|
add(value) {
|
|
48559
|
-
|
|
48560
|
-
value = toRaw(value);
|
|
48561
|
-
}
|
|
48562
|
-
const target = toRaw(this);
|
|
48604
|
+
const target = /* @__PURE__ */ toRaw(this);
|
|
48563
48605
|
const proto = getProto(target);
|
|
48564
|
-
const
|
|
48606
|
+
const rawValue = /* @__PURE__ */ toRaw(value);
|
|
48607
|
+
const valueToAdd = !shallow && !/* @__PURE__ */ isShallow(value) && !/* @__PURE__ */ isReadonly(value) ? rawValue : value;
|
|
48608
|
+
const hadKey = proto.has.call(target, valueToAdd) || shared.hasChanged(value, valueToAdd) && proto.has.call(target, value) || shared.hasChanged(rawValue, valueToAdd) && proto.has.call(target, rawValue);
|
|
48565
48609
|
if (!hadKey) {
|
|
48566
|
-
target.add(
|
|
48567
|
-
trigger(target, "add",
|
|
48610
|
+
target.add(valueToAdd);
|
|
48611
|
+
trigger(target, "add", valueToAdd, valueToAdd);
|
|
48568
48612
|
}
|
|
48569
48613
|
return this;
|
|
48570
48614
|
},
|
|
48571
48615
|
set(key, value) {
|
|
48572
|
-
if (!shallow &&
|
|
48573
|
-
value = toRaw(value);
|
|
48616
|
+
if (!shallow && !/* @__PURE__ */ isShallow(value) && !/* @__PURE__ */ isReadonly(value)) {
|
|
48617
|
+
value = /* @__PURE__ */ toRaw(value);
|
|
48574
48618
|
}
|
|
48575
|
-
const target = toRaw(this);
|
|
48619
|
+
const target = /* @__PURE__ */ toRaw(this);
|
|
48576
48620
|
const { has, get } = getProto(target);
|
|
48577
48621
|
let hadKey = has.call(target, key);
|
|
48578
48622
|
if (!hadKey) {
|
|
48579
|
-
key = toRaw(key);
|
|
48623
|
+
key = /* @__PURE__ */ toRaw(key);
|
|
48580
48624
|
hadKey = has.call(target, key);
|
|
48581
48625
|
} else {
|
|
48582
48626
|
checkIdentityKeys(target, has, key);
|
|
@@ -48591,11 +48635,11 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48591
48635
|
return this;
|
|
48592
48636
|
},
|
|
48593
48637
|
delete(key) {
|
|
48594
|
-
const target = toRaw(this);
|
|
48638
|
+
const target = /* @__PURE__ */ toRaw(this);
|
|
48595
48639
|
const { has, get } = getProto(target);
|
|
48596
48640
|
let hadKey = has.call(target, key);
|
|
48597
48641
|
if (!hadKey) {
|
|
48598
|
-
key = toRaw(key);
|
|
48642
|
+
key = /* @__PURE__ */ toRaw(key);
|
|
48599
48643
|
hadKey = has.call(target, key);
|
|
48600
48644
|
} else {
|
|
48601
48645
|
checkIdentityKeys(target, has, key);
|
|
@@ -48608,7 +48652,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48608
48652
|
return result;
|
|
48609
48653
|
},
|
|
48610
48654
|
clear() {
|
|
48611
|
-
const target = toRaw(this);
|
|
48655
|
+
const target = /* @__PURE__ */ toRaw(this);
|
|
48612
48656
|
const hadItems = target.size !== 0;
|
|
48613
48657
|
const oldTarget = shared.isMap(target) ? new Map(target) : new Set(target);
|
|
48614
48658
|
const result = target.clear();
|
|
@@ -48666,7 +48710,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48666
48710
|
get: /* @__PURE__ */ createInstrumentationGetter(true, true)
|
|
48667
48711
|
};
|
|
48668
48712
|
function checkIdentityKeys(target, has, key) {
|
|
48669
|
-
const rawKey = toRaw(key);
|
|
48713
|
+
const rawKey = /* @__PURE__ */ toRaw(key);
|
|
48670
48714
|
if (rawKey !== key && has.call(target, rawKey)) {
|
|
48671
48715
|
const type = shared.toRawType(target);
|
|
48672
48716
|
warn2(
|
|
@@ -48695,8 +48739,9 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48695
48739
|
function getTargetType(value) {
|
|
48696
48740
|
return value["__v_skip"] || !Object.isExtensible(value) ? 0 : targetTypeMap(shared.toRawType(value));
|
|
48697
48741
|
}
|
|
48742
|
+
// @__NO_SIDE_EFFECTS__
|
|
48698
48743
|
function reactive(target) {
|
|
48699
|
-
if (isReadonly(target)) {
|
|
48744
|
+
if (/* @__PURE__ */ isReadonly(target)) {
|
|
48700
48745
|
return target;
|
|
48701
48746
|
}
|
|
48702
48747
|
return createReactiveObject(
|
|
@@ -48707,6 +48752,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48707
48752
|
reactiveMap
|
|
48708
48753
|
);
|
|
48709
48754
|
}
|
|
48755
|
+
// @__NO_SIDE_EFFECTS__
|
|
48710
48756
|
function shallowReactive(target) {
|
|
48711
48757
|
return createReactiveObject(
|
|
48712
48758
|
target,
|
|
@@ -48716,6 +48762,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48716
48762
|
shallowReactiveMap
|
|
48717
48763
|
);
|
|
48718
48764
|
}
|
|
48765
|
+
// @__NO_SIDE_EFFECTS__
|
|
48719
48766
|
function readonly2(target) {
|
|
48720
48767
|
return createReactiveObject(
|
|
48721
48768
|
target,
|
|
@@ -48725,6 +48772,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48725
48772
|
readonlyMap
|
|
48726
48773
|
);
|
|
48727
48774
|
}
|
|
48775
|
+
// @__NO_SIDE_EFFECTS__
|
|
48728
48776
|
function shallowReadonly2(target) {
|
|
48729
48777
|
return createReactiveObject(
|
|
48730
48778
|
target,
|
|
@@ -48763,24 +48811,29 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48763
48811
|
proxyMap.set(target, proxy);
|
|
48764
48812
|
return proxy;
|
|
48765
48813
|
}
|
|
48814
|
+
// @__NO_SIDE_EFFECTS__
|
|
48766
48815
|
function isReactive(value) {
|
|
48767
|
-
if (isReadonly(value)) {
|
|
48768
|
-
return isReactive(value["__v_raw"]);
|
|
48816
|
+
if (/* @__PURE__ */ isReadonly(value)) {
|
|
48817
|
+
return /* @__PURE__ */ isReactive(value["__v_raw"]);
|
|
48769
48818
|
}
|
|
48770
48819
|
return !!(value && value["__v_isReactive"]);
|
|
48771
48820
|
}
|
|
48821
|
+
// @__NO_SIDE_EFFECTS__
|
|
48772
48822
|
function isReadonly(value) {
|
|
48773
48823
|
return !!(value && value["__v_isReadonly"]);
|
|
48774
48824
|
}
|
|
48825
|
+
// @__NO_SIDE_EFFECTS__
|
|
48775
48826
|
function isShallow(value) {
|
|
48776
48827
|
return !!(value && value["__v_isShallow"]);
|
|
48777
48828
|
}
|
|
48829
|
+
// @__NO_SIDE_EFFECTS__
|
|
48778
48830
|
function isProxy(value) {
|
|
48779
48831
|
return value ? !!value["__v_raw"] : false;
|
|
48780
48832
|
}
|
|
48833
|
+
// @__NO_SIDE_EFFECTS__
|
|
48781
48834
|
function toRaw(observed) {
|
|
48782
48835
|
const raw = observed && observed["__v_raw"];
|
|
48783
|
-
return raw ? toRaw(raw) : observed;
|
|
48836
|
+
return raw ? /* @__PURE__ */ toRaw(raw) : observed;
|
|
48784
48837
|
}
|
|
48785
48838
|
function markRaw(value) {
|
|
48786
48839
|
if (!shared.hasOwn(value, "__v_skip") && Object.isExtensible(value)) {
|
|
@@ -48788,19 +48841,22 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48788
48841
|
}
|
|
48789
48842
|
return value;
|
|
48790
48843
|
}
|
|
48791
|
-
var toReactive = (value) => shared.isObject(value) ? reactive(value) : value;
|
|
48792
|
-
var toReadonly = (value) => shared.isObject(value) ? readonly2(value) : value;
|
|
48844
|
+
var toReactive = (value) => shared.isObject(value) ? /* @__PURE__ */ reactive(value) : value;
|
|
48845
|
+
var toReadonly = (value) => shared.isObject(value) ? /* @__PURE__ */ readonly2(value) : value;
|
|
48846
|
+
// @__NO_SIDE_EFFECTS__
|
|
48793
48847
|
function isRef(r) {
|
|
48794
48848
|
return r ? r["__v_isRef"] === true : false;
|
|
48795
48849
|
}
|
|
48850
|
+
// @__NO_SIDE_EFFECTS__
|
|
48796
48851
|
function ref(value) {
|
|
48797
48852
|
return createRef(value, false);
|
|
48798
48853
|
}
|
|
48854
|
+
// @__NO_SIDE_EFFECTS__
|
|
48799
48855
|
function shallowRef(value) {
|
|
48800
48856
|
return createRef(value, true);
|
|
48801
48857
|
}
|
|
48802
48858
|
function createRef(rawValue, shallow) {
|
|
48803
|
-
if (isRef(rawValue)) {
|
|
48859
|
+
if (/* @__PURE__ */ isRef(rawValue)) {
|
|
48804
48860
|
return rawValue;
|
|
48805
48861
|
}
|
|
48806
48862
|
return new RefImpl(rawValue, shallow);
|
|
@@ -48810,7 +48866,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48810
48866
|
this.dep = new Dep();
|
|
48811
48867
|
this["__v_isRef"] = true;
|
|
48812
48868
|
this["__v_isShallow"] = false;
|
|
48813
|
-
this._rawValue = isShallow2 ? value : toRaw(value);
|
|
48869
|
+
this._rawValue = isShallow2 ? value : /* @__PURE__ */ toRaw(value);
|
|
48814
48870
|
this._value = isShallow2 ? value : toReactive(value);
|
|
48815
48871
|
this["__v_isShallow"] = isShallow2;
|
|
48816
48872
|
}
|
|
@@ -48826,8 +48882,8 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48826
48882
|
}
|
|
48827
48883
|
set value(newValue) {
|
|
48828
48884
|
const oldValue = this._rawValue;
|
|
48829
|
-
const useDirectValue = this["__v_isShallow"] || isShallow(newValue) || isReadonly(newValue);
|
|
48830
|
-
newValue = useDirectValue ? newValue : toRaw(newValue);
|
|
48885
|
+
const useDirectValue = this["__v_isShallow"] || /* @__PURE__ */ isShallow(newValue) || /* @__PURE__ */ isReadonly(newValue);
|
|
48886
|
+
newValue = useDirectValue ? newValue : /* @__PURE__ */ toRaw(newValue);
|
|
48831
48887
|
if (shared.hasChanged(newValue, oldValue)) {
|
|
48832
48888
|
this._rawValue = newValue;
|
|
48833
48889
|
this._value = useDirectValue ? newValue : toReactive(newValue);
|
|
@@ -48856,7 +48912,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48856
48912
|
}
|
|
48857
48913
|
}
|
|
48858
48914
|
function unref(ref2) {
|
|
48859
|
-
return isRef(ref2) ? ref2.value : ref2;
|
|
48915
|
+
return /* @__PURE__ */ isRef(ref2) ? ref2.value : ref2;
|
|
48860
48916
|
}
|
|
48861
48917
|
function toValue(source) {
|
|
48862
48918
|
return shared.isFunction(source) ? source() : unref(source);
|
|
@@ -48865,7 +48921,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48865
48921
|
get: (target, key, receiver) => key === "__v_raw" ? target : unref(Reflect.get(target, key, receiver)),
|
|
48866
48922
|
set: (target, key, value, receiver) => {
|
|
48867
48923
|
const oldValue = target[key];
|
|
48868
|
-
if (isRef(oldValue) &&
|
|
48924
|
+
if (/* @__PURE__ */ isRef(oldValue) && !/* @__PURE__ */ isRef(value)) {
|
|
48869
48925
|
oldValue.value = value;
|
|
48870
48926
|
return true;
|
|
48871
48927
|
} else {
|
|
@@ -48874,7 +48930,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48874
48930
|
}
|
|
48875
48931
|
};
|
|
48876
48932
|
function proxyRefs(objectWithRefs) {
|
|
48877
|
-
return isReactive(objectWithRefs) ? objectWithRefs : new Proxy(objectWithRefs, shallowUnwrapHandlers);
|
|
48933
|
+
return /* @__PURE__ */ isReactive(objectWithRefs) ? objectWithRefs : new Proxy(objectWithRefs, shallowUnwrapHandlers);
|
|
48878
48934
|
}
|
|
48879
48935
|
var CustomRefImpl = class {
|
|
48880
48936
|
constructor(factory) {
|
|
@@ -48895,8 +48951,9 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48895
48951
|
function customRef(factory) {
|
|
48896
48952
|
return new CustomRefImpl(factory);
|
|
48897
48953
|
}
|
|
48954
|
+
// @__NO_SIDE_EFFECTS__
|
|
48898
48955
|
function toRefs(object2) {
|
|
48899
|
-
if (
|
|
48956
|
+
if (!/* @__PURE__ */ isProxy(object2)) {
|
|
48900
48957
|
warn2(`toRefs() expects a reactive object but received a plain one.`);
|
|
48901
48958
|
}
|
|
48902
48959
|
const ret = shared.isArray(object2) ? new Array(object2.length) : {};
|
|
@@ -48906,18 +48963,18 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48906
48963
|
return ret;
|
|
48907
48964
|
}
|
|
48908
48965
|
var ObjectRefImpl = class {
|
|
48909
|
-
constructor(_object,
|
|
48966
|
+
constructor(_object, key, _defaultValue) {
|
|
48910
48967
|
this._object = _object;
|
|
48911
|
-
this._key = _key;
|
|
48912
48968
|
this._defaultValue = _defaultValue;
|
|
48913
48969
|
this["__v_isRef"] = true;
|
|
48914
48970
|
this._value = void 0;
|
|
48915
|
-
this.
|
|
48971
|
+
this._key = shared.isSymbol(key) ? key : String(key);
|
|
48972
|
+
this._raw = /* @__PURE__ */ toRaw(_object);
|
|
48916
48973
|
let shallow = true;
|
|
48917
48974
|
let obj = _object;
|
|
48918
|
-
if (!shared.isArray(_object) || !shared.isIntegerKey(
|
|
48975
|
+
if (!shared.isArray(_object) || shared.isSymbol(this._key) || !shared.isIntegerKey(this._key)) {
|
|
48919
48976
|
do {
|
|
48920
|
-
shallow =
|
|
48977
|
+
shallow = !/* @__PURE__ */ isProxy(obj) || /* @__PURE__ */ isShallow(obj);
|
|
48921
48978
|
} while (shallow && (obj = obj["__v_raw"]));
|
|
48922
48979
|
}
|
|
48923
48980
|
this._shallow = shallow;
|
|
@@ -48930,9 +48987,9 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48930
48987
|
return this._value = val === void 0 ? this._defaultValue : val;
|
|
48931
48988
|
}
|
|
48932
48989
|
set value(newVal) {
|
|
48933
|
-
if (this._shallow && isRef(this._raw[this._key])) {
|
|
48990
|
+
if (this._shallow && /* @__PURE__ */ isRef(this._raw[this._key])) {
|
|
48934
48991
|
const nestedRef = this._object[this._key];
|
|
48935
|
-
if (isRef(nestedRef)) {
|
|
48992
|
+
if (/* @__PURE__ */ isRef(nestedRef)) {
|
|
48936
48993
|
nestedRef.value = newVal;
|
|
48937
48994
|
return;
|
|
48938
48995
|
}
|
|
@@ -48954,15 +49011,16 @@ var require_reactivity_cjs = __commonJS({
|
|
|
48954
49011
|
return this._value = this._getter();
|
|
48955
49012
|
}
|
|
48956
49013
|
};
|
|
49014
|
+
// @__NO_SIDE_EFFECTS__
|
|
48957
49015
|
function toRef(source, key, defaultValue) {
|
|
48958
|
-
if (isRef(source)) {
|
|
49016
|
+
if (/* @__PURE__ */ isRef(source)) {
|
|
48959
49017
|
return source;
|
|
48960
49018
|
} else if (shared.isFunction(source)) {
|
|
48961
49019
|
return new GetterRefImpl(source);
|
|
48962
49020
|
} else if (shared.isObject(source) && arguments.length > 1) {
|
|
48963
49021
|
return propertyToRef(source, key, defaultValue);
|
|
48964
49022
|
} else {
|
|
48965
|
-
return ref(source);
|
|
49023
|
+
return /* @__PURE__ */ ref(source);
|
|
48966
49024
|
}
|
|
48967
49025
|
}
|
|
48968
49026
|
function propertyToRef(source, key, defaultValue) {
|
|
@@ -49015,6 +49073,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
49015
49073
|
}
|
|
49016
49074
|
}
|
|
49017
49075
|
};
|
|
49076
|
+
// @__NO_SIDE_EFFECTS__
|
|
49018
49077
|
function computed(getterOrOptions, debugOptions, isSSR2 = false) {
|
|
49019
49078
|
let getter;
|
|
49020
49079
|
let setter;
|
|
@@ -49086,7 +49145,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
49086
49145
|
};
|
|
49087
49146
|
const reactiveGetter = (source2) => {
|
|
49088
49147
|
if (deep) return source2;
|
|
49089
|
-
if (isShallow(source2) || deep === false || deep === 0)
|
|
49148
|
+
if (/* @__PURE__ */ isShallow(source2) || deep === false || deep === 0)
|
|
49090
49149
|
return traverse(source2, 1);
|
|
49091
49150
|
return traverse(source2);
|
|
49092
49151
|
};
|
|
@@ -49096,19 +49155,19 @@ var require_reactivity_cjs = __commonJS({
|
|
|
49096
49155
|
let boundCleanup;
|
|
49097
49156
|
let forceTrigger = false;
|
|
49098
49157
|
let isMultiSource = false;
|
|
49099
|
-
if (isRef(source)) {
|
|
49158
|
+
if (/* @__PURE__ */ isRef(source)) {
|
|
49100
49159
|
getter = () => source.value;
|
|
49101
|
-
forceTrigger = isShallow(source);
|
|
49102
|
-
} else if (isReactive(source)) {
|
|
49160
|
+
forceTrigger = /* @__PURE__ */ isShallow(source);
|
|
49161
|
+
} else if (/* @__PURE__ */ isReactive(source)) {
|
|
49103
49162
|
getter = () => reactiveGetter(source);
|
|
49104
49163
|
forceTrigger = true;
|
|
49105
49164
|
} else if (shared.isArray(source)) {
|
|
49106
49165
|
isMultiSource = true;
|
|
49107
|
-
forceTrigger = source.some((s) => isReactive(s) || isShallow(s));
|
|
49166
|
+
forceTrigger = source.some((s) => /* @__PURE__ */ isReactive(s) || /* @__PURE__ */ isShallow(s));
|
|
49108
49167
|
getter = () => source.map((s) => {
|
|
49109
|
-
if (isRef(s)) {
|
|
49168
|
+
if (/* @__PURE__ */ isRef(s)) {
|
|
49110
49169
|
return s.value;
|
|
49111
|
-
} else if (isReactive(s)) {
|
|
49170
|
+
} else if (/* @__PURE__ */ isReactive(s)) {
|
|
49112
49171
|
return reactiveGetter(s);
|
|
49113
49172
|
} else if (shared.isFunction(s)) {
|
|
49114
49173
|
return call ? call(s, 2) : s();
|
|
@@ -49241,7 +49300,7 @@ var require_reactivity_cjs = __commonJS({
|
|
|
49241
49300
|
}
|
|
49242
49301
|
seen.set(value, depth);
|
|
49243
49302
|
depth--;
|
|
49244
|
-
if (isRef(value)) {
|
|
49303
|
+
if (/* @__PURE__ */ isRef(value)) {
|
|
49245
49304
|
traverse(value.value, depth, seen);
|
|
49246
49305
|
} else if (shared.isArray(value)) {
|
|
49247
49306
|
for (let i = 0; i < value.length; i++) {
|
|
@@ -49316,9 +49375,9 @@ var require_reactivity_cjs = __commonJS({
|
|
|
49316
49375
|
}
|
|
49317
49376
|
});
|
|
49318
49377
|
|
|
49319
|
-
// ../../node_modules/.pnpm/@vue+reactivity@3.5.
|
|
49378
|
+
// ../../node_modules/.pnpm/@vue+reactivity@3.5.32/node_modules/@vue/reactivity/index.js
|
|
49320
49379
|
var require_reactivity = __commonJS({
|
|
49321
|
-
"../../node_modules/.pnpm/@vue+reactivity@3.5.
|
|
49380
|
+
"../../node_modules/.pnpm/@vue+reactivity@3.5.32/node_modules/@vue/reactivity/index.js"(exports2, module2) {
|
|
49322
49381
|
"use strict";
|
|
49323
49382
|
if (process.env.NODE_ENV === "production") {
|
|
49324
49383
|
module2.exports = require_reactivity_cjs_prod();
|
|
@@ -49328,9 +49387,9 @@ var require_reactivity = __commonJS({
|
|
|
49328
49387
|
}
|
|
49329
49388
|
});
|
|
49330
49389
|
|
|
49331
|
-
// ../../node_modules/.pnpm/@vue+runtime-core@3.5.
|
|
49390
|
+
// ../../node_modules/.pnpm/@vue+runtime-core@3.5.32/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js
|
|
49332
49391
|
var require_runtime_core_cjs_prod = __commonJS({
|
|
49333
|
-
"../../node_modules/.pnpm/@vue+runtime-core@3.5.
|
|
49392
|
+
"../../node_modules/.pnpm/@vue+runtime-core@3.5.32/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js"(exports2) {
|
|
49334
49393
|
"use strict";
|
|
49335
49394
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
49336
49395
|
var reactivity = require_reactivity();
|
|
@@ -49829,6 +49888,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
49829
49888
|
return cur;
|
|
49830
49889
|
};
|
|
49831
49890
|
}
|
|
49891
|
+
var pendingMounts = /* @__PURE__ */ new WeakMap();
|
|
49832
49892
|
var TeleportEndKey = /* @__PURE__ */ Symbol("_vte");
|
|
49833
49893
|
var isTeleport = (type) => type.__isTeleport;
|
|
49834
49894
|
var isTeleportDisabled = (props) => props && (props.disabled || props.disabled === "");
|
|
@@ -49859,78 +49919,78 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
49859
49919
|
o: { insert, querySelector, createText, createComment }
|
|
49860
49920
|
} = internals;
|
|
49861
49921
|
const disabled = isTeleportDisabled(n22.props);
|
|
49862
|
-
let {
|
|
49922
|
+
let { dynamicChildren } = n22;
|
|
49923
|
+
const mount = (vnode, container2, anchor2) => {
|
|
49924
|
+
if (vnode.shapeFlag & 16) {
|
|
49925
|
+
mountChildren(
|
|
49926
|
+
vnode.children,
|
|
49927
|
+
container2,
|
|
49928
|
+
anchor2,
|
|
49929
|
+
parentComponent,
|
|
49930
|
+
parentSuspense,
|
|
49931
|
+
namespace,
|
|
49932
|
+
slotScopeIds,
|
|
49933
|
+
optimized
|
|
49934
|
+
);
|
|
49935
|
+
}
|
|
49936
|
+
};
|
|
49937
|
+
const mountToTarget = (vnode = n22) => {
|
|
49938
|
+
const disabled2 = isTeleportDisabled(vnode.props);
|
|
49939
|
+
const target = vnode.target = resolveTarget(vnode.props, querySelector);
|
|
49940
|
+
const targetAnchor = prepareAnchor(target, vnode, createText, insert);
|
|
49941
|
+
if (target) {
|
|
49942
|
+
if (namespace !== "svg" && isTargetSVG(target)) {
|
|
49943
|
+
namespace = "svg";
|
|
49944
|
+
} else if (namespace !== "mathml" && isTargetMathML(target)) {
|
|
49945
|
+
namespace = "mathml";
|
|
49946
|
+
}
|
|
49947
|
+
if (parentComponent && parentComponent.isCE) {
|
|
49948
|
+
(parentComponent.ce._teleportTargets || (parentComponent.ce._teleportTargets = /* @__PURE__ */ new Set())).add(target);
|
|
49949
|
+
}
|
|
49950
|
+
if (!disabled2) {
|
|
49951
|
+
mount(vnode, target, targetAnchor);
|
|
49952
|
+
updateCssVars(vnode, false);
|
|
49953
|
+
}
|
|
49954
|
+
}
|
|
49955
|
+
};
|
|
49956
|
+
const queuePendingMount = (vnode) => {
|
|
49957
|
+
const mountJob = () => {
|
|
49958
|
+
if (pendingMounts.get(vnode) !== mountJob) return;
|
|
49959
|
+
pendingMounts.delete(vnode);
|
|
49960
|
+
if (isTeleportDisabled(vnode.props)) {
|
|
49961
|
+
mount(vnode, container, vnode.anchor);
|
|
49962
|
+
updateCssVars(vnode, true);
|
|
49963
|
+
}
|
|
49964
|
+
mountToTarget(vnode);
|
|
49965
|
+
};
|
|
49966
|
+
pendingMounts.set(vnode, mountJob);
|
|
49967
|
+
queuePostRenderEffect(mountJob, parentSuspense);
|
|
49968
|
+
};
|
|
49863
49969
|
if (n1 == null) {
|
|
49864
49970
|
const placeholder = n22.el = createText("");
|
|
49865
49971
|
const mainAnchor = n22.anchor = createText("");
|
|
49866
49972
|
insert(placeholder, container, anchor);
|
|
49867
49973
|
insert(mainAnchor, container, anchor);
|
|
49868
|
-
|
|
49869
|
-
|
|
49870
|
-
|
|
49871
|
-
|
|
49872
|
-
container2,
|
|
49873
|
-
anchor2,
|
|
49874
|
-
parentComponent,
|
|
49875
|
-
parentSuspense,
|
|
49876
|
-
namespace,
|
|
49877
|
-
slotScopeIds,
|
|
49878
|
-
optimized
|
|
49879
|
-
);
|
|
49880
|
-
}
|
|
49881
|
-
};
|
|
49882
|
-
const mountToTarget = () => {
|
|
49883
|
-
const target = n22.target = resolveTarget(n22.props, querySelector);
|
|
49884
|
-
const targetAnchor = prepareAnchor(target, n22, createText, insert);
|
|
49885
|
-
if (target) {
|
|
49886
|
-
if (namespace !== "svg" && isTargetSVG(target)) {
|
|
49887
|
-
namespace = "svg";
|
|
49888
|
-
} else if (namespace !== "mathml" && isTargetMathML(target)) {
|
|
49889
|
-
namespace = "mathml";
|
|
49890
|
-
}
|
|
49891
|
-
if (parentComponent && parentComponent.isCE) {
|
|
49892
|
-
(parentComponent.ce._teleportTargets || (parentComponent.ce._teleportTargets = /* @__PURE__ */ new Set())).add(target);
|
|
49893
|
-
}
|
|
49894
|
-
if (!disabled) {
|
|
49895
|
-
mount(target, targetAnchor);
|
|
49896
|
-
updateCssVars(n22, false);
|
|
49897
|
-
}
|
|
49898
|
-
}
|
|
49899
|
-
};
|
|
49974
|
+
if (isTeleportDeferred(n22.props) || parentSuspense && parentSuspense.pendingBranch) {
|
|
49975
|
+
queuePendingMount(n22);
|
|
49976
|
+
return;
|
|
49977
|
+
}
|
|
49900
49978
|
if (disabled) {
|
|
49901
|
-
mount(container, mainAnchor);
|
|
49979
|
+
mount(n22, container, mainAnchor);
|
|
49902
49980
|
updateCssVars(n22, true);
|
|
49903
49981
|
}
|
|
49904
|
-
|
|
49905
|
-
n22.el.__isMounted = false;
|
|
49906
|
-
queuePostRenderEffect(() => {
|
|
49907
|
-
mountToTarget();
|
|
49908
|
-
delete n22.el.__isMounted;
|
|
49909
|
-
}, parentSuspense);
|
|
49910
|
-
} else {
|
|
49911
|
-
mountToTarget();
|
|
49912
|
-
}
|
|
49982
|
+
mountToTarget();
|
|
49913
49983
|
} else {
|
|
49914
|
-
|
|
49915
|
-
|
|
49916
|
-
|
|
49917
|
-
|
|
49918
|
-
|
|
49919
|
-
|
|
49920
|
-
|
|
49921
|
-
parentComponent,
|
|
49922
|
-
parentSuspense,
|
|
49923
|
-
namespace,
|
|
49924
|
-
slotScopeIds,
|
|
49925
|
-
optimized,
|
|
49926
|
-
internals
|
|
49927
|
-
);
|
|
49928
|
-
}, parentSuspense);
|
|
49984
|
+
n22.el = n1.el;
|
|
49985
|
+
const mainAnchor = n22.anchor = n1.anchor;
|
|
49986
|
+
const pendingMount = pendingMounts.get(n1);
|
|
49987
|
+
if (pendingMount) {
|
|
49988
|
+
pendingMount.flags |= 8;
|
|
49989
|
+
pendingMounts.delete(n1);
|
|
49990
|
+
queuePendingMount(n22);
|
|
49929
49991
|
return;
|
|
49930
49992
|
}
|
|
49931
|
-
n22.el = n1.el;
|
|
49932
49993
|
n22.targetStart = n1.targetStart;
|
|
49933
|
-
const mainAnchor = n22.anchor = n1.anchor;
|
|
49934
49994
|
const target = n22.target = n1.target;
|
|
49935
49995
|
const targetAnchor = n22.targetAnchor = n1.targetAnchor;
|
|
49936
49996
|
const wasDisabled = isTeleportDisabled(n1.props);
|
|
@@ -50017,13 +50077,19 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50017
50077
|
target,
|
|
50018
50078
|
props
|
|
50019
50079
|
} = vnode;
|
|
50080
|
+
let shouldRemove = doRemove || !isTeleportDisabled(props);
|
|
50081
|
+
const pendingMount = pendingMounts.get(vnode);
|
|
50082
|
+
if (pendingMount) {
|
|
50083
|
+
pendingMount.flags |= 8;
|
|
50084
|
+
pendingMounts.delete(vnode);
|
|
50085
|
+
shouldRemove = false;
|
|
50086
|
+
}
|
|
50020
50087
|
if (target) {
|
|
50021
50088
|
hostRemove(targetStart);
|
|
50022
50089
|
hostRemove(targetAnchor);
|
|
50023
50090
|
}
|
|
50024
50091
|
doRemove && hostRemove(anchor);
|
|
50025
50092
|
if (shapeFlag & 16) {
|
|
50026
|
-
const shouldRemove = doRemove || !isTeleportDisabled(props);
|
|
50027
50093
|
for (let i = 0; i < children.length; i++) {
|
|
50028
50094
|
const child = children[i];
|
|
50029
50095
|
unmount(
|
|
@@ -50067,7 +50133,22 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50067
50133
|
function hydrateTeleport(node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized, {
|
|
50068
50134
|
o: { nextSibling, parentNode, querySelector, insert, createText }
|
|
50069
50135
|
}, hydrateChildren) {
|
|
50070
|
-
function
|
|
50136
|
+
function hydrateAnchor(target2, targetNode) {
|
|
50137
|
+
let targetAnchor = targetNode;
|
|
50138
|
+
while (targetAnchor) {
|
|
50139
|
+
if (targetAnchor && targetAnchor.nodeType === 8) {
|
|
50140
|
+
if (targetAnchor.data === "teleport start anchor") {
|
|
50141
|
+
vnode.targetStart = targetAnchor;
|
|
50142
|
+
} else if (targetAnchor.data === "teleport anchor") {
|
|
50143
|
+
vnode.targetAnchor = targetAnchor;
|
|
50144
|
+
target2._lpa = vnode.targetAnchor && nextSibling(vnode.targetAnchor);
|
|
50145
|
+
break;
|
|
50146
|
+
}
|
|
50147
|
+
}
|
|
50148
|
+
targetAnchor = nextSibling(targetAnchor);
|
|
50149
|
+
}
|
|
50150
|
+
}
|
|
50151
|
+
function hydrateDisabledTeleport(node2, vnode2) {
|
|
50071
50152
|
vnode2.anchor = hydrateChildren(
|
|
50072
50153
|
nextSibling(node2),
|
|
50073
50154
|
vnode2,
|
|
@@ -50077,8 +50158,6 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50077
50158
|
slotScopeIds,
|
|
50078
50159
|
optimized
|
|
50079
50160
|
);
|
|
50080
|
-
vnode2.targetStart = targetStart;
|
|
50081
|
-
vnode2.targetAnchor = targetAnchor;
|
|
50082
50161
|
}
|
|
50083
50162
|
const target = vnode.target = resolveTarget(
|
|
50084
50163
|
vnode.props,
|
|
@@ -50089,27 +50168,22 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50089
50168
|
const targetNode = target._lpa || target.firstChild;
|
|
50090
50169
|
if (vnode.shapeFlag & 16) {
|
|
50091
50170
|
if (disabled) {
|
|
50092
|
-
hydrateDisabledTeleport(
|
|
50093
|
-
|
|
50094
|
-
|
|
50095
|
-
|
|
50096
|
-
|
|
50097
|
-
|
|
50171
|
+
hydrateDisabledTeleport(node, vnode);
|
|
50172
|
+
hydrateAnchor(target, targetNode);
|
|
50173
|
+
if (!vnode.targetAnchor) {
|
|
50174
|
+
prepareAnchor(
|
|
50175
|
+
target,
|
|
50176
|
+
vnode,
|
|
50177
|
+
createText,
|
|
50178
|
+
insert,
|
|
50179
|
+
// if target is the same as the main view, insert anchors before current node
|
|
50180
|
+
// to avoid hydrating mismatch
|
|
50181
|
+
parentNode(node) === target ? node : null
|
|
50182
|
+
);
|
|
50183
|
+
}
|
|
50098
50184
|
} else {
|
|
50099
50185
|
vnode.anchor = nextSibling(node);
|
|
50100
|
-
|
|
50101
|
-
while (targetAnchor) {
|
|
50102
|
-
if (targetAnchor && targetAnchor.nodeType === 8) {
|
|
50103
|
-
if (targetAnchor.data === "teleport start anchor") {
|
|
50104
|
-
vnode.targetStart = targetAnchor;
|
|
50105
|
-
} else if (targetAnchor.data === "teleport anchor") {
|
|
50106
|
-
vnode.targetAnchor = targetAnchor;
|
|
50107
|
-
target._lpa = vnode.targetAnchor && nextSibling(vnode.targetAnchor);
|
|
50108
|
-
break;
|
|
50109
|
-
}
|
|
50110
|
-
}
|
|
50111
|
-
targetAnchor = nextSibling(targetAnchor);
|
|
50112
|
-
}
|
|
50186
|
+
hydrateAnchor(target, targetNode);
|
|
50113
50187
|
if (!vnode.targetAnchor) {
|
|
50114
50188
|
prepareAnchor(target, vnode, createText, insert);
|
|
50115
50189
|
}
|
|
@@ -50127,7 +50201,9 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50127
50201
|
updateCssVars(vnode, disabled);
|
|
50128
50202
|
} else if (disabled) {
|
|
50129
50203
|
if (vnode.shapeFlag & 16) {
|
|
50130
|
-
hydrateDisabledTeleport(node, vnode
|
|
50204
|
+
hydrateDisabledTeleport(node, vnode);
|
|
50205
|
+
vnode.targetStart = node;
|
|
50206
|
+
vnode.targetAnchor = nextSibling(node);
|
|
50131
50207
|
}
|
|
50132
50208
|
}
|
|
50133
50209
|
return vnode.anchor && nextSibling(vnode.anchor);
|
|
@@ -50151,13 +50227,13 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50151
50227
|
ctx.ut();
|
|
50152
50228
|
}
|
|
50153
50229
|
}
|
|
50154
|
-
function prepareAnchor(target, vnode, createText, insert) {
|
|
50230
|
+
function prepareAnchor(target, vnode, createText, insert, anchor = null) {
|
|
50155
50231
|
const targetStart = vnode.targetStart = createText("");
|
|
50156
50232
|
const targetAnchor = vnode.targetAnchor = createText("");
|
|
50157
50233
|
targetStart[TeleportEndKey] = targetAnchor;
|
|
50158
50234
|
if (target) {
|
|
50159
|
-
insert(targetStart, target);
|
|
50160
|
-
insert(targetAnchor, target);
|
|
50235
|
+
insert(targetStart, target, anchor);
|
|
50236
|
+
insert(targetAnchor, target, anchor);
|
|
50161
50237
|
}
|
|
50162
50238
|
return targetAnchor;
|
|
50163
50239
|
}
|
|
@@ -50368,6 +50444,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50368
50444
|
callHook2(hook, [el]);
|
|
50369
50445
|
},
|
|
50370
50446
|
enter(el) {
|
|
50447
|
+
if (leavingVNodesCache[key] === vnode) return;
|
|
50371
50448
|
let hook = onEnter;
|
|
50372
50449
|
let afterHook = onAfterEnter;
|
|
50373
50450
|
let cancelHook = onEnterCancelled;
|
|
@@ -50381,7 +50458,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50381
50458
|
}
|
|
50382
50459
|
}
|
|
50383
50460
|
let called = false;
|
|
50384
|
-
|
|
50461
|
+
el[enterCbKey] = (cancelled) => {
|
|
50385
50462
|
if (called) return;
|
|
50386
50463
|
called = true;
|
|
50387
50464
|
if (cancelled) {
|
|
@@ -50394,6 +50471,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50394
50471
|
}
|
|
50395
50472
|
el[enterCbKey] = void 0;
|
|
50396
50473
|
};
|
|
50474
|
+
const done = el[enterCbKey].bind(null, false);
|
|
50397
50475
|
if (hook) {
|
|
50398
50476
|
callAsyncHook(hook, [el, done]);
|
|
50399
50477
|
} else {
|
|
@@ -50413,7 +50491,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50413
50491
|
}
|
|
50414
50492
|
callHook2(onBeforeLeave, [el]);
|
|
50415
50493
|
let called = false;
|
|
50416
|
-
|
|
50494
|
+
el[leaveCbKey] = (cancelled) => {
|
|
50417
50495
|
if (called) return;
|
|
50418
50496
|
called = true;
|
|
50419
50497
|
remove();
|
|
@@ -50427,6 +50505,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50427
50505
|
delete leavingVNodesCache[key2];
|
|
50428
50506
|
}
|
|
50429
50507
|
};
|
|
50508
|
+
const done = el[leaveCbKey].bind(null, false);
|
|
50430
50509
|
leavingVNodesCache[key2] = vnode;
|
|
50431
50510
|
if (onLeave) {
|
|
50432
50511
|
callAsyncHook(onLeave, [el, done]);
|
|
@@ -50542,6 +50621,10 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50542
50621
|
const ret = r;
|
|
50543
50622
|
return ret;
|
|
50544
50623
|
}
|
|
50624
|
+
function isTemplateRefKey(refs, key) {
|
|
50625
|
+
let desc;
|
|
50626
|
+
return !!((desc = Object.getOwnPropertyDescriptor(refs, key)) && !desc.configurable);
|
|
50627
|
+
}
|
|
50545
50628
|
var pendingSetRefMap = /* @__PURE__ */ new WeakMap();
|
|
50546
50629
|
function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
50547
50630
|
if (shared.isArray(rawRef)) {
|
|
@@ -50570,8 +50653,17 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50570
50653
|
const setupState = owner.setupState;
|
|
50571
50654
|
const rawSetupState = reactivity.toRaw(setupState);
|
|
50572
50655
|
const canSetSetupRef = setupState === shared.EMPTY_OBJ ? shared.NO : (key) => {
|
|
50656
|
+
if (isTemplateRefKey(refs, key)) {
|
|
50657
|
+
return false;
|
|
50658
|
+
}
|
|
50573
50659
|
return shared.hasOwn(rawSetupState, key);
|
|
50574
50660
|
};
|
|
50661
|
+
const canSetRef = (ref2, key) => {
|
|
50662
|
+
if (key && isTemplateRefKey(refs, key)) {
|
|
50663
|
+
return false;
|
|
50664
|
+
}
|
|
50665
|
+
return true;
|
|
50666
|
+
};
|
|
50575
50667
|
if (oldRef != null && oldRef !== ref) {
|
|
50576
50668
|
invalidatePendingSetRef(oldRawRef);
|
|
50577
50669
|
if (shared.isString(oldRef)) {
|
|
@@ -50580,10 +50672,10 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50580
50672
|
setupState[oldRef] = null;
|
|
50581
50673
|
}
|
|
50582
50674
|
} else if (reactivity.isRef(oldRef)) {
|
|
50583
|
-
|
|
50675
|
+
const oldRawRefAtom = oldRawRef;
|
|
50676
|
+
if (canSetRef(oldRef, oldRawRefAtom.k)) {
|
|
50584
50677
|
oldRef.value = null;
|
|
50585
50678
|
}
|
|
50586
|
-
const oldRawRefAtom = oldRawRef;
|
|
50587
50679
|
if (oldRawRefAtom.k) refs[oldRawRefAtom.k] = null;
|
|
50588
50680
|
}
|
|
50589
50681
|
}
|
|
@@ -50595,7 +50687,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50595
50687
|
if (_isString || _isRef) {
|
|
50596
50688
|
const doSet = () => {
|
|
50597
50689
|
if (rawRef.f) {
|
|
50598
|
-
const existing = _isString ? canSetSetupRef(ref) ? setupState[ref] : refs[ref] : ref.value;
|
|
50690
|
+
const existing = _isString ? canSetSetupRef(ref) ? setupState[ref] : refs[ref] : canSetRef() || !rawRef.k ? ref.value : refs[rawRef.k];
|
|
50599
50691
|
if (isUnmount) {
|
|
50600
50692
|
shared.isArray(existing) && shared.remove(existing, refValue);
|
|
50601
50693
|
} else {
|
|
@@ -50607,7 +50699,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50607
50699
|
}
|
|
50608
50700
|
} else {
|
|
50609
50701
|
const newVal = [refValue];
|
|
50610
|
-
{
|
|
50702
|
+
if (canSetRef(ref, rawRef.k)) {
|
|
50611
50703
|
ref.value = newVal;
|
|
50612
50704
|
}
|
|
50613
50705
|
if (rawRef.k) refs[rawRef.k] = newVal;
|
|
@@ -50622,7 +50714,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50622
50714
|
setupState[ref] = value;
|
|
50623
50715
|
}
|
|
50624
50716
|
} else if (_isRef) {
|
|
50625
|
-
{
|
|
50717
|
+
if (canSetRef(ref, rawRef.k)) {
|
|
50626
50718
|
ref.value = value;
|
|
50627
50719
|
}
|
|
50628
50720
|
if (rawRef.k) refs[rawRef.k] = value;
|
|
@@ -50925,7 +51017,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
50925
51017
|
const isCustomElement = el.tagName.includes("-");
|
|
50926
51018
|
for (const key in props) {
|
|
50927
51019
|
if (forcePatch && (key.endsWith("value") || key === "indeterminate") || shared.isOn(key) && !shared.isReservedProp(key) || // force hydrate v-bind with .prop modifiers
|
|
50928
|
-
key[0] === "." || isCustomElement) {
|
|
51020
|
+
key[0] === "." || isCustomElement && !shared.isReservedProp(key)) {
|
|
50929
51021
|
patchProp(el, key, null, props[key], void 0, parentComponent);
|
|
50930
51022
|
}
|
|
50931
51023
|
}
|
|
@@ -51759,9 +51851,11 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
51759
51851
|
);
|
|
51760
51852
|
}
|
|
51761
51853
|
} else if (typeof source === "number") {
|
|
51762
|
-
|
|
51763
|
-
|
|
51764
|
-
|
|
51854
|
+
{
|
|
51855
|
+
ret = new Array(source);
|
|
51856
|
+
for (let i = 0; i < source; i++) {
|
|
51857
|
+
ret[i] = renderItem(i + 1, i, void 0, cached2 && cached2[i]);
|
|
51858
|
+
}
|
|
51765
51859
|
}
|
|
51766
51860
|
} else if (shared.isObject(source)) {
|
|
51767
51861
|
if (source[Symbol.iterator]) {
|
|
@@ -52063,15 +52157,39 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
52063
52157
|
}
|
|
52064
52158
|
function withAsyncContext(getAwaitable) {
|
|
52065
52159
|
const ctx = getCurrentInstance();
|
|
52160
|
+
const inSSRSetup = isInSSRComponentSetup;
|
|
52066
52161
|
let awaitable = getAwaitable();
|
|
52067
52162
|
unsetCurrentInstance();
|
|
52163
|
+
if (inSSRSetup) {
|
|
52164
|
+
setInSSRSetupState(false);
|
|
52165
|
+
}
|
|
52166
|
+
const restore = () => {
|
|
52167
|
+
setCurrentInstance(ctx);
|
|
52168
|
+
if (inSSRSetup) {
|
|
52169
|
+
setInSSRSetupState(true);
|
|
52170
|
+
}
|
|
52171
|
+
};
|
|
52172
|
+
const cleanup = () => {
|
|
52173
|
+
if (getCurrentInstance() !== ctx) ctx.scope.off();
|
|
52174
|
+
unsetCurrentInstance();
|
|
52175
|
+
if (inSSRSetup) {
|
|
52176
|
+
setInSSRSetupState(false);
|
|
52177
|
+
}
|
|
52178
|
+
};
|
|
52068
52179
|
if (shared.isPromise(awaitable)) {
|
|
52069
52180
|
awaitable = awaitable.catch((e) => {
|
|
52070
|
-
|
|
52181
|
+
restore();
|
|
52182
|
+
Promise.resolve().then(() => Promise.resolve().then(cleanup));
|
|
52071
52183
|
throw e;
|
|
52072
52184
|
});
|
|
52073
52185
|
}
|
|
52074
|
-
return [
|
|
52186
|
+
return [
|
|
52187
|
+
awaitable,
|
|
52188
|
+
() => {
|
|
52189
|
+
restore();
|
|
52190
|
+
Promise.resolve().then(cleanup);
|
|
52191
|
+
}
|
|
52192
|
+
];
|
|
52075
52193
|
}
|
|
52076
52194
|
var shouldCacheAccess = true;
|
|
52077
52195
|
function applyOptions(instance) {
|
|
@@ -52854,7 +52972,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
52854
52972
|
const dynamicProps = nextVNode.dynamicProps;
|
|
52855
52973
|
for (let i = 0; i < dynamicProps.length; i++) {
|
|
52856
52974
|
const key = dynamicProps[i];
|
|
52857
|
-
if (nextProps
|
|
52975
|
+
if (hasPropValueChanged(nextProps, prevProps, key) && !isEmitListener(emits, key)) {
|
|
52858
52976
|
return true;
|
|
52859
52977
|
}
|
|
52860
52978
|
}
|
|
@@ -52885,17 +53003,26 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
52885
53003
|
}
|
|
52886
53004
|
for (let i = 0; i < nextKeys.length; i++) {
|
|
52887
53005
|
const key = nextKeys[i];
|
|
52888
|
-
if (nextProps
|
|
53006
|
+
if (hasPropValueChanged(nextProps, prevProps, key) && !isEmitListener(emitsOptions, key)) {
|
|
52889
53007
|
return true;
|
|
52890
53008
|
}
|
|
52891
53009
|
}
|
|
52892
53010
|
return false;
|
|
52893
53011
|
}
|
|
52894
|
-
function
|
|
53012
|
+
function hasPropValueChanged(nextProps, prevProps, key) {
|
|
53013
|
+
const nextProp = nextProps[key];
|
|
53014
|
+
const prevProp = prevProps[key];
|
|
53015
|
+
if (key === "style" && shared.isObject(nextProp) && shared.isObject(prevProp)) {
|
|
53016
|
+
return !shared.looseEqual(nextProp, prevProp);
|
|
53017
|
+
}
|
|
53018
|
+
return nextProp !== prevProp;
|
|
53019
|
+
}
|
|
53020
|
+
function updateHOCHostEl({ vnode, parent, suspense }, el) {
|
|
52895
53021
|
while (parent) {
|
|
52896
53022
|
const root = parent.subTree;
|
|
52897
53023
|
if (root.suspense && root.suspense.activeBranch === vnode) {
|
|
52898
|
-
root.el =
|
|
53024
|
+
root.suspense.vnode.el = root.el = el;
|
|
53025
|
+
vnode = root;
|
|
52899
53026
|
}
|
|
52900
53027
|
if (root === vnode) {
|
|
52901
53028
|
(vnode = parent.vnode).el = el;
|
|
@@ -52904,6 +53031,9 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
52904
53031
|
break;
|
|
52905
53032
|
}
|
|
52906
53033
|
}
|
|
53034
|
+
if (suspense && suspense.activeBranch === vnode) {
|
|
53035
|
+
suspense.vnode.el = el;
|
|
53036
|
+
}
|
|
52907
53037
|
}
|
|
52908
53038
|
var internalObjectProto = {};
|
|
52909
53039
|
var createInternalObject = () => Object.create(internalObjectProto);
|
|
@@ -53405,9 +53535,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
53405
53535
|
} else {
|
|
53406
53536
|
const el = n22.el = n1.el;
|
|
53407
53537
|
if (n22.children !== n1.children) {
|
|
53408
|
-
|
|
53409
|
-
hostSetText(el, n22.children);
|
|
53410
|
-
}
|
|
53538
|
+
hostSetText(el, n22.children);
|
|
53411
53539
|
}
|
|
53412
53540
|
}
|
|
53413
53541
|
};
|
|
@@ -53468,7 +53596,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
53468
53596
|
optimized
|
|
53469
53597
|
);
|
|
53470
53598
|
} else {
|
|
53471
|
-
const customElement =
|
|
53599
|
+
const customElement = n1.el && n1.el._isVueCE ? n1.el : null;
|
|
53472
53600
|
try {
|
|
53473
53601
|
if (customElement) {
|
|
53474
53602
|
customElement._beginPatch();
|
|
@@ -53540,9 +53668,12 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
53540
53668
|
hostInsert(el, container, anchor);
|
|
53541
53669
|
if ((vnodeHook = props && props.onVnodeMounted) || needCallTransitionHooks || dirs) {
|
|
53542
53670
|
queuePostRenderEffect(() => {
|
|
53543
|
-
|
|
53544
|
-
|
|
53545
|
-
|
|
53671
|
+
try {
|
|
53672
|
+
vnodeHook && invokeVNodeHook(vnodeHook, parentComponent, vnode);
|
|
53673
|
+
needCallTransitionHooks && transition.enter(el);
|
|
53674
|
+
dirs && invokeDirectiveHook(vnode, null, parentComponent, "mounted");
|
|
53675
|
+
} finally {
|
|
53676
|
+
}
|
|
53546
53677
|
}, parentSuspense);
|
|
53547
53678
|
}
|
|
53548
53679
|
};
|
|
@@ -53899,9 +54030,11 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
53899
54030
|
hydrateSubTree();
|
|
53900
54031
|
}
|
|
53901
54032
|
} else {
|
|
53902
|
-
if (root.ce &&
|
|
53903
|
-
|
|
53904
|
-
|
|
54033
|
+
if (root.ce && root.ce._hasShadowRoot()) {
|
|
54034
|
+
root.ce._injectChildStyle(
|
|
54035
|
+
type,
|
|
54036
|
+
instance.parent ? instance.parent.type : void 0
|
|
54037
|
+
);
|
|
53905
54038
|
}
|
|
53906
54039
|
const subTree = instance.subTree = renderComponentRoot(instance);
|
|
53907
54040
|
patch(
|
|
@@ -53940,9 +54073,9 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
53940
54073
|
updateComponentPreRender(instance, next, optimized);
|
|
53941
54074
|
}
|
|
53942
54075
|
nonHydratedAsyncRoot.asyncDep.then(() => {
|
|
53943
|
-
|
|
53944
|
-
|
|
53945
|
-
}
|
|
54076
|
+
queuePostRenderEffect(() => {
|
|
54077
|
+
if (!instance.isUnmounted) update();
|
|
54078
|
+
}, parentSuspense);
|
|
53946
54079
|
});
|
|
53947
54080
|
return;
|
|
53948
54081
|
}
|
|
@@ -54367,7 +54500,8 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
54367
54500
|
shapeFlag,
|
|
54368
54501
|
patchFlag,
|
|
54369
54502
|
dirs,
|
|
54370
|
-
cacheIndex
|
|
54503
|
+
cacheIndex,
|
|
54504
|
+
memo
|
|
54371
54505
|
} = vnode;
|
|
54372
54506
|
if (patchFlag === -2) {
|
|
54373
54507
|
optimized = false;
|
|
@@ -54429,10 +54563,14 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
54429
54563
|
remove(vnode);
|
|
54430
54564
|
}
|
|
54431
54565
|
}
|
|
54432
|
-
|
|
54566
|
+
const shouldInvalidateMemo = memo != null && cacheIndex == null;
|
|
54567
|
+
if (shouldInvokeVnodeHook && (vnodeHook = props && props.onVnodeUnmounted) || shouldInvokeDirs || shouldInvalidateMemo) {
|
|
54433
54568
|
queuePostRenderEffect(() => {
|
|
54434
54569
|
vnodeHook && invokeVNodeHook(vnodeHook, parentComponent, vnode);
|
|
54435
54570
|
shouldInvokeDirs && invokeDirectiveHook(vnode, null, parentComponent, "unmounted");
|
|
54571
|
+
if (shouldInvalidateMemo) {
|
|
54572
|
+
vnode.el = null;
|
|
54573
|
+
}
|
|
54436
54574
|
}, parentSuspense);
|
|
54437
54575
|
}
|
|
54438
54576
|
};
|
|
@@ -54593,12 +54731,10 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
54593
54731
|
traverseStaticChildren(c1, c2);
|
|
54594
54732
|
}
|
|
54595
54733
|
if (c2.type === Text) {
|
|
54596
|
-
if (c2.patchFlag
|
|
54597
|
-
c2
|
|
54598
|
-
} else {
|
|
54599
|
-
c2.__elIndex = i + // take fragment start anchor into account
|
|
54600
|
-
(n1.type === Fragment ? 1 : 0);
|
|
54734
|
+
if (c2.patchFlag === -1) {
|
|
54735
|
+
c2 = ch2[i] = cloneIfMounted(c2);
|
|
54601
54736
|
}
|
|
54737
|
+
c2.el = c1.el;
|
|
54602
54738
|
}
|
|
54603
54739
|
if (c2.type === Comment && !c2.el) {
|
|
54604
54740
|
c2.el = c1.el;
|
|
@@ -54960,6 +55096,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
54960
55096
|
pendingId: suspenseId++,
|
|
54961
55097
|
timeout: typeof timeout === "number" ? timeout : -1,
|
|
54962
55098
|
activeBranch: null,
|
|
55099
|
+
isFallbackMountPending: false,
|
|
54963
55100
|
pendingBranch: null,
|
|
54964
55101
|
isInFallback: !isHydrating,
|
|
54965
55102
|
isHydrating,
|
|
@@ -54997,7 +55134,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
54997
55134
|
}
|
|
54998
55135
|
};
|
|
54999
55136
|
}
|
|
55000
|
-
if (activeBranch) {
|
|
55137
|
+
if (activeBranch && !suspense.isFallbackMountPending) {
|
|
55001
55138
|
if (parentNode(activeBranch.el) === container2) {
|
|
55002
55139
|
anchor = next(activeBranch);
|
|
55003
55140
|
}
|
|
@@ -55010,6 +55147,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
55010
55147
|
move(pendingBranch, container2, anchor, 0);
|
|
55011
55148
|
}
|
|
55012
55149
|
}
|
|
55150
|
+
suspense.isFallbackMountPending = false;
|
|
55013
55151
|
setActiveBranch(suspense, pendingBranch);
|
|
55014
55152
|
suspense.pendingBranch = null;
|
|
55015
55153
|
suspense.isInFallback = false;
|
|
@@ -55045,6 +55183,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
55045
55183
|
triggerEvent(vnode2, "onFallback");
|
|
55046
55184
|
const anchor2 = next(activeBranch);
|
|
55047
55185
|
const mountFallback = () => {
|
|
55186
|
+
suspense.isFallbackMountPending = false;
|
|
55048
55187
|
if (!suspense.isInFallback) {
|
|
55049
55188
|
return;
|
|
55050
55189
|
}
|
|
@@ -55064,6 +55203,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
55064
55203
|
};
|
|
55065
55204
|
const delayEnter = fallbackVNode.transition && fallbackVNode.transition.mode === "out-in";
|
|
55066
55205
|
if (delayEnter) {
|
|
55206
|
+
suspense.isFallbackMountPending = true;
|
|
55067
55207
|
activeBranch.transition.afterLeave = mountFallback;
|
|
55068
55208
|
}
|
|
55069
55209
|
suspense.isInFallback = true;
|
|
@@ -55098,6 +55238,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
55098
55238
|
if (instance.isUnmounted || suspense.isUnmounted || suspense.pendingId !== instance.suspenseId) {
|
|
55099
55239
|
return;
|
|
55100
55240
|
}
|
|
55241
|
+
unsetCurrentInstance();
|
|
55101
55242
|
instance.asyncResolved = true;
|
|
55102
55243
|
const { vnode: vnode2 } = instance;
|
|
55103
55244
|
handleSetupResult(instance, asyncSetupResult, false);
|
|
@@ -55567,6 +55708,10 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
55567
55708
|
const incoming = toMerge[key];
|
|
55568
55709
|
if (incoming && existing !== incoming && !(shared.isArray(existing) && existing.includes(incoming))) {
|
|
55569
55710
|
ret[key] = existing ? [].concat(existing, incoming) : incoming;
|
|
55711
|
+
} else if (incoming == null && existing == null && // mergeProps({ 'onUpdate:modelValue': undefined }) should not retain
|
|
55712
|
+
// the model listener.
|
|
55713
|
+
!shared.isModelListener(key)) {
|
|
55714
|
+
ret[key] = incoming;
|
|
55570
55715
|
}
|
|
55571
55716
|
} else if (key !== "") {
|
|
55572
55717
|
ret[key] = toMerge[key];
|
|
@@ -55927,7 +56072,7 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
55927
56072
|
}
|
|
55928
56073
|
return true;
|
|
55929
56074
|
}
|
|
55930
|
-
var version3 = "3.5.
|
|
56075
|
+
var version3 = "3.5.32";
|
|
55931
56076
|
var warn$1 = shared.NOOP;
|
|
55932
56077
|
var ErrorTypeStrings = ErrorTypeStrings$1;
|
|
55933
56078
|
var devtools = void 0;
|
|
@@ -56097,9 +56242,9 @@ var require_runtime_core_cjs_prod = __commonJS({
|
|
|
56097
56242
|
}
|
|
56098
56243
|
});
|
|
56099
56244
|
|
|
56100
|
-
// ../../node_modules/.pnpm/@vue+runtime-core@3.5.
|
|
56245
|
+
// ../../node_modules/.pnpm/@vue+runtime-core@3.5.32/node_modules/@vue/runtime-core/dist/runtime-core.cjs.js
|
|
56101
56246
|
var require_runtime_core_cjs = __commonJS({
|
|
56102
|
-
"../../node_modules/.pnpm/@vue+runtime-core@3.5.
|
|
56247
|
+
"../../node_modules/.pnpm/@vue+runtime-core@3.5.32/node_modules/@vue/runtime-core/dist/runtime-core.cjs.js"(exports2) {
|
|
56103
56248
|
"use strict";
|
|
56104
56249
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
56105
56250
|
var reactivity = require_reactivity();
|
|
@@ -56536,6 +56681,13 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
56536
56681
|
return false;
|
|
56537
56682
|
}
|
|
56538
56683
|
var isHmrUpdating = false;
|
|
56684
|
+
var setHmrUpdating = (v) => {
|
|
56685
|
+
try {
|
|
56686
|
+
return isHmrUpdating;
|
|
56687
|
+
} finally {
|
|
56688
|
+
isHmrUpdating = v;
|
|
56689
|
+
}
|
|
56690
|
+
};
|
|
56539
56691
|
var hmrDirtyComponents = /* @__PURE__ */ new Map();
|
|
56540
56692
|
{
|
|
56541
56693
|
shared.getGlobalThis().__VUE_HMR_RUNTIME__ = {
|
|
@@ -57035,6 +57187,7 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57035
57187
|
return cur;
|
|
57036
57188
|
};
|
|
57037
57189
|
}
|
|
57190
|
+
var pendingMounts = /* @__PURE__ */ new WeakMap();
|
|
57038
57191
|
var TeleportEndKey = /* @__PURE__ */ Symbol("_vte");
|
|
57039
57192
|
var isTeleport = (type) => type.__isTeleport;
|
|
57040
57193
|
var isTeleportDisabled = (props) => props && (props.disabled || props.disabled === "");
|
|
@@ -57076,88 +57229,84 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57076
57229
|
o: { insert, querySelector, createText, createComment }
|
|
57077
57230
|
} = internals;
|
|
57078
57231
|
const disabled = isTeleportDisabled(n22.props);
|
|
57079
|
-
let {
|
|
57232
|
+
let { dynamicChildren } = n22;
|
|
57080
57233
|
if (isHmrUpdating) {
|
|
57081
57234
|
optimized = false;
|
|
57082
57235
|
dynamicChildren = null;
|
|
57083
57236
|
}
|
|
57237
|
+
const mount = (vnode, container2, anchor2) => {
|
|
57238
|
+
if (vnode.shapeFlag & 16) {
|
|
57239
|
+
mountChildren(
|
|
57240
|
+
vnode.children,
|
|
57241
|
+
container2,
|
|
57242
|
+
anchor2,
|
|
57243
|
+
parentComponent,
|
|
57244
|
+
parentSuspense,
|
|
57245
|
+
namespace,
|
|
57246
|
+
slotScopeIds,
|
|
57247
|
+
optimized
|
|
57248
|
+
);
|
|
57249
|
+
}
|
|
57250
|
+
};
|
|
57251
|
+
const mountToTarget = (vnode = n22) => {
|
|
57252
|
+
const disabled2 = isTeleportDisabled(vnode.props);
|
|
57253
|
+
const target = vnode.target = resolveTarget(vnode.props, querySelector);
|
|
57254
|
+
const targetAnchor = prepareAnchor(target, vnode, createText, insert);
|
|
57255
|
+
if (target) {
|
|
57256
|
+
if (namespace !== "svg" && isTargetSVG(target)) {
|
|
57257
|
+
namespace = "svg";
|
|
57258
|
+
} else if (namespace !== "mathml" && isTargetMathML(target)) {
|
|
57259
|
+
namespace = "mathml";
|
|
57260
|
+
}
|
|
57261
|
+
if (parentComponent && parentComponent.isCE) {
|
|
57262
|
+
(parentComponent.ce._teleportTargets || (parentComponent.ce._teleportTargets = /* @__PURE__ */ new Set())).add(target);
|
|
57263
|
+
}
|
|
57264
|
+
if (!disabled2) {
|
|
57265
|
+
mount(vnode, target, targetAnchor);
|
|
57266
|
+
updateCssVars(vnode, false);
|
|
57267
|
+
}
|
|
57268
|
+
} else if (!disabled2) {
|
|
57269
|
+
warn$1("Invalid Teleport target on mount:", target, `(${typeof target})`);
|
|
57270
|
+
}
|
|
57271
|
+
};
|
|
57272
|
+
const queuePendingMount = (vnode) => {
|
|
57273
|
+
const mountJob = () => {
|
|
57274
|
+
if (pendingMounts.get(vnode) !== mountJob) return;
|
|
57275
|
+
pendingMounts.delete(vnode);
|
|
57276
|
+
if (isTeleportDisabled(vnode.props)) {
|
|
57277
|
+
mount(vnode, container, vnode.anchor);
|
|
57278
|
+
updateCssVars(vnode, true);
|
|
57279
|
+
}
|
|
57280
|
+
mountToTarget(vnode);
|
|
57281
|
+
};
|
|
57282
|
+
pendingMounts.set(vnode, mountJob);
|
|
57283
|
+
queuePostRenderEffect(mountJob, parentSuspense);
|
|
57284
|
+
};
|
|
57084
57285
|
if (n1 == null) {
|
|
57085
57286
|
const placeholder = n22.el = createComment("teleport start");
|
|
57086
57287
|
const mainAnchor = n22.anchor = createComment("teleport end");
|
|
57087
57288
|
insert(placeholder, container, anchor);
|
|
57088
57289
|
insert(mainAnchor, container, anchor);
|
|
57089
|
-
|
|
57090
|
-
|
|
57091
|
-
|
|
57092
|
-
|
|
57093
|
-
container2,
|
|
57094
|
-
anchor2,
|
|
57095
|
-
parentComponent,
|
|
57096
|
-
parentSuspense,
|
|
57097
|
-
namespace,
|
|
57098
|
-
slotScopeIds,
|
|
57099
|
-
optimized
|
|
57100
|
-
);
|
|
57101
|
-
}
|
|
57102
|
-
};
|
|
57103
|
-
const mountToTarget = () => {
|
|
57104
|
-
const target = n22.target = resolveTarget(n22.props, querySelector);
|
|
57105
|
-
const targetAnchor = prepareAnchor(target, n22, createText, insert);
|
|
57106
|
-
if (target) {
|
|
57107
|
-
if (namespace !== "svg" && isTargetSVG(target)) {
|
|
57108
|
-
namespace = "svg";
|
|
57109
|
-
} else if (namespace !== "mathml" && isTargetMathML(target)) {
|
|
57110
|
-
namespace = "mathml";
|
|
57111
|
-
}
|
|
57112
|
-
if (parentComponent && parentComponent.isCE) {
|
|
57113
|
-
(parentComponent.ce._teleportTargets || (parentComponent.ce._teleportTargets = /* @__PURE__ */ new Set())).add(target);
|
|
57114
|
-
}
|
|
57115
|
-
if (!disabled) {
|
|
57116
|
-
mount(target, targetAnchor);
|
|
57117
|
-
updateCssVars(n22, false);
|
|
57118
|
-
}
|
|
57119
|
-
} else if (!disabled) {
|
|
57120
|
-
warn$1(
|
|
57121
|
-
"Invalid Teleport target on mount:",
|
|
57122
|
-
target,
|
|
57123
|
-
`(${typeof target})`
|
|
57124
|
-
);
|
|
57125
|
-
}
|
|
57126
|
-
};
|
|
57290
|
+
if (isTeleportDeferred(n22.props) || parentSuspense && parentSuspense.pendingBranch) {
|
|
57291
|
+
queuePendingMount(n22);
|
|
57292
|
+
return;
|
|
57293
|
+
}
|
|
57127
57294
|
if (disabled) {
|
|
57128
|
-
mount(container, mainAnchor);
|
|
57295
|
+
mount(n22, container, mainAnchor);
|
|
57129
57296
|
updateCssVars(n22, true);
|
|
57130
57297
|
}
|
|
57131
|
-
|
|
57132
|
-
n22.el.__isMounted = false;
|
|
57133
|
-
queuePostRenderEffect(() => {
|
|
57134
|
-
mountToTarget();
|
|
57135
|
-
delete n22.el.__isMounted;
|
|
57136
|
-
}, parentSuspense);
|
|
57137
|
-
} else {
|
|
57138
|
-
mountToTarget();
|
|
57139
|
-
}
|
|
57298
|
+
mountToTarget();
|
|
57140
57299
|
} else {
|
|
57141
|
-
|
|
57142
|
-
|
|
57143
|
-
|
|
57144
|
-
|
|
57145
|
-
|
|
57146
|
-
|
|
57147
|
-
|
|
57148
|
-
parentComponent,
|
|
57149
|
-
parentSuspense,
|
|
57150
|
-
namespace,
|
|
57151
|
-
slotScopeIds,
|
|
57152
|
-
optimized,
|
|
57153
|
-
internals
|
|
57154
|
-
);
|
|
57155
|
-
}, parentSuspense);
|
|
57300
|
+
n22.el = n1.el;
|
|
57301
|
+
const mainAnchor = n22.anchor = n1.anchor;
|
|
57302
|
+
const pendingMount = pendingMounts.get(n1);
|
|
57303
|
+
if (pendingMount) {
|
|
57304
|
+
pendingMount.flags |= 8;
|
|
57305
|
+
pendingMounts.delete(n1);
|
|
57306
|
+
queuePendingMount(n22);
|
|
57156
57307
|
return;
|
|
57157
57308
|
}
|
|
57158
|
-
n22.el = n1.el;
|
|
57159
57309
|
n22.targetStart = n1.targetStart;
|
|
57160
|
-
const mainAnchor = n22.anchor = n1.anchor;
|
|
57161
57310
|
const target = n22.target = n1.target;
|
|
57162
57311
|
const targetAnchor = n22.targetAnchor = n1.targetAnchor;
|
|
57163
57312
|
const wasDisabled = isTeleportDisabled(n1.props);
|
|
@@ -57250,13 +57399,19 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57250
57399
|
target,
|
|
57251
57400
|
props
|
|
57252
57401
|
} = vnode;
|
|
57402
|
+
let shouldRemove = doRemove || !isTeleportDisabled(props);
|
|
57403
|
+
const pendingMount = pendingMounts.get(vnode);
|
|
57404
|
+
if (pendingMount) {
|
|
57405
|
+
pendingMount.flags |= 8;
|
|
57406
|
+
pendingMounts.delete(vnode);
|
|
57407
|
+
shouldRemove = false;
|
|
57408
|
+
}
|
|
57253
57409
|
if (target) {
|
|
57254
57410
|
hostRemove(targetStart);
|
|
57255
57411
|
hostRemove(targetAnchor);
|
|
57256
57412
|
}
|
|
57257
57413
|
doRemove && hostRemove(anchor);
|
|
57258
57414
|
if (shapeFlag & 16) {
|
|
57259
|
-
const shouldRemove = doRemove || !isTeleportDisabled(props);
|
|
57260
57415
|
for (let i = 0; i < children.length; i++) {
|
|
57261
57416
|
const child = children[i];
|
|
57262
57417
|
unmount(
|
|
@@ -57300,7 +57455,22 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57300
57455
|
function hydrateTeleport(node, vnode, parentComponent, parentSuspense, slotScopeIds, optimized, {
|
|
57301
57456
|
o: { nextSibling, parentNode, querySelector, insert, createText }
|
|
57302
57457
|
}, hydrateChildren) {
|
|
57303
|
-
function
|
|
57458
|
+
function hydrateAnchor(target2, targetNode) {
|
|
57459
|
+
let targetAnchor = targetNode;
|
|
57460
|
+
while (targetAnchor) {
|
|
57461
|
+
if (targetAnchor && targetAnchor.nodeType === 8) {
|
|
57462
|
+
if (targetAnchor.data === "teleport start anchor") {
|
|
57463
|
+
vnode.targetStart = targetAnchor;
|
|
57464
|
+
} else if (targetAnchor.data === "teleport anchor") {
|
|
57465
|
+
vnode.targetAnchor = targetAnchor;
|
|
57466
|
+
target2._lpa = vnode.targetAnchor && nextSibling(vnode.targetAnchor);
|
|
57467
|
+
break;
|
|
57468
|
+
}
|
|
57469
|
+
}
|
|
57470
|
+
targetAnchor = nextSibling(targetAnchor);
|
|
57471
|
+
}
|
|
57472
|
+
}
|
|
57473
|
+
function hydrateDisabledTeleport(node2, vnode2) {
|
|
57304
57474
|
vnode2.anchor = hydrateChildren(
|
|
57305
57475
|
nextSibling(node2),
|
|
57306
57476
|
vnode2,
|
|
@@ -57310,8 +57480,6 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57310
57480
|
slotScopeIds,
|
|
57311
57481
|
optimized
|
|
57312
57482
|
);
|
|
57313
|
-
vnode2.targetStart = targetStart;
|
|
57314
|
-
vnode2.targetAnchor = targetAnchor;
|
|
57315
57483
|
}
|
|
57316
57484
|
const target = vnode.target = resolveTarget(
|
|
57317
57485
|
vnode.props,
|
|
@@ -57322,27 +57490,22 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57322
57490
|
const targetNode = target._lpa || target.firstChild;
|
|
57323
57491
|
if (vnode.shapeFlag & 16) {
|
|
57324
57492
|
if (disabled) {
|
|
57325
|
-
hydrateDisabledTeleport(
|
|
57326
|
-
|
|
57327
|
-
|
|
57328
|
-
|
|
57329
|
-
|
|
57330
|
-
|
|
57493
|
+
hydrateDisabledTeleport(node, vnode);
|
|
57494
|
+
hydrateAnchor(target, targetNode);
|
|
57495
|
+
if (!vnode.targetAnchor) {
|
|
57496
|
+
prepareAnchor(
|
|
57497
|
+
target,
|
|
57498
|
+
vnode,
|
|
57499
|
+
createText,
|
|
57500
|
+
insert,
|
|
57501
|
+
// if target is the same as the main view, insert anchors before current node
|
|
57502
|
+
// to avoid hydrating mismatch
|
|
57503
|
+
parentNode(node) === target ? node : null
|
|
57504
|
+
);
|
|
57505
|
+
}
|
|
57331
57506
|
} else {
|
|
57332
57507
|
vnode.anchor = nextSibling(node);
|
|
57333
|
-
|
|
57334
|
-
while (targetAnchor) {
|
|
57335
|
-
if (targetAnchor && targetAnchor.nodeType === 8) {
|
|
57336
|
-
if (targetAnchor.data === "teleport start anchor") {
|
|
57337
|
-
vnode.targetStart = targetAnchor;
|
|
57338
|
-
} else if (targetAnchor.data === "teleport anchor") {
|
|
57339
|
-
vnode.targetAnchor = targetAnchor;
|
|
57340
|
-
target._lpa = vnode.targetAnchor && nextSibling(vnode.targetAnchor);
|
|
57341
|
-
break;
|
|
57342
|
-
}
|
|
57343
|
-
}
|
|
57344
|
-
targetAnchor = nextSibling(targetAnchor);
|
|
57345
|
-
}
|
|
57508
|
+
hydrateAnchor(target, targetNode);
|
|
57346
57509
|
if (!vnode.targetAnchor) {
|
|
57347
57510
|
prepareAnchor(target, vnode, createText, insert);
|
|
57348
57511
|
}
|
|
@@ -57360,7 +57523,9 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57360
57523
|
updateCssVars(vnode, disabled);
|
|
57361
57524
|
} else if (disabled) {
|
|
57362
57525
|
if (vnode.shapeFlag & 16) {
|
|
57363
|
-
hydrateDisabledTeleport(node, vnode
|
|
57526
|
+
hydrateDisabledTeleport(node, vnode);
|
|
57527
|
+
vnode.targetStart = node;
|
|
57528
|
+
vnode.targetAnchor = nextSibling(node);
|
|
57364
57529
|
}
|
|
57365
57530
|
}
|
|
57366
57531
|
return vnode.anchor && nextSibling(vnode.anchor);
|
|
@@ -57384,13 +57549,13 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57384
57549
|
ctx.ut();
|
|
57385
57550
|
}
|
|
57386
57551
|
}
|
|
57387
|
-
function prepareAnchor(target, vnode, createText, insert) {
|
|
57552
|
+
function prepareAnchor(target, vnode, createText, insert, anchor = null) {
|
|
57388
57553
|
const targetStart = vnode.targetStart = createText("");
|
|
57389
57554
|
const targetAnchor = vnode.targetAnchor = createText("");
|
|
57390
57555
|
targetStart[TeleportEndKey] = targetAnchor;
|
|
57391
57556
|
if (target) {
|
|
57392
|
-
insert(targetStart, target);
|
|
57393
|
-
insert(targetAnchor, target);
|
|
57557
|
+
insert(targetStart, target, anchor);
|
|
57558
|
+
insert(targetAnchor, target, anchor);
|
|
57394
57559
|
}
|
|
57395
57560
|
return targetAnchor;
|
|
57396
57561
|
}
|
|
@@ -57611,6 +57776,7 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57611
57776
|
callHook2(hook, [el]);
|
|
57612
57777
|
},
|
|
57613
57778
|
enter(el) {
|
|
57779
|
+
if (!isHmrUpdating && leavingVNodesCache[key] === vnode) return;
|
|
57614
57780
|
let hook = onEnter;
|
|
57615
57781
|
let afterHook = onAfterEnter;
|
|
57616
57782
|
let cancelHook = onEnterCancelled;
|
|
@@ -57624,7 +57790,7 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57624
57790
|
}
|
|
57625
57791
|
}
|
|
57626
57792
|
let called = false;
|
|
57627
|
-
|
|
57793
|
+
el[enterCbKey] = (cancelled) => {
|
|
57628
57794
|
if (called) return;
|
|
57629
57795
|
called = true;
|
|
57630
57796
|
if (cancelled) {
|
|
@@ -57637,6 +57803,7 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57637
57803
|
}
|
|
57638
57804
|
el[enterCbKey] = void 0;
|
|
57639
57805
|
};
|
|
57806
|
+
const done = el[enterCbKey].bind(null, false);
|
|
57640
57807
|
if (hook) {
|
|
57641
57808
|
callAsyncHook(hook, [el, done]);
|
|
57642
57809
|
} else {
|
|
@@ -57656,7 +57823,7 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57656
57823
|
}
|
|
57657
57824
|
callHook2(onBeforeLeave, [el]);
|
|
57658
57825
|
let called = false;
|
|
57659
|
-
|
|
57826
|
+
el[leaveCbKey] = (cancelled) => {
|
|
57660
57827
|
if (called) return;
|
|
57661
57828
|
called = true;
|
|
57662
57829
|
remove();
|
|
@@ -57670,6 +57837,7 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57670
57837
|
delete leavingVNodesCache[key2];
|
|
57671
57838
|
}
|
|
57672
57839
|
};
|
|
57840
|
+
const done = el[leaveCbKey].bind(null, false);
|
|
57673
57841
|
leavingVNodesCache[key2] = vnode;
|
|
57674
57842
|
if (onLeave) {
|
|
57675
57843
|
callAsyncHook(onLeave, [el, done]);
|
|
@@ -57779,8 +57947,7 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57779
57947
|
const r = reactivity.shallowRef(null);
|
|
57780
57948
|
if (i) {
|
|
57781
57949
|
const refs = i.refs === shared.EMPTY_OBJ ? i.refs = {} : i.refs;
|
|
57782
|
-
|
|
57783
|
-
if ((desc = Object.getOwnPropertyDescriptor(refs, key)) && !desc.configurable) {
|
|
57950
|
+
if (isTemplateRefKey(refs, key)) {
|
|
57784
57951
|
warn$1(`useTemplateRef('${key}') already exists.`);
|
|
57785
57952
|
} else {
|
|
57786
57953
|
Object.defineProperty(refs, key, {
|
|
@@ -57800,6 +57967,10 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57800
57967
|
}
|
|
57801
57968
|
return ret;
|
|
57802
57969
|
}
|
|
57970
|
+
function isTemplateRefKey(refs, key) {
|
|
57971
|
+
let desc;
|
|
57972
|
+
return !!((desc = Object.getOwnPropertyDescriptor(refs, key)) && !desc.configurable);
|
|
57973
|
+
}
|
|
57803
57974
|
var pendingSetRefMap = /* @__PURE__ */ new WeakMap();
|
|
57804
57975
|
function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
57805
57976
|
if (shared.isArray(rawRef)) {
|
|
@@ -57844,10 +58015,19 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57844
58015
|
return false;
|
|
57845
58016
|
}
|
|
57846
58017
|
}
|
|
58018
|
+
if (isTemplateRefKey(refs, key)) {
|
|
58019
|
+
return false;
|
|
58020
|
+
}
|
|
57847
58021
|
return shared.hasOwn(rawSetupState, key);
|
|
57848
58022
|
};
|
|
57849
|
-
const canSetRef = (ref2) => {
|
|
57850
|
-
|
|
58023
|
+
const canSetRef = (ref2, key) => {
|
|
58024
|
+
if (knownTemplateRefs.has(ref2)) {
|
|
58025
|
+
return false;
|
|
58026
|
+
}
|
|
58027
|
+
if (key && isTemplateRefKey(refs, key)) {
|
|
58028
|
+
return false;
|
|
58029
|
+
}
|
|
58030
|
+
return true;
|
|
57851
58031
|
};
|
|
57852
58032
|
if (oldRef != null && oldRef !== ref) {
|
|
57853
58033
|
invalidatePendingSetRef(oldRawRef);
|
|
@@ -57857,10 +58037,10 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57857
58037
|
setupState[oldRef] = null;
|
|
57858
58038
|
}
|
|
57859
58039
|
} else if (reactivity.isRef(oldRef)) {
|
|
57860
|
-
|
|
58040
|
+
const oldRawRefAtom = oldRawRef;
|
|
58041
|
+
if (canSetRef(oldRef, oldRawRefAtom.k)) {
|
|
57861
58042
|
oldRef.value = null;
|
|
57862
58043
|
}
|
|
57863
|
-
const oldRawRefAtom = oldRawRef;
|
|
57864
58044
|
if (oldRawRefAtom.k) refs[oldRawRefAtom.k] = null;
|
|
57865
58045
|
}
|
|
57866
58046
|
}
|
|
@@ -57884,7 +58064,7 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57884
58064
|
}
|
|
57885
58065
|
} else {
|
|
57886
58066
|
const newVal = [refValue];
|
|
57887
|
-
if (canSetRef(ref)) {
|
|
58067
|
+
if (canSetRef(ref, rawRef.k)) {
|
|
57888
58068
|
ref.value = newVal;
|
|
57889
58069
|
}
|
|
57890
58070
|
if (rawRef.k) refs[rawRef.k] = newVal;
|
|
@@ -57899,7 +58079,7 @@ var require_runtime_core_cjs = __commonJS({
|
|
|
57899
58079
|
setupState[ref] = value;
|
|
57900
58080
|
}
|
|
57901
58081
|
} else if (_isRef) {
|
|
57902
|
-
if (canSetRef(ref)) {
|
|
58082
|
+
if (canSetRef(ref, rawRef.k)) {
|
|
57903
58083
|
ref.value = value;
|
|
57904
58084
|
}
|
|
57905
58085
|
if (rawRef.k) refs[rawRef.k] = value;
|
|
@@ -58248,7 +58428,7 @@ Server rendered element contains more child nodes than client vdom.`
|
|
|
58248
58428
|
logMismatchError();
|
|
58249
58429
|
}
|
|
58250
58430
|
if (forcePatch && (key.endsWith("value") || key === "indeterminate") || shared.isOn(key) && !shared.isReservedProp(key) || // force hydrate v-bind with .prop modifiers
|
|
58251
|
-
key[0] === "." || isCustomElement) {
|
|
58431
|
+
key[0] === "." || isCustomElement && !shared.isReservedProp(key)) {
|
|
58252
58432
|
patchProp(el, key, null, props[key], void 0, parentComponent);
|
|
58253
58433
|
}
|
|
58254
58434
|
}
|
|
@@ -59252,12 +59432,16 @@ If this is a native custom element, make sure to exclude it from component resol
|
|
|
59252
59432
|
);
|
|
59253
59433
|
}
|
|
59254
59434
|
} else if (typeof source === "number") {
|
|
59255
|
-
if (!Number.isInteger(source)) {
|
|
59256
|
-
warn$1(
|
|
59257
|
-
|
|
59258
|
-
|
|
59259
|
-
|
|
59260
|
-
|
|
59435
|
+
if (!Number.isInteger(source) || source < 0) {
|
|
59436
|
+
warn$1(
|
|
59437
|
+
`The v-for range expects a positive integer value but got ${source}.`
|
|
59438
|
+
);
|
|
59439
|
+
ret = [];
|
|
59440
|
+
} else {
|
|
59441
|
+
ret = new Array(source);
|
|
59442
|
+
for (let i = 0; i < source; i++) {
|
|
59443
|
+
ret[i] = renderItem(i + 1, i, void 0, cached2 && cached2[i]);
|
|
59444
|
+
}
|
|
59261
59445
|
}
|
|
59262
59446
|
} else if (shared.isObject(source)) {
|
|
59263
59447
|
if (source[Symbol.iterator]) {
|
|
@@ -59703,6 +59887,7 @@ If this is a native custom element, make sure to exclude it from component resol
|
|
|
59703
59887
|
}
|
|
59704
59888
|
function withAsyncContext(getAwaitable) {
|
|
59705
59889
|
const ctx = getCurrentInstance();
|
|
59890
|
+
const inSSRSetup = isInSSRComponentSetup;
|
|
59706
59891
|
if (!ctx) {
|
|
59707
59892
|
warn$1(
|
|
59708
59893
|
`withAsyncContext called without active current instance. This is likely a bug.`
|
|
@@ -59710,13 +59895,36 @@ If this is a native custom element, make sure to exclude it from component resol
|
|
|
59710
59895
|
}
|
|
59711
59896
|
let awaitable = getAwaitable();
|
|
59712
59897
|
unsetCurrentInstance();
|
|
59898
|
+
if (inSSRSetup) {
|
|
59899
|
+
setInSSRSetupState(false);
|
|
59900
|
+
}
|
|
59901
|
+
const restore = () => {
|
|
59902
|
+
setCurrentInstance(ctx);
|
|
59903
|
+
if (inSSRSetup) {
|
|
59904
|
+
setInSSRSetupState(true);
|
|
59905
|
+
}
|
|
59906
|
+
};
|
|
59907
|
+
const cleanup = () => {
|
|
59908
|
+
if (getCurrentInstance() !== ctx) ctx.scope.off();
|
|
59909
|
+
unsetCurrentInstance();
|
|
59910
|
+
if (inSSRSetup) {
|
|
59911
|
+
setInSSRSetupState(false);
|
|
59912
|
+
}
|
|
59913
|
+
};
|
|
59713
59914
|
if (shared.isPromise(awaitable)) {
|
|
59714
59915
|
awaitable = awaitable.catch((e) => {
|
|
59715
|
-
|
|
59916
|
+
restore();
|
|
59917
|
+
Promise.resolve().then(() => Promise.resolve().then(cleanup));
|
|
59716
59918
|
throw e;
|
|
59717
59919
|
});
|
|
59718
59920
|
}
|
|
59719
|
-
return [
|
|
59921
|
+
return [
|
|
59922
|
+
awaitable,
|
|
59923
|
+
() => {
|
|
59924
|
+
restore();
|
|
59925
|
+
Promise.resolve().then(cleanup);
|
|
59926
|
+
}
|
|
59927
|
+
];
|
|
59720
59928
|
}
|
|
59721
59929
|
function createDuplicateChecker() {
|
|
59722
59930
|
const cache = /* @__PURE__ */ Object.create(null);
|
|
@@ -60776,7 +60984,7 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
60776
60984
|
const dynamicProps = nextVNode.dynamicProps;
|
|
60777
60985
|
for (let i = 0; i < dynamicProps.length; i++) {
|
|
60778
60986
|
const key = dynamicProps[i];
|
|
60779
|
-
if (nextProps
|
|
60987
|
+
if (hasPropValueChanged(nextProps, prevProps, key) && !isEmitListener(emits, key)) {
|
|
60780
60988
|
return true;
|
|
60781
60989
|
}
|
|
60782
60990
|
}
|
|
@@ -60807,17 +61015,26 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
60807
61015
|
}
|
|
60808
61016
|
for (let i = 0; i < nextKeys.length; i++) {
|
|
60809
61017
|
const key = nextKeys[i];
|
|
60810
|
-
if (nextProps
|
|
61018
|
+
if (hasPropValueChanged(nextProps, prevProps, key) && !isEmitListener(emitsOptions, key)) {
|
|
60811
61019
|
return true;
|
|
60812
61020
|
}
|
|
60813
61021
|
}
|
|
60814
61022
|
return false;
|
|
60815
61023
|
}
|
|
60816
|
-
function
|
|
61024
|
+
function hasPropValueChanged(nextProps, prevProps, key) {
|
|
61025
|
+
const nextProp = nextProps[key];
|
|
61026
|
+
const prevProp = prevProps[key];
|
|
61027
|
+
if (key === "style" && shared.isObject(nextProp) && shared.isObject(prevProp)) {
|
|
61028
|
+
return !shared.looseEqual(nextProp, prevProp);
|
|
61029
|
+
}
|
|
61030
|
+
return nextProp !== prevProp;
|
|
61031
|
+
}
|
|
61032
|
+
function updateHOCHostEl({ vnode, parent, suspense }, el) {
|
|
60817
61033
|
while (parent) {
|
|
60818
61034
|
const root = parent.subTree;
|
|
60819
61035
|
if (root.suspense && root.suspense.activeBranch === vnode) {
|
|
60820
|
-
root.el =
|
|
61036
|
+
root.suspense.vnode.el = root.el = el;
|
|
61037
|
+
vnode = root;
|
|
60821
61038
|
}
|
|
60822
61039
|
if (root === vnode) {
|
|
60823
61040
|
(vnode = parent.vnode).el = el;
|
|
@@ -60826,6 +61043,9 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
60826
61043
|
break;
|
|
60827
61044
|
}
|
|
60828
61045
|
}
|
|
61046
|
+
if (suspense && suspense.activeBranch === vnode) {
|
|
61047
|
+
suspense.vnode.el = el;
|
|
61048
|
+
}
|
|
60829
61049
|
}
|
|
60830
61050
|
var internalObjectProto = {};
|
|
60831
61051
|
var createInternalObject = () => Object.create(internalObjectProto);
|
|
@@ -61523,15 +61743,7 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
61523
61743
|
} else {
|
|
61524
61744
|
const el = n22.el = n1.el;
|
|
61525
61745
|
if (n22.children !== n1.children) {
|
|
61526
|
-
|
|
61527
|
-
const childNodes = container.childNodes;
|
|
61528
|
-
const newChild = hostCreateText(n22.children);
|
|
61529
|
-
const oldChild = childNodes[n22.__elIndex = n1.__elIndex];
|
|
61530
|
-
hostInsert(newChild, container, oldChild);
|
|
61531
|
-
hostRemove(oldChild);
|
|
61532
|
-
} else {
|
|
61533
|
-
hostSetText(el, n22.children);
|
|
61534
|
-
}
|
|
61746
|
+
hostSetText(el, n22.children);
|
|
61535
61747
|
}
|
|
61536
61748
|
}
|
|
61537
61749
|
};
|
|
@@ -61607,7 +61819,7 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
61607
61819
|
optimized
|
|
61608
61820
|
);
|
|
61609
61821
|
} else {
|
|
61610
|
-
const customElement =
|
|
61822
|
+
const customElement = n1.el && n1.el._isVueCE ? n1.el : null;
|
|
61611
61823
|
try {
|
|
61612
61824
|
if (customElement) {
|
|
61613
61825
|
customElement._beginPatch();
|
|
@@ -61682,10 +61894,17 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
61682
61894
|
}
|
|
61683
61895
|
hostInsert(el, container, anchor);
|
|
61684
61896
|
if ((vnodeHook = props && props.onVnodeMounted) || needCallTransitionHooks || dirs) {
|
|
61897
|
+
const isHmr = isHmrUpdating;
|
|
61685
61898
|
queuePostRenderEffect(() => {
|
|
61686
|
-
|
|
61687
|
-
|
|
61688
|
-
|
|
61899
|
+
let prev;
|
|
61900
|
+
prev = setHmrUpdating(isHmr);
|
|
61901
|
+
try {
|
|
61902
|
+
vnodeHook && invokeVNodeHook(vnodeHook, parentComponent, vnode);
|
|
61903
|
+
needCallTransitionHooks && transition.enter(el);
|
|
61904
|
+
dirs && invokeDirectiveHook(vnode, null, parentComponent, "mounted");
|
|
61905
|
+
} finally {
|
|
61906
|
+
setHmrUpdating(prev);
|
|
61907
|
+
}
|
|
61689
61908
|
}, parentSuspense);
|
|
61690
61909
|
}
|
|
61691
61910
|
};
|
|
@@ -62089,9 +62308,11 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
62089
62308
|
hydrateSubTree();
|
|
62090
62309
|
}
|
|
62091
62310
|
} else {
|
|
62092
|
-
if (root.ce &&
|
|
62093
|
-
|
|
62094
|
-
|
|
62311
|
+
if (root.ce && root.ce._hasShadowRoot()) {
|
|
62312
|
+
root.ce._injectChildStyle(
|
|
62313
|
+
type,
|
|
62314
|
+
instance.parent ? instance.parent.type : void 0
|
|
62315
|
+
);
|
|
62095
62316
|
}
|
|
62096
62317
|
{
|
|
62097
62318
|
startMeasure(instance, `render`);
|
|
@@ -62145,9 +62366,9 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
62145
62366
|
updateComponentPreRender(instance, next, optimized);
|
|
62146
62367
|
}
|
|
62147
62368
|
nonHydratedAsyncRoot.asyncDep.then(() => {
|
|
62148
|
-
|
|
62149
|
-
|
|
62150
|
-
}
|
|
62369
|
+
queuePostRenderEffect(() => {
|
|
62370
|
+
if (!instance.isUnmounted) update();
|
|
62371
|
+
}, parentSuspense);
|
|
62151
62372
|
});
|
|
62152
62373
|
return;
|
|
62153
62374
|
}
|
|
@@ -62604,7 +62825,8 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
62604
62825
|
shapeFlag,
|
|
62605
62826
|
patchFlag,
|
|
62606
62827
|
dirs,
|
|
62607
|
-
cacheIndex
|
|
62828
|
+
cacheIndex,
|
|
62829
|
+
memo
|
|
62608
62830
|
} = vnode;
|
|
62609
62831
|
if (patchFlag === -2) {
|
|
62610
62832
|
optimized = false;
|
|
@@ -62666,10 +62888,14 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
62666
62888
|
remove(vnode);
|
|
62667
62889
|
}
|
|
62668
62890
|
}
|
|
62669
|
-
|
|
62891
|
+
const shouldInvalidateMemo = memo != null && cacheIndex == null;
|
|
62892
|
+
if (shouldInvokeVnodeHook && (vnodeHook = props && props.onVnodeUnmounted) || shouldInvokeDirs || shouldInvalidateMemo) {
|
|
62670
62893
|
queuePostRenderEffect(() => {
|
|
62671
62894
|
vnodeHook && invokeVNodeHook(vnodeHook, parentComponent, vnode);
|
|
62672
62895
|
shouldInvokeDirs && invokeDirectiveHook(vnode, null, parentComponent, "unmounted");
|
|
62896
|
+
if (shouldInvalidateMemo) {
|
|
62897
|
+
vnode.el = null;
|
|
62898
|
+
}
|
|
62673
62899
|
}, parentSuspense);
|
|
62674
62900
|
}
|
|
62675
62901
|
};
|
|
@@ -62844,12 +63070,10 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
62844
63070
|
traverseStaticChildren(c1, c2);
|
|
62845
63071
|
}
|
|
62846
63072
|
if (c2.type === Text) {
|
|
62847
|
-
if (c2.patchFlag
|
|
62848
|
-
c2
|
|
62849
|
-
} else {
|
|
62850
|
-
c2.__elIndex = i + // take fragment start anchor into account
|
|
62851
|
-
(n1.type === Fragment ? 1 : 0);
|
|
63073
|
+
if (c2.patchFlag === -1) {
|
|
63074
|
+
c2 = ch2[i] = cloneIfMounted(c2);
|
|
62852
63075
|
}
|
|
63076
|
+
c2.el = c1.el;
|
|
62853
63077
|
}
|
|
62854
63078
|
if (c2.type === Comment && !c2.el) {
|
|
62855
63079
|
c2.el = c1.el;
|
|
@@ -63224,6 +63448,7 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
63224
63448
|
pendingId: suspenseId++,
|
|
63225
63449
|
timeout: typeof timeout === "number" ? timeout : -1,
|
|
63226
63450
|
activeBranch: null,
|
|
63451
|
+
isFallbackMountPending: false,
|
|
63227
63452
|
pendingBranch: null,
|
|
63228
63453
|
isInFallback: !isHydrating,
|
|
63229
63454
|
isHydrating,
|
|
@@ -63273,7 +63498,7 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
63273
63498
|
}
|
|
63274
63499
|
};
|
|
63275
63500
|
}
|
|
63276
|
-
if (activeBranch) {
|
|
63501
|
+
if (activeBranch && !suspense.isFallbackMountPending) {
|
|
63277
63502
|
if (parentNode(activeBranch.el) === container2) {
|
|
63278
63503
|
anchor = next(activeBranch);
|
|
63279
63504
|
}
|
|
@@ -63286,6 +63511,7 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
63286
63511
|
move(pendingBranch, container2, anchor, 0);
|
|
63287
63512
|
}
|
|
63288
63513
|
}
|
|
63514
|
+
suspense.isFallbackMountPending = false;
|
|
63289
63515
|
setActiveBranch(suspense, pendingBranch);
|
|
63290
63516
|
suspense.pendingBranch = null;
|
|
63291
63517
|
suspense.isInFallback = false;
|
|
@@ -63321,6 +63547,7 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
63321
63547
|
triggerEvent(vnode2, "onFallback");
|
|
63322
63548
|
const anchor2 = next(activeBranch);
|
|
63323
63549
|
const mountFallback = () => {
|
|
63550
|
+
suspense.isFallbackMountPending = false;
|
|
63324
63551
|
if (!suspense.isInFallback) {
|
|
63325
63552
|
return;
|
|
63326
63553
|
}
|
|
@@ -63340,6 +63567,7 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
63340
63567
|
};
|
|
63341
63568
|
const delayEnter = fallbackVNode.transition && fallbackVNode.transition.mode === "out-in";
|
|
63342
63569
|
if (delayEnter) {
|
|
63570
|
+
suspense.isFallbackMountPending = true;
|
|
63343
63571
|
activeBranch.transition.afterLeave = mountFallback;
|
|
63344
63572
|
}
|
|
63345
63573
|
suspense.isInFallback = true;
|
|
@@ -63374,6 +63602,7 @@ If you want to remount the same app, move your app creation logic into a factory
|
|
|
63374
63602
|
if (instance.isUnmounted || suspense.isUnmounted || suspense.pendingId !== instance.suspenseId) {
|
|
63375
63603
|
return;
|
|
63376
63604
|
}
|
|
63605
|
+
unsetCurrentInstance();
|
|
63377
63606
|
instance.asyncResolved = true;
|
|
63378
63607
|
const { vnode: vnode2 } = instance;
|
|
63379
63608
|
{
|
|
@@ -63889,6 +64118,10 @@ Component that was made reactive: `,
|
|
|
63889
64118
|
const incoming = toMerge[key];
|
|
63890
64119
|
if (incoming && existing !== incoming && !(shared.isArray(existing) && existing.includes(incoming))) {
|
|
63891
64120
|
ret[key] = existing ? [].concat(existing, incoming) : incoming;
|
|
64121
|
+
} else if (incoming == null && existing == null && // mergeProps({ 'onUpdate:modelValue': undefined }) should not retain
|
|
64122
|
+
// the model listener.
|
|
64123
|
+
!shared.isModelListener(key)) {
|
|
64124
|
+
ret[key] = incoming;
|
|
63892
64125
|
}
|
|
63893
64126
|
} else if (key !== "") {
|
|
63894
64127
|
ret[key] = toMerge[key];
|
|
@@ -64567,7 +64800,7 @@ Component that was made reactive: `,
|
|
|
64567
64800
|
}
|
|
64568
64801
|
return true;
|
|
64569
64802
|
}
|
|
64570
|
-
var version3 = "3.5.
|
|
64803
|
+
var version3 = "3.5.32";
|
|
64571
64804
|
var warn2 = warn$1;
|
|
64572
64805
|
var ErrorTypeStrings = ErrorTypeStrings$1;
|
|
64573
64806
|
var devtools = devtools$1;
|
|
@@ -64737,9 +64970,9 @@ Component that was made reactive: `,
|
|
|
64737
64970
|
}
|
|
64738
64971
|
});
|
|
64739
64972
|
|
|
64740
|
-
// ../../node_modules/.pnpm/@vue+runtime-core@3.5.
|
|
64973
|
+
// ../../node_modules/.pnpm/@vue+runtime-core@3.5.32/node_modules/@vue/runtime-core/index.js
|
|
64741
64974
|
var require_runtime_core = __commonJS({
|
|
64742
|
-
"../../node_modules/.pnpm/@vue+runtime-core@3.5.
|
|
64975
|
+
"../../node_modules/.pnpm/@vue+runtime-core@3.5.32/node_modules/@vue/runtime-core/index.js"(exports2, module2) {
|
|
64743
64976
|
"use strict";
|
|
64744
64977
|
if (process.env.NODE_ENV === "production") {
|
|
64745
64978
|
module2.exports = require_runtime_core_cjs_prod();
|
|
@@ -64749,9 +64982,9 @@ var require_runtime_core = __commonJS({
|
|
|
64749
64982
|
}
|
|
64750
64983
|
});
|
|
64751
64984
|
|
|
64752
|
-
// ../../node_modules/.pnpm/@vue+runtime-dom@3.5.
|
|
64985
|
+
// ../../node_modules/.pnpm/@vue+runtime-dom@3.5.32/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js
|
|
64753
64986
|
var require_runtime_dom_cjs_prod = __commonJS({
|
|
64754
|
-
"../../node_modules/.pnpm/@vue+runtime-dom@3.5.
|
|
64987
|
+
"../../node_modules/.pnpm/@vue+runtime-dom@3.5.32/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js"(exports2) {
|
|
64755
64988
|
"use strict";
|
|
64756
64989
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
64757
64990
|
var runtimeCore = require_runtime_core();
|
|
@@ -65426,7 +65659,9 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
65426
65659
|
}
|
|
65427
65660
|
} else if (
|
|
65428
65661
|
// #11081 force set props for possible async custom element
|
|
65429
|
-
el._isVueCE &&
|
|
65662
|
+
el._isVueCE && // #12408 check if it's declared prop or it's async custom element
|
|
65663
|
+
(shouldSetAsPropForVueCE(el, key) || // @ts-expect-error _def is private
|
|
65664
|
+
el._def.__asyncLoader && (/[A-Z]/.test(key) || !shared.isString(nextValue)))
|
|
65430
65665
|
) {
|
|
65431
65666
|
patchDOMProp(el, shared.camelize(key), nextValue, parentComponent, key);
|
|
65432
65667
|
} else {
|
|
@@ -65474,6 +65709,17 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
65474
65709
|
}
|
|
65475
65710
|
return key in el;
|
|
65476
65711
|
}
|
|
65712
|
+
function shouldSetAsPropForVueCE(el, key) {
|
|
65713
|
+
const props = (
|
|
65714
|
+
// @ts-expect-error _def is private
|
|
65715
|
+
el._def.props
|
|
65716
|
+
);
|
|
65717
|
+
if (!props) {
|
|
65718
|
+
return false;
|
|
65719
|
+
}
|
|
65720
|
+
const camelKey = shared.camelize(key);
|
|
65721
|
+
return Array.isArray(props) ? props.some((prop) => shared.camelize(prop) === camelKey) : Object.keys(props).some((prop) => shared.camelize(prop) === camelKey);
|
|
65722
|
+
}
|
|
65477
65723
|
var REMOVAL = {};
|
|
65478
65724
|
// @__NO_SIDE_EFFECTS__
|
|
65479
65725
|
function defineCustomElement(options2, extraOptions, _createApp) {
|
|
@@ -65508,6 +65754,7 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
65508
65754
|
this._dirty = false;
|
|
65509
65755
|
this._numberProps = null;
|
|
65510
65756
|
this._styleChildren = /* @__PURE__ */ new WeakSet();
|
|
65757
|
+
this._styleAnchors = /* @__PURE__ */ new WeakMap();
|
|
65511
65758
|
this._ob = null;
|
|
65512
65759
|
if (this.shadowRoot && _createApp !== createApp) {
|
|
65513
65760
|
this._root = this.shadowRoot;
|
|
@@ -65531,7 +65778,8 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
65531
65778
|
}
|
|
65532
65779
|
this._connected = true;
|
|
65533
65780
|
let parent = this;
|
|
65534
|
-
while (parent = parent &&
|
|
65781
|
+
while (parent = parent && // #12479 should check assignedSlot first to get correct parent
|
|
65782
|
+
(parent.assignedSlot || parent.parentNode || parent.host)) {
|
|
65535
65783
|
if (parent instanceof _VueElement) {
|
|
65536
65784
|
this._parent = parent;
|
|
65537
65785
|
break;
|
|
@@ -65757,7 +66005,7 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
65757
66005
|
}
|
|
65758
66006
|
return vnode;
|
|
65759
66007
|
}
|
|
65760
|
-
_applyStyles(styles, owner) {
|
|
66008
|
+
_applyStyles(styles, owner, parentComp) {
|
|
65761
66009
|
if (!styles) return;
|
|
65762
66010
|
if (owner) {
|
|
65763
66011
|
if (owner === this._def || this._styleChildren.has(owner)) {
|
|
@@ -65766,13 +66014,43 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
65766
66014
|
this._styleChildren.add(owner);
|
|
65767
66015
|
}
|
|
65768
66016
|
const nonce = this._nonce;
|
|
66017
|
+
const root = this.shadowRoot;
|
|
66018
|
+
const insertionAnchor = parentComp ? this._getStyleAnchor(parentComp) || this._getStyleAnchor(this._def) : this._getRootStyleInsertionAnchor(root);
|
|
66019
|
+
let last = null;
|
|
65769
66020
|
for (let i = styles.length - 1; i >= 0; i--) {
|
|
65770
66021
|
const s = document.createElement("style");
|
|
65771
66022
|
if (nonce) s.setAttribute("nonce", nonce);
|
|
65772
66023
|
s.textContent = styles[i];
|
|
65773
|
-
|
|
66024
|
+
root.insertBefore(s, last || insertionAnchor);
|
|
66025
|
+
last = s;
|
|
66026
|
+
if (i === 0) {
|
|
66027
|
+
if (!parentComp) this._styleAnchors.set(this._def, s);
|
|
66028
|
+
if (owner) this._styleAnchors.set(owner, s);
|
|
66029
|
+
}
|
|
65774
66030
|
}
|
|
65775
66031
|
}
|
|
66032
|
+
_getStyleAnchor(comp) {
|
|
66033
|
+
if (!comp) {
|
|
66034
|
+
return null;
|
|
66035
|
+
}
|
|
66036
|
+
const anchor = this._styleAnchors.get(comp);
|
|
66037
|
+
if (anchor && anchor.parentNode === this.shadowRoot) {
|
|
66038
|
+
return anchor;
|
|
66039
|
+
}
|
|
66040
|
+
if (anchor) {
|
|
66041
|
+
this._styleAnchors.delete(comp);
|
|
66042
|
+
}
|
|
66043
|
+
return null;
|
|
66044
|
+
}
|
|
66045
|
+
_getRootStyleInsertionAnchor(root) {
|
|
66046
|
+
for (let i = 0; i < root.childNodes.length; i++) {
|
|
66047
|
+
const node = root.childNodes[i];
|
|
66048
|
+
if (!(node instanceof HTMLStyleElement)) {
|
|
66049
|
+
return node;
|
|
66050
|
+
}
|
|
66051
|
+
}
|
|
66052
|
+
return null;
|
|
66053
|
+
}
|
|
65776
66054
|
/**
|
|
65777
66055
|
* Only called when shadowRoot is false
|
|
65778
66056
|
*/
|
|
@@ -65835,8 +66113,8 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
65835
66113
|
/**
|
|
65836
66114
|
* @internal
|
|
65837
66115
|
*/
|
|
65838
|
-
_injectChildStyle(comp) {
|
|
65839
|
-
this._applyStyles(comp.styles, comp);
|
|
66116
|
+
_injectChildStyle(comp, parentComp) {
|
|
66117
|
+
this._applyStyles(comp.styles, comp, parentComp);
|
|
65840
66118
|
}
|
|
65841
66119
|
/**
|
|
65842
66120
|
* @internal
|
|
@@ -65854,6 +66132,12 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
65854
66132
|
this._update();
|
|
65855
66133
|
}
|
|
65856
66134
|
}
|
|
66135
|
+
/**
|
|
66136
|
+
* @internal
|
|
66137
|
+
*/
|
|
66138
|
+
_hasShadowRoot() {
|
|
66139
|
+
return this._def.shadowRoot !== false;
|
|
66140
|
+
}
|
|
65857
66141
|
/**
|
|
65858
66142
|
* @internal
|
|
65859
66143
|
*/
|
|
@@ -65963,10 +66247,7 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
65963
66247
|
instance
|
|
65964
66248
|
)
|
|
65965
66249
|
);
|
|
65966
|
-
positionMap.set(child,
|
|
65967
|
-
left: child.el.offsetLeft,
|
|
65968
|
-
top: child.el.offsetTop
|
|
65969
|
-
});
|
|
66250
|
+
positionMap.set(child, getPosition(child.el));
|
|
65970
66251
|
}
|
|
65971
66252
|
}
|
|
65972
66253
|
}
|
|
@@ -65995,10 +66276,7 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
65995
66276
|
}
|
|
65996
66277
|
}
|
|
65997
66278
|
function recordPosition(c) {
|
|
65998
|
-
newPositionMap.set(c,
|
|
65999
|
-
left: c.el.offsetLeft,
|
|
66000
|
-
top: c.el.offsetTop
|
|
66001
|
-
});
|
|
66279
|
+
newPositionMap.set(c, getPosition(c.el));
|
|
66002
66280
|
}
|
|
66003
66281
|
function applyTranslation(c) {
|
|
66004
66282
|
const oldPos = positionMap.get(c);
|
|
@@ -66006,12 +66284,29 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
66006
66284
|
const dx = oldPos.left - newPos.left;
|
|
66007
66285
|
const dy = oldPos.top - newPos.top;
|
|
66008
66286
|
if (dx || dy) {
|
|
66009
|
-
const
|
|
66010
|
-
s
|
|
66287
|
+
const el = c.el;
|
|
66288
|
+
const s = el.style;
|
|
66289
|
+
const rect = el.getBoundingClientRect();
|
|
66290
|
+
let scaleX = 1;
|
|
66291
|
+
let scaleY = 1;
|
|
66292
|
+
if (el.offsetWidth) scaleX = rect.width / el.offsetWidth;
|
|
66293
|
+
if (el.offsetHeight) scaleY = rect.height / el.offsetHeight;
|
|
66294
|
+
if (!Number.isFinite(scaleX) || scaleX === 0) scaleX = 1;
|
|
66295
|
+
if (!Number.isFinite(scaleY) || scaleY === 0) scaleY = 1;
|
|
66296
|
+
if (Math.abs(scaleX - 1) < 0.01) scaleX = 1;
|
|
66297
|
+
if (Math.abs(scaleY - 1) < 0.01) scaleY = 1;
|
|
66298
|
+
s.transform = s.webkitTransform = `translate(${dx / scaleX}px,${dy / scaleY}px)`;
|
|
66011
66299
|
s.transitionDuration = "0s";
|
|
66012
66300
|
return c;
|
|
66013
66301
|
}
|
|
66014
66302
|
}
|
|
66303
|
+
function getPosition(el) {
|
|
66304
|
+
const rect = el.getBoundingClientRect();
|
|
66305
|
+
return {
|
|
66306
|
+
left: rect.left,
|
|
66307
|
+
top: rect.top
|
|
66308
|
+
};
|
|
66309
|
+
}
|
|
66015
66310
|
function hasCSSTransform(el, root, moveClass) {
|
|
66016
66311
|
const clone2 = el.cloneNode();
|
|
66017
66312
|
const _vtc = el[vtcKey];
|
|
@@ -66079,7 +66374,8 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
66079
66374
|
if (elValue === newValue) {
|
|
66080
66375
|
return;
|
|
66081
66376
|
}
|
|
66082
|
-
|
|
66377
|
+
const rootNode = el.getRootNode();
|
|
66378
|
+
if ((rootNode instanceof Document || rootNode instanceof ShadowRoot) && rootNode.activeElement === el && el.type !== "range") {
|
|
66083
66379
|
if (lazy2 && value === oldValue) {
|
|
66084
66380
|
return;
|
|
66085
66381
|
}
|
|
@@ -66317,6 +66613,7 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
66317
66613
|
exact: (e, modifiers2) => systemModifiers.some((m) => e[`${m}Key`] && !modifiers2.includes(m))
|
|
66318
66614
|
};
|
|
66319
66615
|
var withModifiers = (fn, modifiers2) => {
|
|
66616
|
+
if (!fn) return fn;
|
|
66320
66617
|
const cache = fn._withMods || (fn._withMods = {});
|
|
66321
66618
|
const cacheKey = modifiers2.join(".");
|
|
66322
66619
|
return cache[cacheKey] || (cache[cacheKey] = (event, ...args) => {
|
|
@@ -66454,9 +66751,9 @@ var require_runtime_dom_cjs_prod = __commonJS({
|
|
|
66454
66751
|
}
|
|
66455
66752
|
});
|
|
66456
66753
|
|
|
66457
|
-
// ../../node_modules/.pnpm/@vue+runtime-dom@3.5.
|
|
66754
|
+
// ../../node_modules/.pnpm/@vue+runtime-dom@3.5.32/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.js
|
|
66458
66755
|
var require_runtime_dom_cjs = __commonJS({
|
|
66459
|
-
"../../node_modules/.pnpm/@vue+runtime-dom@3.5.
|
|
66756
|
+
"../../node_modules/.pnpm/@vue+runtime-dom@3.5.32/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.js"(exports2) {
|
|
66460
66757
|
"use strict";
|
|
66461
66758
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
66462
66759
|
var runtimeCore = require_runtime_core();
|
|
@@ -67159,7 +67456,9 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67159
67456
|
}
|
|
67160
67457
|
} else if (
|
|
67161
67458
|
// #11081 force set props for possible async custom element
|
|
67162
|
-
el._isVueCE &&
|
|
67459
|
+
el._isVueCE && // #12408 check if it's declared prop or it's async custom element
|
|
67460
|
+
(shouldSetAsPropForVueCE(el, key) || // @ts-expect-error _def is private
|
|
67461
|
+
el._def.__asyncLoader && (/[A-Z]/.test(key) || !shared.isString(nextValue)))
|
|
67163
67462
|
) {
|
|
67164
67463
|
patchDOMProp(el, shared.camelize(key), nextValue, parentComponent, key);
|
|
67165
67464
|
} else {
|
|
@@ -67207,6 +67506,17 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67207
67506
|
}
|
|
67208
67507
|
return key in el;
|
|
67209
67508
|
}
|
|
67509
|
+
function shouldSetAsPropForVueCE(el, key) {
|
|
67510
|
+
const props = (
|
|
67511
|
+
// @ts-expect-error _def is private
|
|
67512
|
+
el._def.props
|
|
67513
|
+
);
|
|
67514
|
+
if (!props) {
|
|
67515
|
+
return false;
|
|
67516
|
+
}
|
|
67517
|
+
const camelKey = shared.camelize(key);
|
|
67518
|
+
return Array.isArray(props) ? props.some((prop) => shared.camelize(prop) === camelKey) : Object.keys(props).some((prop) => shared.camelize(prop) === camelKey);
|
|
67519
|
+
}
|
|
67210
67520
|
var REMOVAL = {};
|
|
67211
67521
|
// @__NO_SIDE_EFFECTS__
|
|
67212
67522
|
function defineCustomElement(options2, extraOptions, _createApp) {
|
|
@@ -67241,6 +67551,7 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67241
67551
|
this._dirty = false;
|
|
67242
67552
|
this._numberProps = null;
|
|
67243
67553
|
this._styleChildren = /* @__PURE__ */ new WeakSet();
|
|
67554
|
+
this._styleAnchors = /* @__PURE__ */ new WeakMap();
|
|
67244
67555
|
this._ob = null;
|
|
67245
67556
|
if (this.shadowRoot && _createApp !== createApp) {
|
|
67246
67557
|
this._root = this.shadowRoot;
|
|
@@ -67269,7 +67580,8 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67269
67580
|
}
|
|
67270
67581
|
this._connected = true;
|
|
67271
67582
|
let parent = this;
|
|
67272
|
-
while (parent = parent &&
|
|
67583
|
+
while (parent = parent && // #12479 should check assignedSlot first to get correct parent
|
|
67584
|
+
(parent.assignedSlot || parent.parentNode || parent.host)) {
|
|
67273
67585
|
if (parent instanceof _VueElement) {
|
|
67274
67586
|
this._parent = parent;
|
|
67275
67587
|
break;
|
|
@@ -67491,6 +67803,7 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67491
67803
|
this._styles.forEach((s) => this._root.removeChild(s));
|
|
67492
67804
|
this._styles.length = 0;
|
|
67493
67805
|
}
|
|
67806
|
+
this._styleAnchors.delete(this._def);
|
|
67494
67807
|
this._applyStyles(newStyles);
|
|
67495
67808
|
this._instance = null;
|
|
67496
67809
|
this._update();
|
|
@@ -67515,7 +67828,7 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67515
67828
|
}
|
|
67516
67829
|
return vnode;
|
|
67517
67830
|
}
|
|
67518
|
-
_applyStyles(styles, owner) {
|
|
67831
|
+
_applyStyles(styles, owner, parentComp) {
|
|
67519
67832
|
if (!styles) return;
|
|
67520
67833
|
if (owner) {
|
|
67521
67834
|
if (owner === this._def || this._styleChildren.has(owner)) {
|
|
@@ -67524,11 +67837,19 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67524
67837
|
this._styleChildren.add(owner);
|
|
67525
67838
|
}
|
|
67526
67839
|
const nonce = this._nonce;
|
|
67840
|
+
const root = this.shadowRoot;
|
|
67841
|
+
const insertionAnchor = parentComp ? this._getStyleAnchor(parentComp) || this._getStyleAnchor(this._def) : this._getRootStyleInsertionAnchor(root);
|
|
67842
|
+
let last = null;
|
|
67527
67843
|
for (let i = styles.length - 1; i >= 0; i--) {
|
|
67528
67844
|
const s = document.createElement("style");
|
|
67529
67845
|
if (nonce) s.setAttribute("nonce", nonce);
|
|
67530
67846
|
s.textContent = styles[i];
|
|
67531
|
-
|
|
67847
|
+
root.insertBefore(s, last || insertionAnchor);
|
|
67848
|
+
last = s;
|
|
67849
|
+
if (i === 0) {
|
|
67850
|
+
if (!parentComp) this._styleAnchors.set(this._def, s);
|
|
67851
|
+
if (owner) this._styleAnchors.set(owner, s);
|
|
67852
|
+
}
|
|
67532
67853
|
{
|
|
67533
67854
|
if (owner) {
|
|
67534
67855
|
if (owner.__hmrId) {
|
|
@@ -67545,6 +67866,28 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67545
67866
|
}
|
|
67546
67867
|
}
|
|
67547
67868
|
}
|
|
67869
|
+
_getStyleAnchor(comp) {
|
|
67870
|
+
if (!comp) {
|
|
67871
|
+
return null;
|
|
67872
|
+
}
|
|
67873
|
+
const anchor = this._styleAnchors.get(comp);
|
|
67874
|
+
if (anchor && anchor.parentNode === this.shadowRoot) {
|
|
67875
|
+
return anchor;
|
|
67876
|
+
}
|
|
67877
|
+
if (anchor) {
|
|
67878
|
+
this._styleAnchors.delete(comp);
|
|
67879
|
+
}
|
|
67880
|
+
return null;
|
|
67881
|
+
}
|
|
67882
|
+
_getRootStyleInsertionAnchor(root) {
|
|
67883
|
+
for (let i = 0; i < root.childNodes.length; i++) {
|
|
67884
|
+
const node = root.childNodes[i];
|
|
67885
|
+
if (!(node instanceof HTMLStyleElement)) {
|
|
67886
|
+
return node;
|
|
67887
|
+
}
|
|
67888
|
+
}
|
|
67889
|
+
return null;
|
|
67890
|
+
}
|
|
67548
67891
|
/**
|
|
67549
67892
|
* Only called when shadowRoot is false
|
|
67550
67893
|
*/
|
|
@@ -67607,8 +67950,8 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67607
67950
|
/**
|
|
67608
67951
|
* @internal
|
|
67609
67952
|
*/
|
|
67610
|
-
_injectChildStyle(comp) {
|
|
67611
|
-
this._applyStyles(comp.styles, comp);
|
|
67953
|
+
_injectChildStyle(comp, parentComp) {
|
|
67954
|
+
this._applyStyles(comp.styles, comp, parentComp);
|
|
67612
67955
|
}
|
|
67613
67956
|
/**
|
|
67614
67957
|
* @internal
|
|
@@ -67626,12 +67969,19 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67626
67969
|
this._update();
|
|
67627
67970
|
}
|
|
67628
67971
|
}
|
|
67972
|
+
/**
|
|
67973
|
+
* @internal
|
|
67974
|
+
*/
|
|
67975
|
+
_hasShadowRoot() {
|
|
67976
|
+
return this._def.shadowRoot !== false;
|
|
67977
|
+
}
|
|
67629
67978
|
/**
|
|
67630
67979
|
* @internal
|
|
67631
67980
|
*/
|
|
67632
67981
|
_removeChildStyle(comp) {
|
|
67633
67982
|
{
|
|
67634
67983
|
this._styleChildren.delete(comp);
|
|
67984
|
+
this._styleAnchors.delete(comp);
|
|
67635
67985
|
if (this._childStyles && comp.__hmrId) {
|
|
67636
67986
|
const oldStyles = this._childStyles.get(comp.__hmrId);
|
|
67637
67987
|
if (oldStyles) {
|
|
@@ -67758,10 +68108,7 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67758
68108
|
instance
|
|
67759
68109
|
)
|
|
67760
68110
|
);
|
|
67761
|
-
positionMap.set(child,
|
|
67762
|
-
left: child.el.offsetLeft,
|
|
67763
|
-
top: child.el.offsetTop
|
|
67764
|
-
});
|
|
68111
|
+
positionMap.set(child, getPosition(child.el));
|
|
67765
68112
|
}
|
|
67766
68113
|
}
|
|
67767
68114
|
}
|
|
@@ -67792,10 +68139,7 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67792
68139
|
}
|
|
67793
68140
|
}
|
|
67794
68141
|
function recordPosition(c) {
|
|
67795
|
-
newPositionMap.set(c,
|
|
67796
|
-
left: c.el.offsetLeft,
|
|
67797
|
-
top: c.el.offsetTop
|
|
67798
|
-
});
|
|
68142
|
+
newPositionMap.set(c, getPosition(c.el));
|
|
67799
68143
|
}
|
|
67800
68144
|
function applyTranslation(c) {
|
|
67801
68145
|
const oldPos = positionMap.get(c);
|
|
@@ -67803,12 +68147,29 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67803
68147
|
const dx = oldPos.left - newPos.left;
|
|
67804
68148
|
const dy = oldPos.top - newPos.top;
|
|
67805
68149
|
if (dx || dy) {
|
|
67806
|
-
const
|
|
67807
|
-
s
|
|
68150
|
+
const el = c.el;
|
|
68151
|
+
const s = el.style;
|
|
68152
|
+
const rect = el.getBoundingClientRect();
|
|
68153
|
+
let scaleX = 1;
|
|
68154
|
+
let scaleY = 1;
|
|
68155
|
+
if (el.offsetWidth) scaleX = rect.width / el.offsetWidth;
|
|
68156
|
+
if (el.offsetHeight) scaleY = rect.height / el.offsetHeight;
|
|
68157
|
+
if (!Number.isFinite(scaleX) || scaleX === 0) scaleX = 1;
|
|
68158
|
+
if (!Number.isFinite(scaleY) || scaleY === 0) scaleY = 1;
|
|
68159
|
+
if (Math.abs(scaleX - 1) < 0.01) scaleX = 1;
|
|
68160
|
+
if (Math.abs(scaleY - 1) < 0.01) scaleY = 1;
|
|
68161
|
+
s.transform = s.webkitTransform = `translate(${dx / scaleX}px,${dy / scaleY}px)`;
|
|
67808
68162
|
s.transitionDuration = "0s";
|
|
67809
68163
|
return c;
|
|
67810
68164
|
}
|
|
67811
68165
|
}
|
|
68166
|
+
function getPosition(el) {
|
|
68167
|
+
const rect = el.getBoundingClientRect();
|
|
68168
|
+
return {
|
|
68169
|
+
left: rect.left,
|
|
68170
|
+
top: rect.top
|
|
68171
|
+
};
|
|
68172
|
+
}
|
|
67812
68173
|
function hasCSSTransform(el, root, moveClass) {
|
|
67813
68174
|
const clone2 = el.cloneNode();
|
|
67814
68175
|
const _vtc = el[vtcKey];
|
|
@@ -67876,7 +68237,8 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
67876
68237
|
if (elValue === newValue) {
|
|
67877
68238
|
return;
|
|
67878
68239
|
}
|
|
67879
|
-
|
|
68240
|
+
const rootNode = el.getRootNode();
|
|
68241
|
+
if ((rootNode instanceof Document || rootNode instanceof ShadowRoot) && rootNode.activeElement === el && el.type !== "range") {
|
|
67880
68242
|
if (lazy2 && value === oldValue) {
|
|
67881
68243
|
return;
|
|
67882
68244
|
}
|
|
@@ -68117,6 +68479,7 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
68117
68479
|
exact: (e, modifiers2) => systemModifiers.some((m) => e[`${m}Key`] && !modifiers2.includes(m))
|
|
68118
68480
|
};
|
|
68119
68481
|
var withModifiers = (fn, modifiers2) => {
|
|
68482
|
+
if (!fn) return fn;
|
|
68120
68483
|
const cache = fn._withMods || (fn._withMods = {});
|
|
68121
68484
|
const cacheKey = modifiers2.join(".");
|
|
68122
68485
|
return cache[cacheKey] || (cache[cacheKey] = (event, ...args) => {
|
|
@@ -68307,9 +68670,9 @@ Expected function or array of functions, received type ${typeof value}.`
|
|
|
68307
68670
|
}
|
|
68308
68671
|
});
|
|
68309
68672
|
|
|
68310
|
-
// ../../node_modules/.pnpm/@vue+runtime-dom@3.5.
|
|
68673
|
+
// ../../node_modules/.pnpm/@vue+runtime-dom@3.5.32/node_modules/@vue/runtime-dom/index.js
|
|
68311
68674
|
var require_runtime_dom = __commonJS({
|
|
68312
|
-
"../../node_modules/.pnpm/@vue+runtime-dom@3.5.
|
|
68675
|
+
"../../node_modules/.pnpm/@vue+runtime-dom@3.5.32/node_modules/@vue/runtime-dom/index.js"(exports2, module2) {
|
|
68313
68676
|
"use strict";
|
|
68314
68677
|
if (process.env.NODE_ENV === "production") {
|
|
68315
68678
|
module2.exports = require_runtime_dom_cjs_prod();
|
|
@@ -68319,9 +68682,9 @@ var require_runtime_dom = __commonJS({
|
|
|
68319
68682
|
}
|
|
68320
68683
|
});
|
|
68321
68684
|
|
|
68322
|
-
// ../../node_modules/.pnpm/vue@3.5.
|
|
68685
|
+
// ../../node_modules/.pnpm/vue@3.5.32_typescript@5.9.3/node_modules/vue/dist/vue.cjs.prod.js
|
|
68323
68686
|
var require_vue_cjs_prod = __commonJS({
|
|
68324
|
-
"../../node_modules/.pnpm/vue@3.5.
|
|
68687
|
+
"../../node_modules/.pnpm/vue@3.5.32_typescript@5.9.3/node_modules/vue/dist/vue.cjs.prod.js"(exports2) {
|
|
68325
68688
|
"use strict";
|
|
68326
68689
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
68327
68690
|
var compilerDom = require_compiler_dom();
|
|
@@ -68380,9 +68743,9 @@ var require_vue_cjs_prod = __commonJS({
|
|
|
68380
68743
|
}
|
|
68381
68744
|
});
|
|
68382
68745
|
|
|
68383
|
-
// ../../node_modules/.pnpm/vue@3.5.
|
|
68746
|
+
// ../../node_modules/.pnpm/vue@3.5.32_typescript@5.9.3/node_modules/vue/dist/vue.cjs.js
|
|
68384
68747
|
var require_vue_cjs = __commonJS({
|
|
68385
|
-
"../../node_modules/.pnpm/vue@3.5.
|
|
68748
|
+
"../../node_modules/.pnpm/vue@3.5.32_typescript@5.9.3/node_modules/vue/dist/vue.cjs.js"(exports2) {
|
|
68386
68749
|
"use strict";
|
|
68387
68750
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
68388
68751
|
var compilerDom = require_compiler_dom();
|
|
@@ -68455,9 +68818,9 @@ ${codeFrame}` : message);
|
|
|
68455
68818
|
}
|
|
68456
68819
|
});
|
|
68457
68820
|
|
|
68458
|
-
// ../../node_modules/.pnpm/vue@3.5.
|
|
68821
|
+
// ../../node_modules/.pnpm/vue@3.5.32_typescript@5.9.3/node_modules/vue/index.js
|
|
68459
68822
|
var require_vue = __commonJS({
|
|
68460
|
-
"../../node_modules/.pnpm/vue@3.5.
|
|
68823
|
+
"../../node_modules/.pnpm/vue@3.5.32_typescript@5.9.3/node_modules/vue/index.js"(exports2, module2) {
|
|
68461
68824
|
"use strict";
|
|
68462
68825
|
if (process.env.NODE_ENV === "production") {
|
|
68463
68826
|
module2.exports = require_vue_cjs_prod();
|
|
@@ -68693,7 +69056,7 @@ import { Command as Command47 } from "commander";
|
|
|
68693
69056
|
|
|
68694
69057
|
// package.json
|
|
68695
69058
|
var name = "@scalar/cli";
|
|
68696
|
-
var version = "1.8.
|
|
69059
|
+
var version = "1.8.5";
|
|
68697
69060
|
var bin = {
|
|
68698
69061
|
scalar: "./dist/index.js",
|
|
68699
69062
|
"scalar-cli": "./dist/index.js"
|
|
@@ -86422,12 +86785,13 @@ var monthlyUsageSchema = zod_default.object({
|
|
|
86422
86785
|
identifier: zod_default.string(),
|
|
86423
86786
|
month: zod_default.date(),
|
|
86424
86787
|
type: zod_default.enum(["public-user", "web-team-user", "agent-key", "docs-project"]),
|
|
86788
|
+
teamUid: zod_default.string().nullable(),
|
|
86425
86789
|
inputTokens: zod_default.number(),
|
|
86426
86790
|
outputTokens: zod_default.number(),
|
|
86427
86791
|
messages: zod_default.number()
|
|
86428
86792
|
}).meta({ id: "monthly-usage" });
|
|
86429
86793
|
|
|
86430
|
-
// ../../node_modules/.pnpm/@scalar+helpers@0.4.
|
|
86794
|
+
// ../../node_modules/.pnpm/@scalar+helpers@0.4.3/node_modules/@scalar/helpers/dist/http/http-methods.js
|
|
86431
86795
|
var HTTP_METHODS = ["delete", "get", "head", "options", "patch", "post", "put", "trace"];
|
|
86432
86796
|
var httpMethods = Object.freeze(new Set(HTTP_METHODS));
|
|
86433
86797
|
|
|
@@ -90246,7 +90610,7 @@ var config2 = {
|
|
|
90246
90610
|
}
|
|
90247
90611
|
},
|
|
90248
90612
|
cdnUrl: process.env.CDN_URL ?? "https://cdn.scalar.com",
|
|
90249
|
-
ssgDocsIsolateVersion: process.env.SSG_DOCS_ISOLATE_VERSION ?? "1.3.
|
|
90613
|
+
ssgDocsIsolateVersion: process.env.SSG_DOCS_ISOLATE_VERSION ?? "1.3.4"
|
|
90250
90614
|
};
|
|
90251
90615
|
|
|
90252
90616
|
// src/domains/auth/login/helpers/personal-token-generate-access.ts
|
|
@@ -91238,6 +91602,7 @@ var PublishSchemaCommand = () => {
|
|
|
91238
91602
|
treeShake: external_exports.coerce.boolean().default(false)
|
|
91239
91603
|
}).safeParse({
|
|
91240
91604
|
file: file2,
|
|
91605
|
+
title: args.title,
|
|
91241
91606
|
slug: args.slug,
|
|
91242
91607
|
namespace: args.namespace,
|
|
91243
91608
|
private: args.private,
|
|
@@ -91282,11 +91647,20 @@ var PublishSchemaCommand = () => {
|
|
|
91282
91647
|
const slug = data.slug || (await text({
|
|
91283
91648
|
message: "Please provide a slug identifier for your schema",
|
|
91284
91649
|
validate(value) {
|
|
91285
|
-
if (value.length === 0) return "
|
|
91650
|
+
if (value.length === 0) return "Slug is required.";
|
|
91286
91651
|
if (slugSchema.safeParse(value)?.error)
|
|
91287
91652
|
return "Please enter a valid slug (e.g. my-schema)";
|
|
91288
91653
|
}
|
|
91289
91654
|
})).toString();
|
|
91655
|
+
const matchingSchema = namespaceSchemaRes.data.find(
|
|
91656
|
+
(schema2) => schema2.slug === slug
|
|
91657
|
+
);
|
|
91658
|
+
const title = matchingSchema || data.title ? data.title : (await text({
|
|
91659
|
+
message: "Please provide a title for your schema",
|
|
91660
|
+
validate(value) {
|
|
91661
|
+
if (value.length === 0) return "Title is required.";
|
|
91662
|
+
}
|
|
91663
|
+
})).toString();
|
|
91290
91664
|
const version3 = data.version || (await text({
|
|
91291
91665
|
message: "What is the version of your document (e.g. 0.1.0)?",
|
|
91292
91666
|
validate(value) {
|
|
@@ -91296,9 +91670,6 @@ var PublishSchemaCommand = () => {
|
|
|
91296
91670
|
}
|
|
91297
91671
|
})).toString();
|
|
91298
91672
|
const logger = output.info().line().loader(`Publishing ${slug} to Scalar registry...`);
|
|
91299
|
-
const matchingSchema = namespaceSchemaRes.data.find(
|
|
91300
|
-
(schema2) => schema2.slug === slug
|
|
91301
|
-
);
|
|
91302
91673
|
const bundlingPlugins = [readFiles2()];
|
|
91303
91674
|
if (data.bundle) {
|
|
91304
91675
|
bundlingPlugins.push(
|
|
@@ -91317,7 +91688,7 @@ var PublishSchemaCommand = () => {
|
|
|
91317
91688
|
document: document2,
|
|
91318
91689
|
version: version3
|
|
91319
91690
|
}) : await client.managedSchemas.create(namespace, {
|
|
91320
|
-
title:
|
|
91691
|
+
title: title || "Untitled",
|
|
91321
91692
|
version: version3,
|
|
91322
91693
|
slug,
|
|
91323
91694
|
isPrivate: data.private,
|
|
@@ -93169,7 +93540,7 @@ var internalLinkNavigationEntrySchema = linkNavigationEntrySchema.extend({
|
|
|
93169
93540
|
uid: nanoidSchema
|
|
93170
93541
|
});
|
|
93171
93542
|
|
|
93172
|
-
// ../../node_modules/.pnpm/@scalar+types@0.
|
|
93543
|
+
// ../../node_modules/.pnpm/@scalar+types@0.8.0/node_modules/@scalar/types/dist/api-reference/api-client-plugin.js
|
|
93173
93544
|
var sectionViewSchema = external_exports.object({
|
|
93174
93545
|
title: external_exports.string().optional(),
|
|
93175
93546
|
// Since this is meant to be a Vue component, we'll use unknown
|
|
@@ -93182,7 +93553,7 @@ var viewsSchema = external_exports.object({
|
|
|
93182
93553
|
});
|
|
93183
93554
|
var hooksSchema = external_exports.object({
|
|
93184
93555
|
onBeforeRequest: external_exports.function({
|
|
93185
|
-
input: [external_exports.object({ request: external_exports.
|
|
93556
|
+
input: [external_exports.object({ request: external_exports.any() })]
|
|
93186
93557
|
// Why no output? https://github.com/scalar/scalar/pull/7047
|
|
93187
93558
|
// output: z.union([z.void(), z.promise(z.void())]),
|
|
93188
93559
|
}).optional(),
|
|
@@ -93201,7 +93572,7 @@ var apiClientPluginSchema = external_exports.function({
|
|
|
93201
93572
|
})
|
|
93202
93573
|
});
|
|
93203
93574
|
|
|
93204
|
-
// ../../node_modules/.pnpm/@scalar+types@0.
|
|
93575
|
+
// ../../node_modules/.pnpm/@scalar+types@0.8.0/node_modules/@scalar/types/dist/api-reference/base-configuration.js
|
|
93205
93576
|
var externalUrlsSchema = zod_default.object({
|
|
93206
93577
|
dashboardUrl: zod_default.string().prefault("https://dashboard.scalar.com"),
|
|
93207
93578
|
registryUrl: zod_default.string().prefault("https://registry.scalar.com"),
|
|
@@ -93239,6 +93610,13 @@ var baseConfigurationSchema = zod_default.object({
|
|
|
93239
93610
|
hideClientButton: zod_default.boolean().optional().default(false).catch(false),
|
|
93240
93611
|
/** URL to a request proxy for the API client */
|
|
93241
93612
|
proxyUrl: zod_default.string().optional(),
|
|
93613
|
+
/**
|
|
93614
|
+
* Default OAuth 2.0 redirect URI used to prefill auth flows in the API client.
|
|
93615
|
+
*
|
|
93616
|
+
* This is especially useful in desktop wrappers (for example Electron),
|
|
93617
|
+
* where `window.location` can be a `file://` URL that OAuth providers reject.
|
|
93618
|
+
*/
|
|
93619
|
+
oauth2RedirectUri: zod_default.string().optional(),
|
|
93242
93620
|
/** Key used with CTRL/CMD to open the search modal (defaults to 'k' e.g. CMD+k) */
|
|
93243
93621
|
searchHotKey: zod_default.enum([
|
|
93244
93622
|
"a",
|
|
@@ -93350,7 +93728,7 @@ var baseConfigurationSchema = zod_default.object({
|
|
|
93350
93728
|
externalUrls: externalUrlsSchema.prefault({})
|
|
93351
93729
|
});
|
|
93352
93730
|
|
|
93353
|
-
// ../../node_modules/.pnpm/@scalar+types@0.
|
|
93731
|
+
// ../../node_modules/.pnpm/@scalar+types@0.8.0/node_modules/@scalar/types/dist/api-reference/source-configuration.js
|
|
93354
93732
|
var sourceConfigurationSchema = zod_default.object({
|
|
93355
93733
|
default: zod_default.boolean().default(false).optional().catch(false),
|
|
93356
93734
|
/**
|
|
@@ -93447,10 +93825,10 @@ var sourceConfigurationSchema = zod_default.object({
|
|
|
93447
93825
|
}).optional()
|
|
93448
93826
|
});
|
|
93449
93827
|
|
|
93450
|
-
// ../../node_modules/.pnpm/@scalar+types@0.
|
|
93828
|
+
// ../../node_modules/.pnpm/@scalar+types@0.8.0/node_modules/@scalar/types/dist/api-reference/api-client-configuration.js
|
|
93451
93829
|
var apiClientConfigurationSchema = baseConfigurationSchema.extend(sourceConfigurationSchema.shape);
|
|
93452
93830
|
|
|
93453
|
-
// ../../node_modules/.pnpm/@scalar+types@0.
|
|
93831
|
+
// ../../node_modules/.pnpm/@scalar+types@0.8.0/node_modules/@scalar/types/dist/api-reference/api-reference-plugin.js
|
|
93454
93832
|
var openApiExtensionSchema = external_exports.object({
|
|
93455
93833
|
/**
|
|
93456
93834
|
* Name of specification extension property. Has to start with `x-`.
|
|
@@ -93502,7 +93880,7 @@ var apiReferencePluginSchema = external_exports.function({
|
|
|
93502
93880
|
})
|
|
93503
93881
|
});
|
|
93504
93882
|
|
|
93505
|
-
// ../../node_modules/.pnpm/@scalar+types@0.
|
|
93883
|
+
// ../../node_modules/.pnpm/@scalar+types@0.8.0/node_modules/@scalar/types/dist/api-reference/api-reference-configuration.js
|
|
93506
93884
|
var fetchLikeSchema = external_exports.custom();
|
|
93507
93885
|
var apiReferenceConfigurationSchema = baseConfigurationSchema.extend({
|
|
93508
93886
|
/**
|
|
@@ -93618,9 +93996,15 @@ var apiReferenceConfigurationSchema = baseConfigurationSchema.extend({
|
|
|
93618
93996
|
}).optional(),
|
|
93619
93997
|
/** Callback fired when the reference is fully loaded */
|
|
93620
93998
|
onLoaded: external_exports.function().optional(),
|
|
93621
|
-
/**
|
|
93999
|
+
/** Fired before the outbound request is built; callback receives a mutable request builder (RequestFactory). Experimental API. */
|
|
93622
94000
|
onBeforeRequest: external_exports.function({
|
|
93623
|
-
input: [
|
|
94001
|
+
input: [
|
|
94002
|
+
external_exports.object({
|
|
94003
|
+
request: external_exports.instanceof(Request),
|
|
94004
|
+
requestBuilder: external_exports.unknown(),
|
|
94005
|
+
envVariables: external_exports.record(external_exports.string(), external_exports.string())
|
|
94006
|
+
})
|
|
94007
|
+
]
|
|
93624
94008
|
// Why no output? https://github.com/scalar/scalar/pull/7047
|
|
93625
94009
|
// output: z.union([z.void(), z.promise(z.void())]),
|
|
93626
94010
|
}).optional(),
|
|
@@ -93850,7 +94234,7 @@ var apiReferenceConfigurationWithSourceSchema = apiReferenceConfigurationSchema.
|
|
|
93850
94234
|
return configuration;
|
|
93851
94235
|
});
|
|
93852
94236
|
|
|
93853
|
-
// ../../node_modules/.pnpm/@scalar+types@0.
|
|
94237
|
+
// ../../node_modules/.pnpm/@scalar+types@0.8.0/node_modules/@scalar/types/dist/api-reference/html-rendering-configuration.js
|
|
93854
94238
|
var htmlRenderingConfigurationSchema = external_exports.object({
|
|
93855
94239
|
/**
|
|
93856
94240
|
* The URL to the Scalar API Reference JS CDN.
|
|
@@ -93868,7 +94252,7 @@ var htmlRenderingConfigurationSchema = external_exports.object({
|
|
|
93868
94252
|
pageTitle: external_exports.string().optional().default("Scalar API Reference")
|
|
93869
94253
|
});
|
|
93870
94254
|
|
|
93871
|
-
// ../../node_modules/.pnpm/@scalar+types@0.
|
|
94255
|
+
// ../../node_modules/.pnpm/@scalar+types@0.8.0/node_modules/@scalar/types/dist/legacy/reference-config.js
|
|
93872
94256
|
var XScalarStability;
|
|
93873
94257
|
(function(XScalarStability2) {
|
|
93874
94258
|
XScalarStability2["Deprecated"] = "deprecated";
|
|
@@ -94340,7 +94724,7 @@ function createError(code, detail) {
|
|
|
94340
94724
|
// ../../packages/scalar-config/dist/resolvers/resolve-config.js
|
|
94341
94725
|
import { nanoid as nanoid5 } from "nanoid";
|
|
94342
94726
|
|
|
94343
|
-
// ../../node_modules/.pnpm/vue@3.5.
|
|
94727
|
+
// ../../node_modules/.pnpm/vue@3.5.32_typescript@5.9.3/node_modules/vue/index.mjs
|
|
94344
94728
|
var vue_exports = {};
|
|
94345
94729
|
__reExport(vue_exports, __toESM(require_vue(), 1));
|
|
94346
94730
|
|
|
@@ -95416,13 +95800,13 @@ import { cancel, confirm as confirm3, isCancel, text as text6 } from "@clack/pro
|
|
|
95416
95800
|
import as28 from "ansis";
|
|
95417
95801
|
import { Command as Command32 } from "commander";
|
|
95418
95802
|
|
|
95419
|
-
// ../../node_modules/.pnpm/@scalar+galaxy@0.6.
|
|
95803
|
+
// ../../node_modules/.pnpm/@scalar+galaxy@0.6.2/node_modules/@scalar/galaxy/dist/3.1.json
|
|
95420
95804
|
var __default = {
|
|
95421
95805
|
openapi: "3.1.1",
|
|
95422
95806
|
info: {
|
|
95423
95807
|
title: "Scalar Galaxy",
|
|
95424
95808
|
description: "The Scalar Galaxy is an example OpenAPI document to test OpenAPI tools and libraries. It's a fictional universe with fictional planets and fictional data.\n\n## Resources\n\n* https://github.com/scalar/scalar\n* https://github.com/OAI/OpenAPI-Specification\n* https://scalar.com\n\n## Markdown Support\n\nAll descriptions *can* contain ~~tons of text~~ **Markdown**. [If GitHub supports the syntax](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax), chances are we're supporting it, too.\n\n<details>\n <summary>Examples</summary>\n\n **Blockquotes**\n\n > I love OpenAPI. <3\n\n **Tables**\n\n | Feature | Availability |\n | ---------------- | ------------ |\n | Markdown Support | \u2713 |\n\n **Accordion**\n\n ```html\n <details>\n <summary>Using Details Tags</summary>\n <p>HTML Example</p>\n </details>\n ```\n\n **Images**\n\n Yes, there's support for images, too!\n\n \n\n **Alerts**\n\n > [!tip]\n > You can use Markdown alerts in your descriptions.\n\n</details>\n",
|
|
95425
|
-
version: "0.6.
|
|
95809
|
+
version: "0.6.2",
|
|
95426
95810
|
contact: {
|
|
95427
95811
|
name: "Scalar Support",
|
|
95428
95812
|
url: "https://scalar.com",
|
|
@@ -95471,6 +95855,10 @@ var __default = {
|
|
|
95471
95855
|
{
|
|
95472
95856
|
apiKeyHeader: []
|
|
95473
95857
|
},
|
|
95858
|
+
{
|
|
95859
|
+
apiKeyHeader: [],
|
|
95860
|
+
apiKeyQuery: []
|
|
95861
|
+
},
|
|
95474
95862
|
{
|
|
95475
95863
|
apiKeyCookie: []
|
|
95476
95864
|
},
|
|
@@ -96163,6 +96551,10 @@ var __default = {
|
|
|
96163
96551
|
},
|
|
96164
96552
|
{
|
|
96165
96553
|
apiKeyQuery: []
|
|
96554
|
+
},
|
|
96555
|
+
{
|
|
96556
|
+
apiKeyHeader: [],
|
|
96557
|
+
apiKeyQuery: []
|
|
96166
96558
|
}
|
|
96167
96559
|
],
|
|
96168
96560
|
responses: {
|
|
@@ -98552,7 +98944,7 @@ strip-bom-string/index.js:
|
|
|
98552
98944
|
@vue/shared/dist/shared.cjs.prod.js:
|
|
98553
98945
|
@vue/shared/dist/shared.cjs.js:
|
|
98554
98946
|
(**
|
|
98555
|
-
* @vue/shared v3.5.
|
|
98947
|
+
* @vue/shared v3.5.32
|
|
98556
98948
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
98557
98949
|
* @license MIT
|
|
98558
98950
|
**)
|
|
@@ -98560,7 +98952,7 @@ strip-bom-string/index.js:
|
|
|
98560
98952
|
@vue/compiler-core/dist/compiler-core.cjs.prod.js:
|
|
98561
98953
|
@vue/compiler-core/dist/compiler-core.cjs.js:
|
|
98562
98954
|
(**
|
|
98563
|
-
* @vue/compiler-core v3.5.
|
|
98955
|
+
* @vue/compiler-core v3.5.32
|
|
98564
98956
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
98565
98957
|
* @license MIT
|
|
98566
98958
|
**)
|
|
@@ -98568,7 +98960,7 @@ strip-bom-string/index.js:
|
|
|
98568
98960
|
@vue/compiler-dom/dist/compiler-dom.cjs.prod.js:
|
|
98569
98961
|
@vue/compiler-dom/dist/compiler-dom.cjs.js:
|
|
98570
98962
|
(**
|
|
98571
|
-
* @vue/compiler-dom v3.5.
|
|
98963
|
+
* @vue/compiler-dom v3.5.32
|
|
98572
98964
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
98573
98965
|
* @license MIT
|
|
98574
98966
|
**)
|
|
@@ -98576,7 +98968,7 @@ strip-bom-string/index.js:
|
|
|
98576
98968
|
@vue/reactivity/dist/reactivity.cjs.prod.js:
|
|
98577
98969
|
@vue/reactivity/dist/reactivity.cjs.js:
|
|
98578
98970
|
(**
|
|
98579
|
-
* @vue/reactivity v3.5.
|
|
98971
|
+
* @vue/reactivity v3.5.32
|
|
98580
98972
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
98581
98973
|
* @license MIT
|
|
98582
98974
|
**)
|
|
@@ -98584,7 +98976,7 @@ strip-bom-string/index.js:
|
|
|
98584
98976
|
@vue/runtime-core/dist/runtime-core.cjs.prod.js:
|
|
98585
98977
|
@vue/runtime-core/dist/runtime-core.cjs.js:
|
|
98586
98978
|
(**
|
|
98587
|
-
* @vue/runtime-core v3.5.
|
|
98979
|
+
* @vue/runtime-core v3.5.32
|
|
98588
98980
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
98589
98981
|
* @license MIT
|
|
98590
98982
|
**)
|
|
@@ -98592,7 +98984,7 @@ strip-bom-string/index.js:
|
|
|
98592
98984
|
@vue/runtime-dom/dist/runtime-dom.cjs.prod.js:
|
|
98593
98985
|
@vue/runtime-dom/dist/runtime-dom.cjs.js:
|
|
98594
98986
|
(**
|
|
98595
|
-
* @vue/runtime-dom v3.5.
|
|
98987
|
+
* @vue/runtime-dom v3.5.32
|
|
98596
98988
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
98597
98989
|
* @license MIT
|
|
98598
98990
|
**)
|
|
@@ -98600,7 +98992,7 @@ strip-bom-string/index.js:
|
|
|
98600
98992
|
vue/dist/vue.cjs.prod.js:
|
|
98601
98993
|
vue/dist/vue.cjs.js:
|
|
98602
98994
|
(**
|
|
98603
|
-
* vue v3.5.
|
|
98995
|
+
* vue v3.5.32
|
|
98604
98996
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
98605
98997
|
* @license MIT
|
|
98606
98998
|
**)
|