@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
|
@@ -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
|
**/
|
|
@@ -526,6 +526,13 @@ function warn$2(msg, ...args) {
|
|
|
526
526
|
const notifyBuffer = [];
|
|
527
527
|
let batchDepth = 0;
|
|
528
528
|
let activeSub = void 0;
|
|
529
|
+
let runDepth = 0;
|
|
530
|
+
function incRunDepth() {
|
|
531
|
+
++runDepth;
|
|
532
|
+
}
|
|
533
|
+
function decRunDepth() {
|
|
534
|
+
--runDepth;
|
|
535
|
+
}
|
|
529
536
|
let globalVersion = 0;
|
|
530
537
|
let notifyIndex = 0;
|
|
531
538
|
let notifyBufferLength = 0;
|
|
@@ -599,8 +606,10 @@ function propagate(link) {
|
|
|
599
606
|
const sub = link.sub;
|
|
600
607
|
let flags = sub.flags;
|
|
601
608
|
if (flags & 3) {
|
|
602
|
-
if (!(flags & 60))
|
|
603
|
-
|
|
609
|
+
if (!(flags & 60)) {
|
|
610
|
+
sub.flags = flags | 32;
|
|
611
|
+
if (runDepth) sub.flags |= 8;
|
|
612
|
+
} else if (!(flags & 12)) flags = 0;
|
|
604
613
|
else if (!(flags & 4)) sub.flags = flags & -9 | 32;
|
|
605
614
|
else if (!(flags & 48) && isValidLink(link, sub)) {
|
|
606
615
|
sub.flags = flags | 40;
|
|
@@ -669,13 +678,13 @@ function checkDirty(link, sub) {
|
|
|
669
678
|
let dirty = false;
|
|
670
679
|
if (sub.flags & 16) dirty = true;
|
|
671
680
|
else if ((depFlags & 17) === 17) {
|
|
681
|
+
const subs = dep.subs;
|
|
672
682
|
if (dep.update()) {
|
|
673
|
-
const subs = dep.subs;
|
|
674
683
|
if (subs.nextSub !== void 0) shallowPropagate(subs);
|
|
675
684
|
dirty = true;
|
|
676
685
|
}
|
|
677
686
|
} else if ((depFlags & 33) === 33) {
|
|
678
|
-
|
|
687
|
+
stack = {
|
|
679
688
|
value: link,
|
|
680
689
|
prev: stack
|
|
681
690
|
};
|
|
@@ -690,15 +699,12 @@ function checkDirty(link, sub) {
|
|
|
690
699
|
}
|
|
691
700
|
while (checkDepth) {
|
|
692
701
|
--checkDepth;
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
if (hasMultipleSubs) {
|
|
696
|
-
link = stack.value;
|
|
697
|
-
stack = stack.prev;
|
|
698
|
-
} else link = firstSub;
|
|
702
|
+
link = stack.value;
|
|
703
|
+
stack = stack.prev;
|
|
699
704
|
if (dirty) {
|
|
705
|
+
const subs = sub.subs;
|
|
700
706
|
if (sub.update()) {
|
|
701
|
-
if (
|
|
707
|
+
if (subs.nextSub !== void 0) shallowPropagate(subs);
|
|
702
708
|
sub = link.sub;
|
|
703
709
|
continue;
|
|
704
710
|
}
|
|
@@ -710,7 +716,7 @@ function checkDirty(link, sub) {
|
|
|
710
716
|
}
|
|
711
717
|
dirty = false;
|
|
712
718
|
}
|
|
713
|
-
return dirty;
|
|
719
|
+
return dirty && !!sub.flags;
|
|
714
720
|
} while (true);
|
|
715
721
|
}
|
|
716
722
|
function shallowPropagate(link) {
|
|
@@ -1862,9 +1868,11 @@ var ReactiveEffect = class {
|
|
|
1862
1868
|
if (!this.active) return this.fn();
|
|
1863
1869
|
cleanup(this);
|
|
1864
1870
|
const prevSub = startTracking(this);
|
|
1871
|
+
incRunDepth();
|
|
1865
1872
|
try {
|
|
1866
1873
|
return this.fn();
|
|
1867
1874
|
} finally {
|
|
1875
|
+
decRunDepth();
|
|
1868
1876
|
endTracking(this, prevSub);
|
|
1869
1877
|
const flags = this.flags;
|
|
1870
1878
|
if ((flags & 136) === 136) {
|
|
@@ -3544,7 +3552,7 @@ const TeleportImpl = {
|
|
|
3544
3552
|
name: "Teleport",
|
|
3545
3553
|
__isTeleport: true,
|
|
3546
3554
|
process(n1, n2, container, anchor, parentComponent, parentSuspense, namespace, slotScopeIds, optimized, internals) {
|
|
3547
|
-
const { mc: mountChildren, pc: patchChildren, pbc: patchBlockChildren, o: { insert, querySelector, createText, createComment } } = internals;
|
|
3555
|
+
const { mc: mountChildren, pc: patchChildren, pbc: patchBlockChildren, o: { insert, querySelector, createText, createComment, parentNode } } = internals;
|
|
3548
3556
|
const disabled = isTeleportDisabled(n2.props);
|
|
3549
3557
|
let { dynamicChildren } = n2;
|
|
3550
3558
|
if (!!(process.env.NODE_ENV !== "production") && isHmrUpdating) {
|
|
@@ -3573,7 +3581,7 @@ const TeleportImpl = {
|
|
|
3573
3581
|
if (pendingMounts.get(vnode) !== mountJob) return;
|
|
3574
3582
|
pendingMounts.delete(vnode);
|
|
3575
3583
|
if (isTeleportDisabled(vnode.props)) {
|
|
3576
|
-
mount(vnode, container, vnode.anchor);
|
|
3584
|
+
mount(vnode, parentNode(vnode.el) || container, vnode.anchor);
|
|
3577
3585
|
updateCssVars(vnode, true);
|
|
3578
3586
|
}
|
|
3579
3587
|
mountToTarget(vnode);
|
|
@@ -3653,7 +3661,7 @@ function moveTeleport(vnode, container, parentAnchor, { o: { insert }, m: move }
|
|
|
3653
3661
|
const { el, anchor, shapeFlag, children, props } = vnode;
|
|
3654
3662
|
const isReorder = moveType === 2;
|
|
3655
3663
|
if (isReorder) insert(el, container, parentAnchor);
|
|
3656
|
-
if (!isReorder || isTeleportDisabled(props)) {
|
|
3664
|
+
if (!pendingMounts.has(vnode) && (!isReorder || isTeleportDisabled(props))) {
|
|
3657
3665
|
if (shapeFlag & 16) for (let i = 0; i < children.length; i++) move(children[i], container, parentAnchor, 2, parentComponent);
|
|
3658
3666
|
}
|
|
3659
3667
|
if (isReorder) insert(anchor, container, parentAnchor);
|
|
@@ -3778,8 +3786,8 @@ const BaseTransitionImpl = {
|
|
|
3778
3786
|
const state = useTransitionState();
|
|
3779
3787
|
return () => {
|
|
3780
3788
|
const children = slots.default && getTransitionRawChildren(slots.default(), true);
|
|
3781
|
-
|
|
3782
|
-
|
|
3789
|
+
const child = children && children.length ? findNonCommentChild(children) : instance.subTree ? createCommentVNode() : void 0;
|
|
3790
|
+
if (!child) return;
|
|
3783
3791
|
const rawProps = /* @__PURE__ */ toRaw(props);
|
|
3784
3792
|
const { mode } = rawProps;
|
|
3785
3793
|
checkTransitionMode(mode);
|
|
@@ -5382,6 +5390,7 @@ function createSlots(slots, dynamicSlots) {
|
|
|
5382
5390
|
*/
|
|
5383
5391
|
function renderSlot(slots, name, props = {}, fallback, noSlotted) {
|
|
5384
5392
|
let slot = slots[name];
|
|
5393
|
+
if (fallback) fallback.__vdom = true;
|
|
5385
5394
|
const vaporSlot = slot && (slot.__vs || (slot.__vapor ? slot : null));
|
|
5386
5395
|
if (vaporSlot) {
|
|
5387
5396
|
const ret = (openBlock(), createBlock(VaporSlot, props));
|
|
@@ -5420,9 +5429,7 @@ function ensureValidVNode(vnodes) {
|
|
|
5420
5429
|
}
|
|
5421
5430
|
function ensureVaporSlotFallback(vnodes, fallback) {
|
|
5422
5431
|
let vaporSlot;
|
|
5423
|
-
if (vnodes && vnodes.length === 1 && isVNode(vnodes[0]) && (vaporSlot = vnodes[0].vs))
|
|
5424
|
-
if (!vaporSlot.fallback && fallback) vaporSlot.fallback = fallback;
|
|
5425
|
-
}
|
|
5432
|
+
if (vnodes && vnodes.length === 1 && isVNode(vnodes[0]) && (vaporSlot = vnodes[0].vs)) vaporSlot.outletFallback = fallback;
|
|
5426
5433
|
}
|
|
5427
5434
|
//#endregion
|
|
5428
5435
|
//#region packages/runtime-core/src/helpers/toHandlers.ts
|
|
@@ -5983,9 +5990,14 @@ function withAsyncContext(getAwaitable) {
|
|
|
5983
5990
|
setCurrentInstance(null, void 0);
|
|
5984
5991
|
if (inSSRSetup) setInSSRSetupState(false);
|
|
5985
5992
|
const restore = () => {
|
|
5993
|
+
const resetStoppedScope = ctx && !ctx.scope.active ? ctx.scope : void 0;
|
|
5986
5994
|
setCurrentInstance(ctx);
|
|
5987
5995
|
if (inSSRSetup) setInSSRSetupState(true);
|
|
5988
|
-
|
|
5996
|
+
const reset = restoreAsyncContext && restoreAsyncContext();
|
|
5997
|
+
return () => {
|
|
5998
|
+
if (reset) reset();
|
|
5999
|
+
if (resetStoppedScope) resetStoppedScope.reset();
|
|
6000
|
+
};
|
|
5989
6001
|
};
|
|
5990
6002
|
const cleanup = () => {
|
|
5991
6003
|
setCurrentInstance(null, void 0);
|
|
@@ -6324,7 +6336,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
6324
6336
|
if (options.el) return vm.$mount(options.el);
|
|
6325
6337
|
else return vm;
|
|
6326
6338
|
}
|
|
6327
|
-
Vue.version = `2.6.14-compat:3.6.0-beta.
|
|
6339
|
+
Vue.version = `2.6.14-compat:3.6.0-beta.12`;
|
|
6328
6340
|
Vue.config = singletonApp.config;
|
|
6329
6341
|
Vue.use = (plugin, ...options) => {
|
|
6330
6342
|
if (plugin && isFunction(plugin.install)) plugin.install(Vue, ...options);
|
|
@@ -7470,7 +7482,7 @@ function getInvalidTypeMessage(name, value, expectedTypes) {
|
|
|
7470
7482
|
const receivedType = toRawType(value);
|
|
7471
7483
|
const expectedValue = styleValue(value, expectedType);
|
|
7472
7484
|
const receivedValue = styleValue(value, receivedType);
|
|
7473
|
-
if (expectedTypes.length === 1 && isExplicable(expectedType) &&
|
|
7485
|
+
if (expectedTypes.length === 1 && isExplicable(expectedType) && isCoercible(expectedType, receivedType)) message += ` with value ${expectedValue}`;
|
|
7474
7486
|
message += `, got ${receivedType} `;
|
|
7475
7487
|
if (isExplicable(receivedType)) message += `with value ${receivedValue}.`;
|
|
7476
7488
|
return message;
|
|
@@ -7479,7 +7491,8 @@ function getInvalidTypeMessage(name, value, expectedTypes) {
|
|
|
7479
7491
|
* dev only
|
|
7480
7492
|
*/
|
|
7481
7493
|
function styleValue(value, type) {
|
|
7482
|
-
if (
|
|
7494
|
+
if (isSymbol(value)) return value.toString();
|
|
7495
|
+
else if (type === "String") return `"${value}"`;
|
|
7483
7496
|
else if (type === "Number") return `${Number(value)}`;
|
|
7484
7497
|
else return `${value}`;
|
|
7485
7498
|
}
|
|
@@ -7496,8 +7509,11 @@ function isExplicable(type) {
|
|
|
7496
7509
|
/**
|
|
7497
7510
|
* dev only
|
|
7498
7511
|
*/
|
|
7499
|
-
function
|
|
7500
|
-
return args.
|
|
7512
|
+
function isCoercible(...args) {
|
|
7513
|
+
return args.every((elem) => {
|
|
7514
|
+
const value = elem.toLowerCase();
|
|
7515
|
+
return value !== "boolean" && value !== "symbol";
|
|
7516
|
+
});
|
|
7501
7517
|
}
|
|
7502
7518
|
//#endregion
|
|
7503
7519
|
//#region packages/runtime-core/src/componentSlots.ts
|
|
@@ -8733,15 +8749,19 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
|
|
|
8733
8749
|
if (suspense.isHydrating) suspense.isHydrating = false;
|
|
8734
8750
|
else if (!resume) {
|
|
8735
8751
|
delayEnter = activeBranch && pendingBranch.transition && pendingBranch.transition.mode === "out-in";
|
|
8752
|
+
let hasUpdatedAnchor = false;
|
|
8736
8753
|
if (delayEnter) activeBranch.transition.afterLeave = () => {
|
|
8737
8754
|
if (pendingId === suspense.pendingId) {
|
|
8738
|
-
move(pendingBranch, container, anchor === initialAnchor ? next(activeBranch) : anchor, 0, parentComponent);
|
|
8755
|
+
move(pendingBranch, container, anchor === initialAnchor && !hasUpdatedAnchor ? next(activeBranch) : anchor, 0, parentComponent);
|
|
8739
8756
|
queuePostFlushCb(effects);
|
|
8740
8757
|
if (isInFallback && vnode.ssFallback) vnode.ssFallback.el = null;
|
|
8741
8758
|
}
|
|
8742
8759
|
};
|
|
8743
8760
|
if (activeBranch && !suspense.isFallbackMountPending) {
|
|
8744
|
-
if (parentNode(activeBranch.el) === container)
|
|
8761
|
+
if (parentNode(activeBranch.el) === container) {
|
|
8762
|
+
anchor = next(activeBranch);
|
|
8763
|
+
hasUpdatedAnchor = true;
|
|
8764
|
+
}
|
|
8745
8765
|
unmount(activeBranch, parentComponent, suspense, true);
|
|
8746
8766
|
if (!delayEnter && isInFallback && vnode.ssFallback) queuePostRenderEffect(() => vnode.ssFallback.el = null, void 0, suspense);
|
|
8747
8767
|
}
|
|
@@ -9138,12 +9158,30 @@ function cloneVNode(vnode, extraProps, mergeRef = false, cloneTransition = false
|
|
|
9138
9158
|
el: vnode.el,
|
|
9139
9159
|
anchor: vnode.anchor,
|
|
9140
9160
|
ctx: vnode.ctx,
|
|
9141
|
-
ce: vnode.ce
|
|
9161
|
+
ce: vnode.ce,
|
|
9162
|
+
vi: vnode.vi,
|
|
9163
|
+
vs: cloneVaporSlotMeta(vnode),
|
|
9164
|
+
vb: vnode.vb
|
|
9142
9165
|
};
|
|
9143
9166
|
if (transition && cloneTransition) setTransitionHooks(cloned, transition.clone(cloned));
|
|
9144
9167
|
defineLegacyVNodeProperties(cloned);
|
|
9145
9168
|
return cloned;
|
|
9146
9169
|
}
|
|
9170
|
+
function cloneVaporSlotMeta(vnode) {
|
|
9171
|
+
const vaporSlot = vnode.vs;
|
|
9172
|
+
if (!vaporSlot) return vaporSlot;
|
|
9173
|
+
const cloned = {
|
|
9174
|
+
slot: vaporSlot.slot,
|
|
9175
|
+
fallback: vaporSlot.fallback,
|
|
9176
|
+
outletFallback: vaporSlot.outletFallback
|
|
9177
|
+
};
|
|
9178
|
+
if (vnode.el) {
|
|
9179
|
+
cloned.state = vaporSlot.state;
|
|
9180
|
+
cloned.ref = vaporSlot.ref;
|
|
9181
|
+
cloned.scope = vaporSlot.scope;
|
|
9182
|
+
}
|
|
9183
|
+
return cloned;
|
|
9184
|
+
}
|
|
9147
9185
|
/**
|
|
9148
9186
|
* Dev only, for HMR of hoisted vnodes reused in v-for
|
|
9149
9187
|
* https://github.com/vitejs/vite/issues/2022
|
|
@@ -9832,7 +9870,7 @@ function isMemoSame(cached, memo) {
|
|
|
9832
9870
|
}
|
|
9833
9871
|
//#endregion
|
|
9834
9872
|
//#region packages/runtime-core/src/index.ts
|
|
9835
|
-
const version = "3.6.0-beta.
|
|
9873
|
+
const version = "3.6.0-beta.12";
|
|
9836
9874
|
const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
|
|
9837
9875
|
/**
|
|
9838
9876
|
* Runtime error messages. Only exposed in dev or esm builds.
|
|
@@ -10337,7 +10375,10 @@ function patchStyle(el, prev, next) {
|
|
|
10337
10375
|
}
|
|
10338
10376
|
for (const key in next) {
|
|
10339
10377
|
if (key === "display") hasControlledDisplay = true;
|
|
10340
|
-
|
|
10378
|
+
const value = next[key];
|
|
10379
|
+
if (value != null) {
|
|
10380
|
+
if (!shouldPreserveTextareaResizeStyle(el, key, !isString(prev) && prev ? prev[key] : void 0, value)) setStyle(style, key, value);
|
|
10381
|
+
} else setStyle(style, key, "");
|
|
10341
10382
|
}
|
|
10342
10383
|
} else if (isCssString) {
|
|
10343
10384
|
if (prev !== next) {
|
|
@@ -10387,6 +10428,14 @@ function autoPrefix(style, rawName) {
|
|
|
10387
10428
|
}
|
|
10388
10429
|
return rawName;
|
|
10389
10430
|
}
|
|
10431
|
+
/**
|
|
10432
|
+
* Browsers update textarea width/height directly during native resize.
|
|
10433
|
+
* Only special-case this common textarea path for now; other resize scenarios
|
|
10434
|
+
* still follow normal vnode style patching.
|
|
10435
|
+
*/
|
|
10436
|
+
function shouldPreserveTextareaResizeStyle(el, key, prev, next) {
|
|
10437
|
+
return el.tagName === "TEXTAREA" && (key === "width" || key === "height") && isString(next) && prev === next;
|
|
10438
|
+
}
|
|
10390
10439
|
//#endregion
|
|
10391
10440
|
//#region packages/runtime-dom/src/modules/attrs.ts
|
|
10392
10441
|
const xlinkNS = "http://www.w3.org/1999/xlink";
|
|
@@ -10846,7 +10895,10 @@ var VueElementBase = class VueElementBase extends BaseClass {
|
|
|
10846
10895
|
replacementNodes.push(child);
|
|
10847
10896
|
}
|
|
10848
10897
|
parent.removeChild(o);
|
|
10849
|
-
slotReplacements.set(o,
|
|
10898
|
+
slotReplacements.set(o, {
|
|
10899
|
+
nodes: replacementNodes,
|
|
10900
|
+
usedFallback: !content
|
|
10901
|
+
});
|
|
10850
10902
|
}
|
|
10851
10903
|
this._updateSlotNodes(slotReplacements);
|
|
10852
10904
|
}
|
|
@@ -11469,6 +11521,7 @@ var src_exports = /* @__PURE__ */ __exportAll({
|
|
|
11469
11521
|
TransitionGroup: () => TransitionGroup,
|
|
11470
11522
|
TransitionPropsValidators: () => TransitionPropsValidators,
|
|
11471
11523
|
TriggerOpTypes: () => TriggerOpTypes,
|
|
11524
|
+
VaporSlot: () => VaporSlot,
|
|
11472
11525
|
VueElement: () => VueElement,
|
|
11473
11526
|
VueElementBase: () => VueElementBase,
|
|
11474
11527
|
activate: () => activate,
|
|
@@ -11524,6 +11577,7 @@ var src_exports = /* @__PURE__ */ __exportAll({
|
|
|
11524
11577
|
endMeasure: () => endMeasure,
|
|
11525
11578
|
ensureHydrationRenderer: () => ensureHydrationRenderer,
|
|
11526
11579
|
ensureRenderer: () => ensureRenderer,
|
|
11580
|
+
ensureValidVNode: () => ensureValidVNode,
|
|
11527
11581
|
ensureVaporSlotFallback: () => ensureVaporSlotFallback,
|
|
11528
11582
|
expose: () => expose,
|
|
11529
11583
|
flushOnAppMount: () => flushOnAppMount,
|
|
@@ -11589,6 +11643,7 @@ var src_exports = /* @__PURE__ */ __exportAll({
|
|
|
11589
11643
|
normalizeProps: () => normalizeProps,
|
|
11590
11644
|
normalizeRef: () => normalizeRef,
|
|
11591
11645
|
normalizeStyle: () => normalizeStyle,
|
|
11646
|
+
normalizeVNode: () => normalizeVNode,
|
|
11592
11647
|
onActivated: () => onActivated,
|
|
11593
11648
|
onBeforeMount: () => onBeforeMount,
|
|
11594
11649
|
onBeforeUnmount: () => onBeforeUnmount,
|
|
@@ -13912,6 +13967,7 @@ function createTransformContext(root, { filename = "", prefixIdentifiers = false
|
|
|
13912
13967
|
constantCache: /* @__PURE__ */ new WeakMap(),
|
|
13913
13968
|
temps: 0,
|
|
13914
13969
|
identifiers: Object.create(null),
|
|
13970
|
+
identifierScopes: Object.create(null),
|
|
13915
13971
|
scopes: {
|
|
13916
13972
|
vFor: 0,
|
|
13917
13973
|
vSlot: 0,
|
|
@@ -13965,8 +14021,12 @@ function createTransformContext(root, { filename = "", prefixIdentifiers = false
|
|
|
13965
14021
|
context.parent.children.splice(removalIndex, 1);
|
|
13966
14022
|
},
|
|
13967
14023
|
onNodeRemoved: NOOP,
|
|
13968
|
-
addIdentifiers(exp) {},
|
|
14024
|
+
addIdentifiers(exp, type = "local") {},
|
|
13969
14025
|
removeIdentifiers(exp) {},
|
|
14026
|
+
isSlotScopeIdentifier(name) {
|
|
14027
|
+
const scopes = context.identifierScopes[name];
|
|
14028
|
+
return scopes ? scopes[scopes.length - 1] === "slot" : false;
|
|
14029
|
+
},
|
|
13970
14030
|
hoist(exp) {
|
|
13971
14031
|
if (isString(exp)) exp = createSimpleExpression(exp);
|
|
13972
14032
|
context.hoists.push(exp);
|
|
@@ -16186,4 +16246,4 @@ Vue.compile = compileToFunction;
|
|
|
16186
16246
|
var esm_index_default = Vue;
|
|
16187
16247
|
const configureCompat = Vue.configureCompat;
|
|
16188
16248
|
//#endregion
|
|
16189
|
-
export { BaseTransition, BaseTransitionPropsValidators, Comment, DeprecationTypes, EffectScope, ErrorCodes, ErrorTypeStrings, Fragment, KeepAlive, MismatchTypes, MoveType, NULL_DYNAMIC_COMPONENT, ReactiveEffect, SchedulerJobFlags, Static, Suspense, Teleport, Text, TrackOpTypes, Transition, TransitionGroup, TransitionPropsValidators, TriggerOpTypes, VueElement, VueElementBase, activate, assertNumber, baseApplyTranslation, baseEmit, baseNormalizePropsOptions, baseResolveTransitionHooks, baseUseCssVars, callPendingCbs, callWithAsyncErrorHandling, callWithErrorHandling, camelize, capitalize, checkTransitionMode, cloneVNode, compatUtils, computed, configureCompat, createApp, createAppAPI, createAsyncComponentContext, createBlock, createCanSetSetupRefChecker, createCommentVNode, createElementBlock, createBaseVNode as createElementVNode, createHydrationRenderer, createInternalObject, createPropsRestProxy, createRenderer, createSSRApp, createSlots, createStaticVNode, createTextVNode, createVNode, currentInstance, customRef, deactivate, esm_index_default as default, defineAsyncComponent, defineComponent, defineCustomElement, defineEmits, defineExpose, defineModel, defineOptions, defineProps, defineSSRCustomElement, defineSlots, devtools, devtoolsComponentAdded, effect, effectScope, endMeasure, ensureHydrationRenderer, ensureRenderer, ensureVaporSlotFallback, expose, flushOnAppMount, forceReflow, getAttributeMismatch, getComponentName, getCurrentInstance, getCurrentScope, getCurrentWatcher, getFunctionalFallthrough, getInheritedScopeIds, getTransitionRawChildren, guardReactiveProps, h, handleError, handleMovedChildren, hasCSSTransform, hasInjectionContext, hydrate, hydrateOnIdle, hydrateOnInteraction, hydrateOnMediaQuery, hydrateOnVisible, initCustomFormatter, initDirectivesForSSR, initFeatureFlags, inject, invalidateMount, invokeDirectiveHook, isAsyncWrapper, isEmitListener, isHydrating, isKeepAlive, isMapEqual, isMemoSame, isMismatchAllowed, isProxy, isReactive, isReadonly, isRef, isRuntimeOnly, isSetEqual, isShallow, isTeleportDeferred, isTeleportDisabled, isTemplateNode, isTemplateRefKey, isVNode, isValidHtmlOrSvgAttribute, knownTemplateRefs, leaveCbKey, markAsyncBoundary, markRaw, matches, mergeDefaults, mergeModels, mergeProps, nextTick, nextUid, nodeOps, normalizeClass, normalizeContainer, normalizeProps, normalizeRef, normalizeStyle, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onScopeDispose, onServerPrefetch, onUnmounted, onUpdated, onWatcherCleanup, openBlock, patchProp, patchStyle, performAsyncHydrate, performTransitionEnter, performTransitionLeave, popScopeId, popWarningContext, provide, proxyRefs, pushScopeId, pushWarningContext, queueJob, queuePostFlushCb, reactive, readonly, ref, registerHMR, registerRuntimeCompiler, render, renderList, renderSlot, resetShapeFlag, resolveComponent, resolveDirective, resolveDynamicComponent, resolveFilter, resolvePropValue, resolveTarget as resolveTeleportTarget, resolveTransitionHooks, resolveTransitionProps, setBlockTracking, setCurrentInstance, setCurrentRenderingInstance, setDevtoolsHook, setIsHydratingEnabled, setRef, setTransitionHooks, setVarsOnNode, shallowReactive, shallowReadonly, shallowRef, shouldSetAsProp, shouldSetAsPropForVueCE, shouldUpdateComponent, simpleSetCurrentInstance, ssrContextKey, ssrUtils, startMeasure, stop, svgNS, toClassSet, toDisplayString, toHandlerKey, toHandlers, toRaw, toRef, toRefs, toStyleMap, toValue, transformVNodeArgs, triggerRef, unref, unregisterHMR, unsafeToTrustedHTML, useAsyncComponentState, useAttrs, useCssModule, useCssVars, useHost, useId, useInstanceOption, useModel, useSSRContext, useShadowRoot, useSlots, useTemplateRef, useTransitionState, vModelCheckbox, vModelCheckboxInit, vModelCheckboxUpdate, vModelDynamic, getValue as vModelGetValue, vModelRadio, vModelSelect, vModelSelectInit, vModelSetSelected, vModelText, vModelTextInit, vModelTextUpdate, vShow, vShowHidden, vShowOriginalDisplay, validateComponentName, validateProps, version, warn, warnExtraneousAttributes, warnPropMismatch, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withKeys, withMemo, withModifiers, withScopeId, xlinkNS };
|
|
16249
|
+
export { BaseTransition, BaseTransitionPropsValidators, Comment, DeprecationTypes, EffectScope, ErrorCodes, ErrorTypeStrings, Fragment, KeepAlive, MismatchTypes, MoveType, NULL_DYNAMIC_COMPONENT, ReactiveEffect, SchedulerJobFlags, Static, Suspense, Teleport, Text, TrackOpTypes, Transition, TransitionGroup, TransitionPropsValidators, TriggerOpTypes, VaporSlot, VueElement, VueElementBase, activate, assertNumber, baseApplyTranslation, baseEmit, baseNormalizePropsOptions, baseResolveTransitionHooks, baseUseCssVars, callPendingCbs, callWithAsyncErrorHandling, callWithErrorHandling, camelize, capitalize, checkTransitionMode, cloneVNode, compatUtils, computed, configureCompat, createApp, createAppAPI, createAsyncComponentContext, createBlock, createCanSetSetupRefChecker, createCommentVNode, createElementBlock, createBaseVNode as createElementVNode, createHydrationRenderer, createInternalObject, createPropsRestProxy, createRenderer, createSSRApp, createSlots, createStaticVNode, createTextVNode, createVNode, currentInstance, customRef, deactivate, esm_index_default as default, defineAsyncComponent, defineComponent, defineCustomElement, defineEmits, defineExpose, defineModel, defineOptions, defineProps, defineSSRCustomElement, defineSlots, devtools, devtoolsComponentAdded, effect, effectScope, endMeasure, ensureHydrationRenderer, ensureRenderer, ensureValidVNode, ensureVaporSlotFallback, expose, flushOnAppMount, forceReflow, getAttributeMismatch, getComponentName, getCurrentInstance, getCurrentScope, getCurrentWatcher, getFunctionalFallthrough, getInheritedScopeIds, getTransitionRawChildren, guardReactiveProps, h, handleError, handleMovedChildren, hasCSSTransform, hasInjectionContext, hydrate, hydrateOnIdle, hydrateOnInteraction, hydrateOnMediaQuery, hydrateOnVisible, initCustomFormatter, initDirectivesForSSR, initFeatureFlags, inject, invalidateMount, invokeDirectiveHook, isAsyncWrapper, isEmitListener, isHydrating, isKeepAlive, isMapEqual, isMemoSame, isMismatchAllowed, isProxy, isReactive, isReadonly, isRef, isRuntimeOnly, isSetEqual, isShallow, isTeleportDeferred, isTeleportDisabled, isTemplateNode, isTemplateRefKey, isVNode, isValidHtmlOrSvgAttribute, knownTemplateRefs, leaveCbKey, markAsyncBoundary, markRaw, matches, mergeDefaults, mergeModels, mergeProps, nextTick, nextUid, nodeOps, normalizeClass, normalizeContainer, normalizeProps, normalizeRef, normalizeStyle, normalizeVNode, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onScopeDispose, onServerPrefetch, onUnmounted, onUpdated, onWatcherCleanup, openBlock, patchProp, patchStyle, performAsyncHydrate, performTransitionEnter, performTransitionLeave, popScopeId, popWarningContext, provide, proxyRefs, pushScopeId, pushWarningContext, queueJob, queuePostFlushCb, reactive, readonly, ref, registerHMR, registerRuntimeCompiler, render, renderList, renderSlot, resetShapeFlag, resolveComponent, resolveDirective, resolveDynamicComponent, resolveFilter, resolvePropValue, resolveTarget as resolveTeleportTarget, resolveTransitionHooks, resolveTransitionProps, setBlockTracking, setCurrentInstance, setCurrentRenderingInstance, setDevtoolsHook, setIsHydratingEnabled, setRef, setTransitionHooks, setVarsOnNode, shallowReactive, shallowReadonly, shallowRef, shouldSetAsProp, shouldSetAsPropForVueCE, shouldUpdateComponent, simpleSetCurrentInstance, ssrContextKey, ssrUtils, startMeasure, stop, svgNS, toClassSet, toDisplayString, toHandlerKey, toHandlers, toRaw, toRef, toRefs, toStyleMap, toValue, transformVNodeArgs, triggerRef, unref, unregisterHMR, unsafeToTrustedHTML, useAsyncComponentState, useAttrs, useCssModule, useCssVars, useHost, useId, useInstanceOption, useModel, useSSRContext, useShadowRoot, useSlots, useTemplateRef, useTransitionState, vModelCheckbox, vModelCheckboxInit, vModelCheckboxUpdate, vModelDynamic, getValue as vModelGetValue, vModelRadio, vModelSelect, vModelSelectInit, vModelSetSelected, vModelText, vModelTextInit, vModelTextUpdate, vShow, vShowHidden, vShowOriginalDisplay, validateComponentName, validateProps, version, warn, warnExtraneousAttributes, warnPropMismatch, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withKeys, withMemo, withModifiers, withScopeId, xlinkNS };
|