@vue/compat 3.6.0-beta.10 → 3.6.0-beta.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vue-compat.d.ts +2 -0
- package/dist/vue.cjs.js +117 -40
- package/dist/vue.cjs.prod.js +109 -36
- package/dist/vue.esm-browser.js +91 -34
- package/dist/vue.esm-browser.prod.js +6 -6
- package/dist/vue.esm-bundler.js +95 -35
- package/dist/vue.global.js +91 -34
- package/dist/vue.global.prod.js +6 -6
- package/dist/vue.runtime.esm-browser.js +91 -34
- package/dist/vue.runtime.esm-browser.prod.js +6 -6
- package/dist/vue.runtime.esm-bundler.js +95 -35
- package/dist/vue.runtime.global.js +91 -34
- package/dist/vue.runtime.global.prod.js +6 -6
- package/package.json +3 -3
package/dist/vue.cjs.prod.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.6.0-beta.
|
|
2
|
+
* @vue/compat v3.6.0-beta.12
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -432,6 +432,13 @@ function getSequence(arr) {
|
|
|
432
432
|
const notifyBuffer = [];
|
|
433
433
|
let batchDepth = 0;
|
|
434
434
|
let activeSub = void 0;
|
|
435
|
+
let runDepth = 0;
|
|
436
|
+
function incRunDepth() {
|
|
437
|
+
++runDepth;
|
|
438
|
+
}
|
|
439
|
+
function decRunDepth() {
|
|
440
|
+
--runDepth;
|
|
441
|
+
}
|
|
435
442
|
let globalVersion = 0;
|
|
436
443
|
let notifyIndex = 0;
|
|
437
444
|
let notifyBufferLength = 0;
|
|
@@ -505,8 +512,10 @@ function propagate(link) {
|
|
|
505
512
|
const sub = link.sub;
|
|
506
513
|
let flags = sub.flags;
|
|
507
514
|
if (flags & 3) {
|
|
508
|
-
if (!(flags & 60))
|
|
509
|
-
|
|
515
|
+
if (!(flags & 60)) {
|
|
516
|
+
sub.flags = flags | 32;
|
|
517
|
+
if (runDepth) sub.flags |= 8;
|
|
518
|
+
} else if (!(flags & 12)) flags = 0;
|
|
510
519
|
else if (!(flags & 4)) sub.flags = flags & -9 | 32;
|
|
511
520
|
else if (!(flags & 48) && isValidLink(link, sub)) {
|
|
512
521
|
sub.flags = flags | 40;
|
|
@@ -574,13 +583,13 @@ function checkDirty(link, sub) {
|
|
|
574
583
|
let dirty = false;
|
|
575
584
|
if (sub.flags & 16) dirty = true;
|
|
576
585
|
else if ((depFlags & 17) === 17) {
|
|
586
|
+
const subs = dep.subs;
|
|
577
587
|
if (dep.update()) {
|
|
578
|
-
const subs = dep.subs;
|
|
579
588
|
if (subs.nextSub !== void 0) shallowPropagate(subs);
|
|
580
589
|
dirty = true;
|
|
581
590
|
}
|
|
582
591
|
} else if ((depFlags & 33) === 33) {
|
|
583
|
-
|
|
592
|
+
stack = {
|
|
584
593
|
value: link,
|
|
585
594
|
prev: stack
|
|
586
595
|
};
|
|
@@ -595,15 +604,12 @@ function checkDirty(link, sub) {
|
|
|
595
604
|
}
|
|
596
605
|
while (checkDepth) {
|
|
597
606
|
--checkDepth;
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
if (hasMultipleSubs) {
|
|
601
|
-
link = stack.value;
|
|
602
|
-
stack = stack.prev;
|
|
603
|
-
} else link = firstSub;
|
|
607
|
+
link = stack.value;
|
|
608
|
+
stack = stack.prev;
|
|
604
609
|
if (dirty) {
|
|
610
|
+
const subs = sub.subs;
|
|
605
611
|
if (sub.update()) {
|
|
606
|
-
if (
|
|
612
|
+
if (subs.nextSub !== void 0) shallowPropagate(subs);
|
|
607
613
|
sub = link.sub;
|
|
608
614
|
continue;
|
|
609
615
|
}
|
|
@@ -615,7 +621,7 @@ function checkDirty(link, sub) {
|
|
|
615
621
|
}
|
|
616
622
|
dirty = false;
|
|
617
623
|
}
|
|
618
|
-
return dirty;
|
|
624
|
+
return dirty && !!sub.flags;
|
|
619
625
|
} while (true);
|
|
620
626
|
}
|
|
621
627
|
function shallowPropagate(link) {
|
|
@@ -1720,9 +1726,11 @@ var ReactiveEffect = class {
|
|
|
1720
1726
|
if (!this.active) return this.fn();
|
|
1721
1727
|
cleanup(this);
|
|
1722
1728
|
const prevSub = startTracking(this);
|
|
1729
|
+
incRunDepth();
|
|
1723
1730
|
try {
|
|
1724
1731
|
return this.fn();
|
|
1725
1732
|
} finally {
|
|
1733
|
+
decRunDepth();
|
|
1726
1734
|
endTracking(this, prevSub);
|
|
1727
1735
|
const flags = this.flags;
|
|
1728
1736
|
if ((flags & 136) === 136) {
|
|
@@ -2835,7 +2843,7 @@ const TeleportImpl = {
|
|
|
2835
2843
|
name: "Teleport",
|
|
2836
2844
|
__isTeleport: true,
|
|
2837
2845
|
process(n1, n2, container, anchor, parentComponent, parentSuspense, namespace, slotScopeIds, optimized, internals) {
|
|
2838
|
-
const { mc: mountChildren, pc: patchChildren, pbc: patchBlockChildren, o: { insert, querySelector, createText, createComment } } = internals;
|
|
2846
|
+
const { mc: mountChildren, pc: patchChildren, pbc: patchBlockChildren, o: { insert, querySelector, createText, createComment, parentNode } } = internals;
|
|
2839
2847
|
const disabled = isTeleportDisabled(n2.props);
|
|
2840
2848
|
let { dynamicChildren } = n2;
|
|
2841
2849
|
const mount = (vnode, container, anchor) => {
|
|
@@ -2860,7 +2868,7 @@ const TeleportImpl = {
|
|
|
2860
2868
|
if (pendingMounts.get(vnode) !== mountJob) return;
|
|
2861
2869
|
pendingMounts.delete(vnode);
|
|
2862
2870
|
if (isTeleportDisabled(vnode.props)) {
|
|
2863
|
-
mount(vnode, container, vnode.anchor);
|
|
2871
|
+
mount(vnode, parentNode(vnode.el) || container, vnode.anchor);
|
|
2864
2872
|
updateCssVars(vnode, true);
|
|
2865
2873
|
}
|
|
2866
2874
|
mountToTarget(vnode);
|
|
@@ -2939,7 +2947,7 @@ function moveTeleport(vnode, container, parentAnchor, { o: { insert }, m: move }
|
|
|
2939
2947
|
const { el, anchor, shapeFlag, children, props } = vnode;
|
|
2940
2948
|
const isReorder = moveType === 2;
|
|
2941
2949
|
if (isReorder) insert(el, container, parentAnchor);
|
|
2942
|
-
if (!isReorder || isTeleportDisabled(props)) {
|
|
2950
|
+
if (!pendingMounts.has(vnode) && (!isReorder || isTeleportDisabled(props))) {
|
|
2943
2951
|
if (shapeFlag & 16) for (let i = 0; i < children.length; i++) move(children[i], container, parentAnchor, 2, parentComponent);
|
|
2944
2952
|
}
|
|
2945
2953
|
if (isReorder) insert(anchor, container, parentAnchor);
|
|
@@ -3064,8 +3072,8 @@ const BaseTransitionImpl = {
|
|
|
3064
3072
|
const state = useTransitionState();
|
|
3065
3073
|
return () => {
|
|
3066
3074
|
const children = slots.default && getTransitionRawChildren(slots.default(), true);
|
|
3067
|
-
|
|
3068
|
-
|
|
3075
|
+
const child = children && children.length ? findNonCommentChild(children) : instance.subTree ? createCommentVNode() : void 0;
|
|
3076
|
+
if (!child) return;
|
|
3069
3077
|
const rawProps = /* @__PURE__ */ toRaw(props);
|
|
3070
3078
|
const { mode } = rawProps;
|
|
3071
3079
|
if (state.isLeaving) return emptyPlaceholder(child);
|
|
@@ -4465,6 +4473,7 @@ function createSlots(slots, dynamicSlots) {
|
|
|
4465
4473
|
*/
|
|
4466
4474
|
function renderSlot(slots, name, props = {}, fallback, noSlotted) {
|
|
4467
4475
|
let slot = slots[name];
|
|
4476
|
+
if (fallback) fallback.__vdom = true;
|
|
4468
4477
|
const vaporSlot = slot && (slot.__vs || (slot.__vapor ? slot : null));
|
|
4469
4478
|
if (vaporSlot) {
|
|
4470
4479
|
const ret = (openBlock(), createBlock(VaporSlot, props));
|
|
@@ -4499,9 +4508,7 @@ function ensureValidVNode(vnodes) {
|
|
|
4499
4508
|
}
|
|
4500
4509
|
function ensureVaporSlotFallback(vnodes, fallback) {
|
|
4501
4510
|
let vaporSlot;
|
|
4502
|
-
if (vnodes && vnodes.length === 1 && isVNode(vnodes[0]) && (vaporSlot = vnodes[0].vs))
|
|
4503
|
-
if (!vaporSlot.fallback && fallback) vaporSlot.fallback = fallback;
|
|
4504
|
-
}
|
|
4511
|
+
if (vnodes && vnodes.length === 1 && isVNode(vnodes[0]) && (vaporSlot = vnodes[0].vs)) vaporSlot.outletFallback = fallback;
|
|
4505
4512
|
}
|
|
4506
4513
|
//#endregion
|
|
4507
4514
|
//#region packages/runtime-core/src/helpers/toHandlers.ts
|
|
@@ -4968,9 +4975,14 @@ function withAsyncContext(getAwaitable) {
|
|
|
4968
4975
|
setCurrentInstance(null, void 0);
|
|
4969
4976
|
if (inSSRSetup) setInSSRSetupState(false);
|
|
4970
4977
|
const restore = () => {
|
|
4978
|
+
const resetStoppedScope = ctx && !ctx.scope.active ? ctx.scope : void 0;
|
|
4971
4979
|
setCurrentInstance(ctx);
|
|
4972
4980
|
if (inSSRSetup) setInSSRSetupState(true);
|
|
4973
|
-
|
|
4981
|
+
const reset = restoreAsyncContext && restoreAsyncContext();
|
|
4982
|
+
return () => {
|
|
4983
|
+
if (reset) reset();
|
|
4984
|
+
if (resetStoppedScope) resetStoppedScope.reset();
|
|
4985
|
+
};
|
|
4974
4986
|
};
|
|
4975
4987
|
const cleanup = () => {
|
|
4976
4988
|
setCurrentInstance(null, void 0);
|
|
@@ -5240,7 +5252,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
5240
5252
|
if (options.el) return vm.$mount(options.el);
|
|
5241
5253
|
else return vm;
|
|
5242
5254
|
}
|
|
5243
|
-
Vue.version = `2.6.14-compat:3.6.0-beta.
|
|
5255
|
+
Vue.version = `2.6.14-compat:3.6.0-beta.12`;
|
|
5244
5256
|
Vue.config = singletonApp.config;
|
|
5245
5257
|
Vue.use = (plugin, ...options) => {
|
|
5246
5258
|
if (plugin && isFunction(plugin.install)) plugin.install(Vue, ...options);
|
|
@@ -7185,15 +7197,19 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
|
|
|
7185
7197
|
if (suspense.isHydrating) suspense.isHydrating = false;
|
|
7186
7198
|
else if (!resume) {
|
|
7187
7199
|
delayEnter = activeBranch && pendingBranch.transition && pendingBranch.transition.mode === "out-in";
|
|
7200
|
+
let hasUpdatedAnchor = false;
|
|
7188
7201
|
if (delayEnter) activeBranch.transition.afterLeave = () => {
|
|
7189
7202
|
if (pendingId === suspense.pendingId) {
|
|
7190
|
-
move(pendingBranch, container, anchor === initialAnchor ? next(activeBranch) : anchor, 0, parentComponent);
|
|
7203
|
+
move(pendingBranch, container, anchor === initialAnchor && !hasUpdatedAnchor ? next(activeBranch) : anchor, 0, parentComponent);
|
|
7191
7204
|
queuePostFlushCb(effects);
|
|
7192
7205
|
if (isInFallback && vnode.ssFallback) vnode.ssFallback.el = null;
|
|
7193
7206
|
}
|
|
7194
7207
|
};
|
|
7195
7208
|
if (activeBranch && !suspense.isFallbackMountPending) {
|
|
7196
|
-
if (parentNode(activeBranch.el) === container)
|
|
7209
|
+
if (parentNode(activeBranch.el) === container) {
|
|
7210
|
+
anchor = next(activeBranch);
|
|
7211
|
+
hasUpdatedAnchor = true;
|
|
7212
|
+
}
|
|
7197
7213
|
unmount(activeBranch, parentComponent, suspense, true);
|
|
7198
7214
|
if (!delayEnter && isInFallback && vnode.ssFallback) queuePostRenderEffect(() => vnode.ssFallback.el = null, void 0, suspense);
|
|
7199
7215
|
}
|
|
@@ -7564,12 +7580,30 @@ function cloneVNode(vnode, extraProps, mergeRef = false, cloneTransition = false
|
|
|
7564
7580
|
el: vnode.el,
|
|
7565
7581
|
anchor: vnode.anchor,
|
|
7566
7582
|
ctx: vnode.ctx,
|
|
7567
|
-
ce: vnode.ce
|
|
7583
|
+
ce: vnode.ce,
|
|
7584
|
+
vi: vnode.vi,
|
|
7585
|
+
vs: cloneVaporSlotMeta(vnode),
|
|
7586
|
+
vb: vnode.vb
|
|
7568
7587
|
};
|
|
7569
7588
|
if (transition && cloneTransition) setTransitionHooks(cloned, transition.clone(cloned));
|
|
7570
7589
|
defineLegacyVNodeProperties(cloned);
|
|
7571
7590
|
return cloned;
|
|
7572
7591
|
}
|
|
7592
|
+
function cloneVaporSlotMeta(vnode) {
|
|
7593
|
+
const vaporSlot = vnode.vs;
|
|
7594
|
+
if (!vaporSlot) return vaporSlot;
|
|
7595
|
+
const cloned = {
|
|
7596
|
+
slot: vaporSlot.slot,
|
|
7597
|
+
fallback: vaporSlot.fallback,
|
|
7598
|
+
outletFallback: vaporSlot.outletFallback
|
|
7599
|
+
};
|
|
7600
|
+
if (vnode.el) {
|
|
7601
|
+
cloned.state = vaporSlot.state;
|
|
7602
|
+
cloned.ref = vaporSlot.ref;
|
|
7603
|
+
cloned.scope = vaporSlot.scope;
|
|
7604
|
+
}
|
|
7605
|
+
return cloned;
|
|
7606
|
+
}
|
|
7573
7607
|
/**
|
|
7574
7608
|
* @private
|
|
7575
7609
|
*/
|
|
@@ -7984,7 +8018,7 @@ function isMemoSame(cached, memo) {
|
|
|
7984
8018
|
}
|
|
7985
8019
|
//#endregion
|
|
7986
8020
|
//#region packages/runtime-core/src/index.ts
|
|
7987
|
-
const version = "3.6.0-beta.
|
|
8021
|
+
const version = "3.6.0-beta.12";
|
|
7988
8022
|
const warn = NOOP;
|
|
7989
8023
|
/**
|
|
7990
8024
|
* Runtime error messages. Only exposed in dev or esm builds.
|
|
@@ -8407,7 +8441,10 @@ function patchStyle(el, prev, next) {
|
|
|
8407
8441
|
}
|
|
8408
8442
|
for (const key in next) {
|
|
8409
8443
|
if (key === "display") hasControlledDisplay = true;
|
|
8410
|
-
|
|
8444
|
+
const value = next[key];
|
|
8445
|
+
if (value != null) {
|
|
8446
|
+
if (!shouldPreserveTextareaResizeStyle(el, key, !isString(prev) && prev ? prev[key] : void 0, value)) setStyle(style, key, value);
|
|
8447
|
+
} else setStyle(style, key, "");
|
|
8411
8448
|
}
|
|
8412
8449
|
} else if (isCssString) {
|
|
8413
8450
|
if (prev !== next) {
|
|
@@ -8453,6 +8490,14 @@ function autoPrefix(style, rawName) {
|
|
|
8453
8490
|
}
|
|
8454
8491
|
return rawName;
|
|
8455
8492
|
}
|
|
8493
|
+
/**
|
|
8494
|
+
* Browsers update textarea width/height directly during native resize.
|
|
8495
|
+
* Only special-case this common textarea path for now; other resize scenarios
|
|
8496
|
+
* still follow normal vnode style patching.
|
|
8497
|
+
*/
|
|
8498
|
+
function shouldPreserveTextareaResizeStyle(el, key, prev, next) {
|
|
8499
|
+
return el.tagName === "TEXTAREA" && (key === "width" || key === "height") && isString(next) && prev === next;
|
|
8500
|
+
}
|
|
8456
8501
|
//#endregion
|
|
8457
8502
|
//#region packages/runtime-dom/src/modules/attrs.ts
|
|
8458
8503
|
const xlinkNS = "http://www.w3.org/1999/xlink";
|
|
@@ -8884,7 +8929,10 @@ var VueElementBase = class VueElementBase extends BaseClass {
|
|
|
8884
8929
|
replacementNodes.push(child);
|
|
8885
8930
|
}
|
|
8886
8931
|
parent.removeChild(o);
|
|
8887
|
-
slotReplacements.set(o,
|
|
8932
|
+
slotReplacements.set(o, {
|
|
8933
|
+
nodes: replacementNodes,
|
|
8934
|
+
usedFallback: !content
|
|
8935
|
+
});
|
|
8888
8936
|
}
|
|
8889
8937
|
this._updateSlotNodes(slotReplacements);
|
|
8890
8938
|
}
|
|
@@ -12445,6 +12493,7 @@ function createTransformContext(root, { filename = "", prefixIdentifiers = false
|
|
|
12445
12493
|
constantCache: /* @__PURE__ */ new WeakMap(),
|
|
12446
12494
|
temps: 0,
|
|
12447
12495
|
identifiers: Object.create(null),
|
|
12496
|
+
identifierScopes: Object.create(null),
|
|
12448
12497
|
scopes: {
|
|
12449
12498
|
vFor: 0,
|
|
12450
12499
|
vSlot: 0,
|
|
@@ -12489,16 +12538,20 @@ function createTransformContext(root, { filename = "", prefixIdentifiers = false
|
|
|
12489
12538
|
context.parent.children.splice(removalIndex, 1);
|
|
12490
12539
|
},
|
|
12491
12540
|
onNodeRemoved: NOOP,
|
|
12492
|
-
addIdentifiers(exp) {
|
|
12493
|
-
if (isString(exp)) addId(exp);
|
|
12494
|
-
else if (exp.identifiers) exp.identifiers.forEach(addId);
|
|
12495
|
-
else if (exp.type === 4) addId(exp.content);
|
|
12541
|
+
addIdentifiers(exp, type = "local") {
|
|
12542
|
+
if (isString(exp)) addId(exp, type);
|
|
12543
|
+
else if (exp.identifiers) exp.identifiers.forEach((id) => addId(id, type));
|
|
12544
|
+
else if (exp.type === 4) addId(exp.content, type);
|
|
12496
12545
|
},
|
|
12497
12546
|
removeIdentifiers(exp) {
|
|
12498
12547
|
if (isString(exp)) removeId(exp);
|
|
12499
12548
|
else if (exp.identifiers) exp.identifiers.forEach(removeId);
|
|
12500
12549
|
else if (exp.type === 4) removeId(exp.content);
|
|
12501
12550
|
},
|
|
12551
|
+
isSlotScopeIdentifier(name) {
|
|
12552
|
+
const scopes = context.identifierScopes[name];
|
|
12553
|
+
return scopes ? scopes[scopes.length - 1] === "slot" : false;
|
|
12554
|
+
},
|
|
12502
12555
|
hoist(exp) {
|
|
12503
12556
|
if (isString(exp)) exp = createSimpleExpression(exp);
|
|
12504
12557
|
context.hoists.push(exp);
|
|
@@ -12513,13 +12566,16 @@ function createTransformContext(root, { filename = "", prefixIdentifiers = false
|
|
|
12513
12566
|
}
|
|
12514
12567
|
};
|
|
12515
12568
|
context.filters = /* @__PURE__ */ new Set();
|
|
12516
|
-
function addId(id) {
|
|
12517
|
-
const { identifiers } = context;
|
|
12569
|
+
function addId(id, type) {
|
|
12570
|
+
const { identifiers, identifierScopes } = context;
|
|
12518
12571
|
if (identifiers[id] === void 0) identifiers[id] = 0;
|
|
12519
12572
|
identifiers[id]++;
|
|
12573
|
+
(identifierScopes[id] || (identifierScopes[id] = [])).push(type);
|
|
12520
12574
|
}
|
|
12521
12575
|
function removeId(id) {
|
|
12522
12576
|
context.identifiers[id]--;
|
|
12577
|
+
const scopes = context.identifierScopes[id];
|
|
12578
|
+
if (scopes) scopes.pop();
|
|
12523
12579
|
}
|
|
12524
12580
|
return context;
|
|
12525
12581
|
}
|
|
@@ -13577,7 +13633,7 @@ const trackSlotScopes = (node, context) => {
|
|
|
13577
13633
|
const vSlot = findDir(node, "slot");
|
|
13578
13634
|
if (vSlot) {
|
|
13579
13635
|
const slotProps = vSlot.exp;
|
|
13580
|
-
if (context.prefixIdentifiers) slotProps && context.addIdentifiers(slotProps);
|
|
13636
|
+
if (context.prefixIdentifiers) slotProps && context.addIdentifiers(slotProps, "slot");
|
|
13581
13637
|
context.scopes.vSlot++;
|
|
13582
13638
|
return () => {
|
|
13583
13639
|
if (context.prefixIdentifiers) slotProps && context.removeIdentifiers(slotProps);
|
|
@@ -13793,6 +13849,15 @@ function resolveComponentType(node, context, ssr = false) {
|
|
|
13793
13849
|
if (!ssr) context.helper(builtIn);
|
|
13794
13850
|
return builtIn;
|
|
13795
13851
|
}
|
|
13852
|
+
{
|
|
13853
|
+
const fromScope = resolveSlotScopeReference(tag, context);
|
|
13854
|
+
if (fromScope) return fromScope;
|
|
13855
|
+
const dotIndex = tag.indexOf(".");
|
|
13856
|
+
if (dotIndex > 0) {
|
|
13857
|
+
const ns = resolveSlotScopeReference(tag.slice(0, dotIndex), context);
|
|
13858
|
+
if (ns) return ns + tag.slice(dotIndex);
|
|
13859
|
+
}
|
|
13860
|
+
}
|
|
13796
13861
|
{
|
|
13797
13862
|
const fromSetup = resolveSetupReference(tag, context);
|
|
13798
13863
|
if (fromSetup) return fromSetup;
|
|
@@ -13811,6 +13876,14 @@ function resolveComponentType(node, context, ssr = false) {
|
|
|
13811
13876
|
context.components.add(tag);
|
|
13812
13877
|
return toValidAssetId(tag, `component`);
|
|
13813
13878
|
}
|
|
13879
|
+
function resolveSlotScopeReference(name, context) {
|
|
13880
|
+
const camelName = camelize(name);
|
|
13881
|
+
const PascalName = capitalize(camelName);
|
|
13882
|
+
const isInSlotScope = (reference) => context.isSlotScopeIdentifier(reference);
|
|
13883
|
+
if (isInSlotScope(name)) return name;
|
|
13884
|
+
if (isInSlotScope(camelName)) return camelName;
|
|
13885
|
+
if (isInSlotScope(PascalName)) return PascalName;
|
|
13886
|
+
}
|
|
13814
13887
|
function resolveSetupReference(name, context) {
|
|
13815
13888
|
const bindings = context.bindingMetadata;
|
|
13816
13889
|
if (!bindings || bindings.__isScriptSetup === false) return;
|
package/dist/vue.esm-browser.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.6.0-beta.
|
|
2
|
+
* @vue/compat v3.6.0-beta.12
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -521,6 +521,13 @@ function warn$2(msg, ...args) {
|
|
|
521
521
|
const notifyBuffer = [];
|
|
522
522
|
let batchDepth = 0;
|
|
523
523
|
let activeSub = void 0;
|
|
524
|
+
let runDepth = 0;
|
|
525
|
+
function incRunDepth() {
|
|
526
|
+
++runDepth;
|
|
527
|
+
}
|
|
528
|
+
function decRunDepth() {
|
|
529
|
+
--runDepth;
|
|
530
|
+
}
|
|
524
531
|
let globalVersion = 0;
|
|
525
532
|
let notifyIndex = 0;
|
|
526
533
|
let notifyBufferLength = 0;
|
|
@@ -594,8 +601,10 @@ function propagate(link) {
|
|
|
594
601
|
const sub = link.sub;
|
|
595
602
|
let flags = sub.flags;
|
|
596
603
|
if (flags & 3) {
|
|
597
|
-
if (!(flags & 60))
|
|
598
|
-
|
|
604
|
+
if (!(flags & 60)) {
|
|
605
|
+
sub.flags = flags | 32;
|
|
606
|
+
if (runDepth) sub.flags |= 8;
|
|
607
|
+
} else if (!(flags & 12)) flags = 0;
|
|
599
608
|
else if (!(flags & 4)) sub.flags = flags & -9 | 32;
|
|
600
609
|
else if (!(flags & 48) && isValidLink(link, sub)) {
|
|
601
610
|
sub.flags = flags | 40;
|
|
@@ -664,13 +673,13 @@ function checkDirty(link, sub) {
|
|
|
664
673
|
let dirty = false;
|
|
665
674
|
if (sub.flags & 16) dirty = true;
|
|
666
675
|
else if ((depFlags & 17) === 17) {
|
|
676
|
+
const subs = dep.subs;
|
|
667
677
|
if (dep.update()) {
|
|
668
|
-
const subs = dep.subs;
|
|
669
678
|
if (subs.nextSub !== void 0) shallowPropagate(subs);
|
|
670
679
|
dirty = true;
|
|
671
680
|
}
|
|
672
681
|
} else if ((depFlags & 33) === 33) {
|
|
673
|
-
|
|
682
|
+
stack = {
|
|
674
683
|
value: link,
|
|
675
684
|
prev: stack
|
|
676
685
|
};
|
|
@@ -685,15 +694,12 @@ function checkDirty(link, sub) {
|
|
|
685
694
|
}
|
|
686
695
|
while (checkDepth) {
|
|
687
696
|
--checkDepth;
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
if (hasMultipleSubs) {
|
|
691
|
-
link = stack.value;
|
|
692
|
-
stack = stack.prev;
|
|
693
|
-
} else link = firstSub;
|
|
697
|
+
link = stack.value;
|
|
698
|
+
stack = stack.prev;
|
|
694
699
|
if (dirty) {
|
|
700
|
+
const subs = sub.subs;
|
|
695
701
|
if (sub.update()) {
|
|
696
|
-
if (
|
|
702
|
+
if (subs.nextSub !== void 0) shallowPropagate(subs);
|
|
697
703
|
sub = link.sub;
|
|
698
704
|
continue;
|
|
699
705
|
}
|
|
@@ -705,7 +711,7 @@ function checkDirty(link, sub) {
|
|
|
705
711
|
}
|
|
706
712
|
dirty = false;
|
|
707
713
|
}
|
|
708
|
-
return dirty;
|
|
714
|
+
return dirty && !!sub.flags;
|
|
709
715
|
} while (true);
|
|
710
716
|
}
|
|
711
717
|
function shallowPropagate(link) {
|
|
@@ -1857,9 +1863,11 @@ var ReactiveEffect = class {
|
|
|
1857
1863
|
if (!this.active) return this.fn();
|
|
1858
1864
|
cleanup(this);
|
|
1859
1865
|
const prevSub = startTracking(this);
|
|
1866
|
+
incRunDepth();
|
|
1860
1867
|
try {
|
|
1861
1868
|
return this.fn();
|
|
1862
1869
|
} finally {
|
|
1870
|
+
decRunDepth();
|
|
1863
1871
|
endTracking(this, prevSub);
|
|
1864
1872
|
const flags = this.flags;
|
|
1865
1873
|
if ((flags & 136) === 136) {
|
|
@@ -3506,7 +3514,7 @@ const TeleportImpl = {
|
|
|
3506
3514
|
name: "Teleport",
|
|
3507
3515
|
__isTeleport: true,
|
|
3508
3516
|
process(n1, n2, container, anchor, parentComponent, parentSuspense, namespace, slotScopeIds, optimized, internals) {
|
|
3509
|
-
const { mc: mountChildren, pc: patchChildren, pbc: patchBlockChildren, o: { insert, querySelector, createText, createComment } } = internals;
|
|
3517
|
+
const { mc: mountChildren, pc: patchChildren, pbc: patchBlockChildren, o: { insert, querySelector, createText, createComment, parentNode } } = internals;
|
|
3510
3518
|
const disabled = isTeleportDisabled(n2.props);
|
|
3511
3519
|
let { dynamicChildren } = n2;
|
|
3512
3520
|
if (isHmrUpdating) {
|
|
@@ -3535,7 +3543,7 @@ const TeleportImpl = {
|
|
|
3535
3543
|
if (pendingMounts.get(vnode) !== mountJob) return;
|
|
3536
3544
|
pendingMounts.delete(vnode);
|
|
3537
3545
|
if (isTeleportDisabled(vnode.props)) {
|
|
3538
|
-
mount(vnode, container, vnode.anchor);
|
|
3546
|
+
mount(vnode, parentNode(vnode.el) || container, vnode.anchor);
|
|
3539
3547
|
updateCssVars(vnode, true);
|
|
3540
3548
|
}
|
|
3541
3549
|
mountToTarget(vnode);
|
|
@@ -3615,7 +3623,7 @@ function moveTeleport(vnode, container, parentAnchor, { o: { insert }, m: move }
|
|
|
3615
3623
|
const { el, anchor, shapeFlag, children, props } = vnode;
|
|
3616
3624
|
const isReorder = moveType === 2;
|
|
3617
3625
|
if (isReorder) insert(el, container, parentAnchor);
|
|
3618
|
-
if (!isReorder || isTeleportDisabled(props)) {
|
|
3626
|
+
if (!pendingMounts.has(vnode) && (!isReorder || isTeleportDisabled(props))) {
|
|
3619
3627
|
if (shapeFlag & 16) for (let i = 0; i < children.length; i++) move(children[i], container, parentAnchor, 2, parentComponent);
|
|
3620
3628
|
}
|
|
3621
3629
|
if (isReorder) insert(anchor, container, parentAnchor);
|
|
@@ -3740,8 +3748,8 @@ const BaseTransitionImpl = {
|
|
|
3740
3748
|
const state = useTransitionState();
|
|
3741
3749
|
return () => {
|
|
3742
3750
|
const children = slots.default && getTransitionRawChildren(slots.default(), true);
|
|
3743
|
-
|
|
3744
|
-
|
|
3751
|
+
const child = children && children.length ? findNonCommentChild(children) : instance.subTree ? createCommentVNode() : void 0;
|
|
3752
|
+
if (!child) return;
|
|
3745
3753
|
const rawProps = /* @__PURE__ */ toRaw(props);
|
|
3746
3754
|
const { mode } = rawProps;
|
|
3747
3755
|
checkTransitionMode(mode);
|
|
@@ -5311,6 +5319,7 @@ function createSlots(slots, dynamicSlots) {
|
|
|
5311
5319
|
*/
|
|
5312
5320
|
function renderSlot(slots, name, props = {}, fallback, noSlotted) {
|
|
5313
5321
|
let slot = slots[name];
|
|
5322
|
+
if (fallback) fallback.__vdom = true;
|
|
5314
5323
|
const vaporSlot = slot && (slot.__vs || (slot.__vapor ? slot : null));
|
|
5315
5324
|
if (vaporSlot) {
|
|
5316
5325
|
const ret = (openBlock(), createBlock(VaporSlot, props));
|
|
@@ -5349,9 +5358,7 @@ function ensureValidVNode(vnodes) {
|
|
|
5349
5358
|
}
|
|
5350
5359
|
function ensureVaporSlotFallback(vnodes, fallback) {
|
|
5351
5360
|
let vaporSlot;
|
|
5352
|
-
if (vnodes && vnodes.length === 1 && isVNode(vnodes[0]) && (vaporSlot = vnodes[0].vs))
|
|
5353
|
-
if (!vaporSlot.fallback && fallback) vaporSlot.fallback = fallback;
|
|
5354
|
-
}
|
|
5361
|
+
if (vnodes && vnodes.length === 1 && isVNode(vnodes[0]) && (vaporSlot = vnodes[0].vs)) vaporSlot.outletFallback = fallback;
|
|
5355
5362
|
}
|
|
5356
5363
|
//#endregion
|
|
5357
5364
|
//#region packages/runtime-core/src/helpers/toHandlers.ts
|
|
@@ -5912,9 +5919,14 @@ function withAsyncContext(getAwaitable) {
|
|
|
5912
5919
|
setCurrentInstance(null, void 0);
|
|
5913
5920
|
if (inSSRSetup) setInSSRSetupState(false);
|
|
5914
5921
|
const restore = () => {
|
|
5922
|
+
const resetStoppedScope = ctx && !ctx.scope.active ? ctx.scope : void 0;
|
|
5915
5923
|
setCurrentInstance(ctx);
|
|
5916
5924
|
if (inSSRSetup) setInSSRSetupState(true);
|
|
5917
|
-
|
|
5925
|
+
const reset = restoreAsyncContext && restoreAsyncContext();
|
|
5926
|
+
return () => {
|
|
5927
|
+
if (reset) reset();
|
|
5928
|
+
if (resetStoppedScope) resetStoppedScope.reset();
|
|
5929
|
+
};
|
|
5918
5930
|
};
|
|
5919
5931
|
const cleanup = () => {
|
|
5920
5932
|
setCurrentInstance(null, void 0);
|
|
@@ -6251,7 +6263,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
6251
6263
|
if (options.el) return vm.$mount(options.el);
|
|
6252
6264
|
else return vm;
|
|
6253
6265
|
}
|
|
6254
|
-
Vue.version = `2.6.14-compat:3.6.0-beta.
|
|
6266
|
+
Vue.version = `2.6.14-compat:3.6.0-beta.12`;
|
|
6255
6267
|
Vue.config = singletonApp.config;
|
|
6256
6268
|
Vue.use = (plugin, ...options) => {
|
|
6257
6269
|
if (plugin && isFunction(plugin.install)) plugin.install(Vue, ...options);
|
|
@@ -7387,7 +7399,7 @@ function getInvalidTypeMessage(name, value, expectedTypes) {
|
|
|
7387
7399
|
const receivedType = toRawType(value);
|
|
7388
7400
|
const expectedValue = styleValue(value, expectedType);
|
|
7389
7401
|
const receivedValue = styleValue(value, receivedType);
|
|
7390
|
-
if (expectedTypes.length === 1 && isExplicable(expectedType) &&
|
|
7402
|
+
if (expectedTypes.length === 1 && isExplicable(expectedType) && isCoercible(expectedType, receivedType)) message += ` with value ${expectedValue}`;
|
|
7391
7403
|
message += `, got ${receivedType} `;
|
|
7392
7404
|
if (isExplicable(receivedType)) message += `with value ${receivedValue}.`;
|
|
7393
7405
|
return message;
|
|
@@ -7396,7 +7408,8 @@ function getInvalidTypeMessage(name, value, expectedTypes) {
|
|
|
7396
7408
|
* dev only
|
|
7397
7409
|
*/
|
|
7398
7410
|
function styleValue(value, type) {
|
|
7399
|
-
if (
|
|
7411
|
+
if (isSymbol(value)) return value.toString();
|
|
7412
|
+
else if (type === "String") return `"${value}"`;
|
|
7400
7413
|
else if (type === "Number") return `${Number(value)}`;
|
|
7401
7414
|
else return `${value}`;
|
|
7402
7415
|
}
|
|
@@ -7413,8 +7426,11 @@ function isExplicable(type) {
|
|
|
7413
7426
|
/**
|
|
7414
7427
|
* dev only
|
|
7415
7428
|
*/
|
|
7416
|
-
function
|
|
7417
|
-
return args.
|
|
7429
|
+
function isCoercible(...args) {
|
|
7430
|
+
return args.every((elem) => {
|
|
7431
|
+
const value = elem.toLowerCase();
|
|
7432
|
+
return value !== "boolean" && value !== "symbol";
|
|
7433
|
+
});
|
|
7418
7434
|
}
|
|
7419
7435
|
//#endregion
|
|
7420
7436
|
//#region packages/runtime-core/src/componentSlots.ts
|
|
@@ -8609,15 +8625,19 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
|
|
|
8609
8625
|
if (suspense.isHydrating) suspense.isHydrating = false;
|
|
8610
8626
|
else if (!resume) {
|
|
8611
8627
|
delayEnter = activeBranch && pendingBranch.transition && pendingBranch.transition.mode === "out-in";
|
|
8628
|
+
let hasUpdatedAnchor = false;
|
|
8612
8629
|
if (delayEnter) activeBranch.transition.afterLeave = () => {
|
|
8613
8630
|
if (pendingId === suspense.pendingId) {
|
|
8614
|
-
move(pendingBranch, container, anchor === initialAnchor ? next(activeBranch) : anchor, 0, parentComponent);
|
|
8631
|
+
move(pendingBranch, container, anchor === initialAnchor && !hasUpdatedAnchor ? next(activeBranch) : anchor, 0, parentComponent);
|
|
8615
8632
|
queuePostFlushCb(effects);
|
|
8616
8633
|
if (isInFallback && vnode.ssFallback) vnode.ssFallback.el = null;
|
|
8617
8634
|
}
|
|
8618
8635
|
};
|
|
8619
8636
|
if (activeBranch && !suspense.isFallbackMountPending) {
|
|
8620
|
-
if (parentNode(activeBranch.el) === container)
|
|
8637
|
+
if (parentNode(activeBranch.el) === container) {
|
|
8638
|
+
anchor = next(activeBranch);
|
|
8639
|
+
hasUpdatedAnchor = true;
|
|
8640
|
+
}
|
|
8621
8641
|
unmount(activeBranch, parentComponent, suspense, true);
|
|
8622
8642
|
if (!delayEnter && isInFallback && vnode.ssFallback) queuePostRenderEffect(() => vnode.ssFallback.el = null, void 0, suspense);
|
|
8623
8643
|
}
|
|
@@ -9014,12 +9034,30 @@ function cloneVNode(vnode, extraProps, mergeRef = false, cloneTransition = false
|
|
|
9014
9034
|
el: vnode.el,
|
|
9015
9035
|
anchor: vnode.anchor,
|
|
9016
9036
|
ctx: vnode.ctx,
|
|
9017
|
-
ce: vnode.ce
|
|
9037
|
+
ce: vnode.ce,
|
|
9038
|
+
vi: vnode.vi,
|
|
9039
|
+
vs: cloneVaporSlotMeta(vnode),
|
|
9040
|
+
vb: vnode.vb
|
|
9018
9041
|
};
|
|
9019
9042
|
if (transition && cloneTransition) setTransitionHooks(cloned, transition.clone(cloned));
|
|
9020
9043
|
defineLegacyVNodeProperties(cloned);
|
|
9021
9044
|
return cloned;
|
|
9022
9045
|
}
|
|
9046
|
+
function cloneVaporSlotMeta(vnode) {
|
|
9047
|
+
const vaporSlot = vnode.vs;
|
|
9048
|
+
if (!vaporSlot) return vaporSlot;
|
|
9049
|
+
const cloned = {
|
|
9050
|
+
slot: vaporSlot.slot,
|
|
9051
|
+
fallback: vaporSlot.fallback,
|
|
9052
|
+
outletFallback: vaporSlot.outletFallback
|
|
9053
|
+
};
|
|
9054
|
+
if (vnode.el) {
|
|
9055
|
+
cloned.state = vaporSlot.state;
|
|
9056
|
+
cloned.ref = vaporSlot.ref;
|
|
9057
|
+
cloned.scope = vaporSlot.scope;
|
|
9058
|
+
}
|
|
9059
|
+
return cloned;
|
|
9060
|
+
}
|
|
9023
9061
|
/**
|
|
9024
9062
|
* Dev only, for HMR of hoisted vnodes reused in v-for
|
|
9025
9063
|
* https://github.com/vitejs/vite/issues/2022
|
|
@@ -9679,7 +9717,7 @@ function isMemoSame(cached, memo) {
|
|
|
9679
9717
|
}
|
|
9680
9718
|
//#endregion
|
|
9681
9719
|
//#region packages/runtime-core/src/index.ts
|
|
9682
|
-
const version = "3.6.0-beta.
|
|
9720
|
+
const version = "3.6.0-beta.12";
|
|
9683
9721
|
const warn = warn$1;
|
|
9684
9722
|
/**
|
|
9685
9723
|
* Runtime error messages. Only exposed in dev or esm builds.
|
|
@@ -10167,7 +10205,10 @@ function patchStyle(el, prev, next) {
|
|
|
10167
10205
|
}
|
|
10168
10206
|
for (const key in next) {
|
|
10169
10207
|
if (key === "display") hasControlledDisplay = true;
|
|
10170
|
-
|
|
10208
|
+
const value = next[key];
|
|
10209
|
+
if (value != null) {
|
|
10210
|
+
if (!shouldPreserveTextareaResizeStyle(el, key, !isString(prev) && prev ? prev[key] : void 0, value)) setStyle(style, key, value);
|
|
10211
|
+
} else setStyle(style, key, "");
|
|
10171
10212
|
}
|
|
10172
10213
|
} else if (isCssString) {
|
|
10173
10214
|
if (prev !== next) {
|
|
@@ -10215,6 +10256,14 @@ function autoPrefix(style, rawName) {
|
|
|
10215
10256
|
}
|
|
10216
10257
|
return rawName;
|
|
10217
10258
|
}
|
|
10259
|
+
/**
|
|
10260
|
+
* Browsers update textarea width/height directly during native resize.
|
|
10261
|
+
* Only special-case this common textarea path for now; other resize scenarios
|
|
10262
|
+
* still follow normal vnode style patching.
|
|
10263
|
+
*/
|
|
10264
|
+
function shouldPreserveTextareaResizeStyle(el, key, prev, next) {
|
|
10265
|
+
return el.tagName === "TEXTAREA" && (key === "width" || key === "height") && isString(next) && prev === next;
|
|
10266
|
+
}
|
|
10218
10267
|
//#endregion
|
|
10219
10268
|
//#region packages/runtime-dom/src/modules/attrs.ts
|
|
10220
10269
|
const xlinkNS = "http://www.w3.org/1999/xlink";
|
|
@@ -10674,7 +10723,10 @@ var VueElementBase = class VueElementBase extends BaseClass {
|
|
|
10674
10723
|
replacementNodes.push(child);
|
|
10675
10724
|
}
|
|
10676
10725
|
parent.removeChild(o);
|
|
10677
|
-
slotReplacements.set(o,
|
|
10726
|
+
slotReplacements.set(o, {
|
|
10727
|
+
nodes: replacementNodes,
|
|
10728
|
+
usedFallback: !content
|
|
10729
|
+
});
|
|
10678
10730
|
}
|
|
10679
10731
|
this._updateSlotNodes(slotReplacements);
|
|
10680
10732
|
}
|
|
@@ -13612,6 +13664,7 @@ function createTransformContext(root, { filename = "", prefixIdentifiers = false
|
|
|
13612
13664
|
constantCache: /* @__PURE__ */ new WeakMap(),
|
|
13613
13665
|
temps: 0,
|
|
13614
13666
|
identifiers: Object.create(null),
|
|
13667
|
+
identifierScopes: Object.create(null),
|
|
13615
13668
|
scopes: {
|
|
13616
13669
|
vFor: 0,
|
|
13617
13670
|
vSlot: 0,
|
|
@@ -13662,8 +13715,12 @@ function createTransformContext(root, { filename = "", prefixIdentifiers = false
|
|
|
13662
13715
|
context.parent.children.splice(removalIndex, 1);
|
|
13663
13716
|
},
|
|
13664
13717
|
onNodeRemoved: NOOP,
|
|
13665
|
-
addIdentifiers(exp) {},
|
|
13718
|
+
addIdentifiers(exp, type = "local") {},
|
|
13666
13719
|
removeIdentifiers(exp) {},
|
|
13720
|
+
isSlotScopeIdentifier(name) {
|
|
13721
|
+
const scopes = context.identifierScopes[name];
|
|
13722
|
+
return scopes ? scopes[scopes.length - 1] === "slot" : false;
|
|
13723
|
+
},
|
|
13667
13724
|
hoist(exp) {
|
|
13668
13725
|
if (isString(exp)) exp = createSimpleExpression(exp);
|
|
13669
13726
|
context.hoists.push(exp);
|