@vue/compat 3.6.0-alpha.5 → 3.6.0-alpha.7
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.cjs.js +109 -76
- package/dist/vue.cjs.prod.js +204 -47
- package/dist/vue.esm-browser.js +109 -76
- package/dist/vue.esm-browser.prod.js +8 -8
- package/dist/vue.esm-bundler.js +112 -77
- package/dist/vue.global.js +109 -76
- package/dist/vue.global.prod.js +8 -8
- package/dist/vue.runtime.esm-browser.js +109 -76
- package/dist/vue.runtime.esm-browser.prod.js +8 -8
- package/dist/vue.runtime.esm-bundler.js +112 -77
- package/dist/vue.runtime.global.js +109 -76
- package/dist/vue.runtime.global.prod.js +8 -8
- package/package.json +2 -2
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.6.0-alpha.
|
|
2
|
+
* @vue/compat v3.6.0-alpha.7
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -2085,6 +2085,16 @@ class EffectScope {
|
|
|
2085
2085
|
return;
|
|
2086
2086
|
}
|
|
2087
2087
|
this.flags = 1024;
|
|
2088
|
+
this.reset();
|
|
2089
|
+
const sub = this.subs;
|
|
2090
|
+
if (sub !== void 0) {
|
|
2091
|
+
unlink(sub);
|
|
2092
|
+
}
|
|
2093
|
+
}
|
|
2094
|
+
/**
|
|
2095
|
+
* @internal
|
|
2096
|
+
*/
|
|
2097
|
+
reset() {
|
|
2088
2098
|
let dep = this.deps;
|
|
2089
2099
|
while (dep !== void 0) {
|
|
2090
2100
|
const node = dep.dep;
|
|
@@ -2095,10 +2105,6 @@ class EffectScope {
|
|
|
2095
2105
|
dep = unlink(dep, this);
|
|
2096
2106
|
}
|
|
2097
2107
|
}
|
|
2098
|
-
const sub = this.subs;
|
|
2099
|
-
if (sub !== void 0) {
|
|
2100
|
-
unlink(sub);
|
|
2101
|
-
}
|
|
2102
2108
|
cleanup(this);
|
|
2103
2109
|
}
|
|
2104
2110
|
}
|
|
@@ -2915,6 +2921,7 @@ function checkRecursiveUpdates(seen, fn) {
|
|
|
2915
2921
|
|
|
2916
2922
|
let isHmrUpdating = false;
|
|
2917
2923
|
const hmrDirtyComponents = /* @__PURE__ */ new Map();
|
|
2924
|
+
const hmrDirtyComponentsMode = /* @__PURE__ */ new Map();
|
|
2918
2925
|
if (!!(process.env.NODE_ENV !== "production")) {
|
|
2919
2926
|
getGlobalThis().__VUE_HMR_RUNTIME__ = {
|
|
2920
2927
|
createRecord: tryWrap(createRecord),
|
|
@@ -2978,9 +2985,10 @@ function reload(id, newComp) {
|
|
|
2978
2985
|
const record = map.get(id);
|
|
2979
2986
|
if (!record) return;
|
|
2980
2987
|
newComp = normalizeClassComponent(newComp);
|
|
2988
|
+
const isVapor = record.initialDef.__vapor;
|
|
2981
2989
|
updateComponentDef(record.initialDef, newComp);
|
|
2982
2990
|
const instances = [...record.instances];
|
|
2983
|
-
if (newComp.__vapor && !instances.some((i) => i.ceReload)) {
|
|
2991
|
+
if (isVapor && newComp.__vapor && !instances.some((i) => i.ceReload)) {
|
|
2984
2992
|
for (const instance of instances) {
|
|
2985
2993
|
if (instance.root && instance.root.ce && instance !== instance.root) {
|
|
2986
2994
|
instance.root.ce._removeChildStyle(instance.type);
|
|
@@ -3000,6 +3008,7 @@ function reload(id, newComp) {
|
|
|
3000
3008
|
hmrDirtyComponents.set(oldComp, dirtyInstances = /* @__PURE__ */ new Set());
|
|
3001
3009
|
}
|
|
3002
3010
|
dirtyInstances.add(instance);
|
|
3011
|
+
hmrDirtyComponentsMode.set(oldComp, !!isVapor);
|
|
3003
3012
|
instance.appContext.propsCache.delete(instance.type);
|
|
3004
3013
|
instance.appContext.emitsCache.delete(instance.type);
|
|
3005
3014
|
instance.appContext.optionsCache.delete(instance.type);
|
|
@@ -3040,6 +3049,7 @@ function reload(id, newComp) {
|
|
|
3040
3049
|
}
|
|
3041
3050
|
queuePostFlushCb(() => {
|
|
3042
3051
|
hmrDirtyComponents.clear();
|
|
3052
|
+
hmrDirtyComponentsMode.clear();
|
|
3043
3053
|
});
|
|
3044
3054
|
}
|
|
3045
3055
|
function updateComponentDef(oldComp, newComp) {
|
|
@@ -4201,7 +4211,7 @@ const BaseTransitionPropsValidators = {
|
|
|
4201
4211
|
onAppearCancelled: TransitionHookValidator
|
|
4202
4212
|
};
|
|
4203
4213
|
const recursiveGetSubtree = (instance) => {
|
|
4204
|
-
const subTree = instance.type
|
|
4214
|
+
const subTree = isVaporComponent(instance.type) ? instance.block : instance.subTree;
|
|
4205
4215
|
return subTree.component ? recursiveGetSubtree(subTree.component) : subTree;
|
|
4206
4216
|
};
|
|
4207
4217
|
const BaseTransitionImpl = {
|
|
@@ -4512,7 +4522,7 @@ function getInnerChild$1(vnode) {
|
|
|
4512
4522
|
}
|
|
4513
4523
|
function setTransitionHooks(vnode, hooks) {
|
|
4514
4524
|
if (vnode.shapeFlag & 6 && vnode.component) {
|
|
4515
|
-
if (vnode.type
|
|
4525
|
+
if (isVaporComponent(vnode.type)) {
|
|
4516
4526
|
getVaporInterface(vnode.component, vnode).setTransitionHooks(
|
|
4517
4527
|
vnode.component,
|
|
4518
4528
|
hooks
|
|
@@ -4921,7 +4931,8 @@ function createHydrationFunctions(rendererInternals) {
|
|
|
4921
4931
|
node,
|
|
4922
4932
|
container,
|
|
4923
4933
|
null,
|
|
4924
|
-
parentComponent
|
|
4934
|
+
parentComponent,
|
|
4935
|
+
parentSuspense
|
|
4925
4936
|
);
|
|
4926
4937
|
} else {
|
|
4927
4938
|
mountComponent(
|
|
@@ -7736,7 +7747,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
7736
7747
|
return vm;
|
|
7737
7748
|
}
|
|
7738
7749
|
}
|
|
7739
|
-
Vue.version = `2.6.14-compat:${"3.6.0-alpha.
|
|
7750
|
+
Vue.version = `2.6.14-compat:${"3.6.0-alpha.7"}`;
|
|
7740
7751
|
Vue.config = singletonApp.config;
|
|
7741
7752
|
Vue.use = (plugin, ...options) => {
|
|
7742
7753
|
if (plugin && isFunction(plugin.install)) {
|
|
@@ -8837,29 +8848,7 @@ function renderComponentRoot(instance) {
|
|
|
8837
8848
|
}
|
|
8838
8849
|
root = cloneVNode(root, fallthroughAttrs, false, true);
|
|
8839
8850
|
} else if (!!(process.env.NODE_ENV !== "production") && !accessedAttrs && root.type !== Comment) {
|
|
8840
|
-
|
|
8841
|
-
const eventAttrs = [];
|
|
8842
|
-
const extraAttrs = [];
|
|
8843
|
-
for (let i = 0, l = allAttrs.length; i < l; i++) {
|
|
8844
|
-
const key = allAttrs[i];
|
|
8845
|
-
if (isOn(key)) {
|
|
8846
|
-
if (!isModelListener(key)) {
|
|
8847
|
-
eventAttrs.push(key[2].toLowerCase() + key.slice(3));
|
|
8848
|
-
}
|
|
8849
|
-
} else {
|
|
8850
|
-
extraAttrs.push(key);
|
|
8851
|
-
}
|
|
8852
|
-
}
|
|
8853
|
-
if (extraAttrs.length) {
|
|
8854
|
-
warn$1(
|
|
8855
|
-
`Extraneous non-props attributes (${extraAttrs.join(", ")}) were passed to component but could not be automatically inherited because component renders fragment or text or teleport root nodes.`
|
|
8856
|
-
);
|
|
8857
|
-
}
|
|
8858
|
-
if (eventAttrs.length) {
|
|
8859
|
-
warn$1(
|
|
8860
|
-
`Extraneous non-emits event listeners (${eventAttrs.join(", ")}) were passed to component but could not be automatically inherited because component renders fragment or text root nodes. If the listener is intended to be a component custom event listener only, declare it using the "emits" option.`
|
|
8861
|
-
);
|
|
8862
|
-
}
|
|
8851
|
+
warnExtraneousAttributes(attrs);
|
|
8863
8852
|
}
|
|
8864
8853
|
}
|
|
8865
8854
|
}
|
|
@@ -8932,6 +8921,31 @@ const getChildRoot = (vnode) => {
|
|
|
8932
8921
|
};
|
|
8933
8922
|
return [normalizeVNode(childRoot), setRoot];
|
|
8934
8923
|
};
|
|
8924
|
+
function warnExtraneousAttributes(attrs) {
|
|
8925
|
+
const allAttrs = Object.keys(attrs);
|
|
8926
|
+
const eventAttrs = [];
|
|
8927
|
+
const extraAttrs = [];
|
|
8928
|
+
for (let i = 0, l = allAttrs.length; i < l; i++) {
|
|
8929
|
+
const key = allAttrs[i];
|
|
8930
|
+
if (isOn(key)) {
|
|
8931
|
+
if (!isModelListener(key)) {
|
|
8932
|
+
eventAttrs.push(key[2].toLowerCase() + key.slice(3));
|
|
8933
|
+
}
|
|
8934
|
+
} else {
|
|
8935
|
+
extraAttrs.push(key);
|
|
8936
|
+
}
|
|
8937
|
+
}
|
|
8938
|
+
if (extraAttrs.length) {
|
|
8939
|
+
warn$1(
|
|
8940
|
+
`Extraneous non-props attributes (${extraAttrs.join(", ")}) were passed to component but could not be automatically inherited because component renders fragment or text or teleport root nodes.`
|
|
8941
|
+
);
|
|
8942
|
+
}
|
|
8943
|
+
if (eventAttrs.length) {
|
|
8944
|
+
warn$1(
|
|
8945
|
+
`Extraneous non-emits event listeners (${eventAttrs.join(", ")}) were passed to component but could not be automatically inherited because component renders fragment or text root nodes. If the listener is intended to be a component custom event listener only, declare it using the "emits" option.`
|
|
8946
|
+
);
|
|
8947
|
+
}
|
|
8948
|
+
}
|
|
8935
8949
|
function filterSingleRoot(children, recurse = true) {
|
|
8936
8950
|
let singleRoot;
|
|
8937
8951
|
for (let i = 0; i < children.length; i++) {
|
|
@@ -9791,7 +9805,13 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
9791
9805
|
);
|
|
9792
9806
|
break;
|
|
9793
9807
|
case VaporSlot:
|
|
9794
|
-
getVaporInterface(parentComponent, n2).slot(
|
|
9808
|
+
getVaporInterface(parentComponent, n2).slot(
|
|
9809
|
+
n1,
|
|
9810
|
+
n2,
|
|
9811
|
+
container,
|
|
9812
|
+
anchor,
|
|
9813
|
+
parentComponent
|
|
9814
|
+
);
|
|
9795
9815
|
break;
|
|
9796
9816
|
default:
|
|
9797
9817
|
if (shapeFlag & 1) {
|
|
@@ -10305,7 +10325,8 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
10305
10325
|
n2,
|
|
10306
10326
|
container,
|
|
10307
10327
|
anchor,
|
|
10308
|
-
parentComponent
|
|
10328
|
+
parentComponent,
|
|
10329
|
+
parentSuspense
|
|
10309
10330
|
);
|
|
10310
10331
|
}
|
|
10311
10332
|
} else {
|
|
@@ -10367,7 +10388,42 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
10367
10388
|
}
|
|
10368
10389
|
if (!!(process.env.NODE_ENV !== "production") && isHmrUpdating) initialVNode.el = null;
|
|
10369
10390
|
if (instance.asyncDep) {
|
|
10370
|
-
|
|
10391
|
+
if (parentSuspense) {
|
|
10392
|
+
const hydratedEl = instance.vnode.el;
|
|
10393
|
+
parentSuspense.registerDep(instance, (setupResult) => {
|
|
10394
|
+
const { vnode } = instance;
|
|
10395
|
+
if (!!(process.env.NODE_ENV !== "production")) {
|
|
10396
|
+
pushWarningContext(vnode);
|
|
10397
|
+
}
|
|
10398
|
+
handleSetupResult(instance, setupResult, false);
|
|
10399
|
+
if (hydratedEl) {
|
|
10400
|
+
vnode.el = hydratedEl;
|
|
10401
|
+
}
|
|
10402
|
+
const placeholder = !hydratedEl && instance.subTree.el;
|
|
10403
|
+
setupRenderEffect(
|
|
10404
|
+
instance,
|
|
10405
|
+
vnode,
|
|
10406
|
+
// component may have been moved before resolve.
|
|
10407
|
+
// if this is not a hydration, instance.subTree will be the comment
|
|
10408
|
+
// placeholder.
|
|
10409
|
+
hostParentNode(hydratedEl || instance.subTree.el),
|
|
10410
|
+
// anchor will not be used if this is hydration, so only need to
|
|
10411
|
+
// consider the comment placeholder case.
|
|
10412
|
+
hydratedEl ? null : getNextHostNode(instance.subTree),
|
|
10413
|
+
parentSuspense,
|
|
10414
|
+
namespace,
|
|
10415
|
+
optimized
|
|
10416
|
+
);
|
|
10417
|
+
if (placeholder) {
|
|
10418
|
+
vnode.placeholder = null;
|
|
10419
|
+
hostRemove(placeholder);
|
|
10420
|
+
}
|
|
10421
|
+
updateHOCHostEl(instance, vnode.el);
|
|
10422
|
+
if (!!(process.env.NODE_ENV !== "production")) {
|
|
10423
|
+
popWarningContext();
|
|
10424
|
+
}
|
|
10425
|
+
});
|
|
10426
|
+
}
|
|
10371
10427
|
if (!initialVNode.el) {
|
|
10372
10428
|
const placeholder = instance.subTree = createVNode(Comment);
|
|
10373
10429
|
processCommentNode(null, placeholder, container, anchor);
|
|
@@ -10975,7 +11031,7 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
10975
11031
|
const move = (vnode, container, anchor, moveType, parentComponent, parentSuspense = null) => {
|
|
10976
11032
|
const { el, type, transition, children, shapeFlag } = vnode;
|
|
10977
11033
|
if (shapeFlag & 6) {
|
|
10978
|
-
if (type
|
|
11034
|
+
if (isVaporComponent(type)) {
|
|
10979
11035
|
getVaporInterface(parentComponent, vnode).move(vnode, container, anchor);
|
|
10980
11036
|
} else {
|
|
10981
11037
|
move(
|
|
@@ -11085,7 +11141,7 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
11085
11141
|
parentComponent.renderCache[cacheIndex] = void 0;
|
|
11086
11142
|
}
|
|
11087
11143
|
if (shapeFlag & 256) {
|
|
11088
|
-
if (vnode.type
|
|
11144
|
+
if (isVaporComponent(vnode.type)) {
|
|
11089
11145
|
getVaporInterface(parentComponent, vnode).deactivate(
|
|
11090
11146
|
vnode,
|
|
11091
11147
|
parentComponent.ctx.getStorageContainer()
|
|
@@ -11102,7 +11158,7 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
11102
11158
|
invokeVNodeHook(vnodeHook, parentComponent, vnode);
|
|
11103
11159
|
}
|
|
11104
11160
|
if (shapeFlag & 6) {
|
|
11105
|
-
if (type
|
|
11161
|
+
if (isVaporComponent(type)) {
|
|
11106
11162
|
getVaporInterface(parentComponent, vnode).unmount(vnode, doRemove);
|
|
11107
11163
|
return;
|
|
11108
11164
|
} else {
|
|
@@ -11244,7 +11300,7 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
11244
11300
|
};
|
|
11245
11301
|
const getNextHostNode = (vnode) => {
|
|
11246
11302
|
if (vnode.shapeFlag & 6) {
|
|
11247
|
-
if (vnode.type
|
|
11303
|
+
if (isVaporComponent(vnode.type)) {
|
|
11248
11304
|
return hostNextSibling(vnode.anchor);
|
|
11249
11305
|
}
|
|
11250
11306
|
return getNextHostNode(vnode.component.subTree);
|
|
@@ -11436,6 +11492,12 @@ app.use(vaporInteropPlugin)
|
|
|
11436
11492
|
}
|
|
11437
11493
|
return res;
|
|
11438
11494
|
}
|
|
11495
|
+
function isVaporComponent(type) {
|
|
11496
|
+
if (!!(process.env.NODE_ENV !== "production") && isHmrUpdating && hmrDirtyComponentsMode.has(type)) {
|
|
11497
|
+
return hmrDirtyComponentsMode.get(type);
|
|
11498
|
+
}
|
|
11499
|
+
return type.__vapor;
|
|
11500
|
+
}
|
|
11439
11501
|
function getInheritedScopeIds(vnode, parentComponent) {
|
|
11440
11502
|
const inheritedScopeIds = [];
|
|
11441
11503
|
let currentParent = parentComponent;
|
|
@@ -11735,7 +11797,7 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
|
|
|
11735
11797
|
m: move,
|
|
11736
11798
|
um: unmount,
|
|
11737
11799
|
n: next,
|
|
11738
|
-
o: { parentNode
|
|
11800
|
+
o: { parentNode }
|
|
11739
11801
|
} = rendererInternals;
|
|
11740
11802
|
let parentSuspenseId;
|
|
11741
11803
|
const isSuspensible = isVNodeSuspensible(vnode);
|
|
@@ -11910,12 +11972,11 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
|
|
|
11910
11972
|
next() {
|
|
11911
11973
|
return suspense.activeBranch && next(suspense.activeBranch);
|
|
11912
11974
|
},
|
|
11913
|
-
registerDep(instance,
|
|
11975
|
+
registerDep(instance, onResolve) {
|
|
11914
11976
|
const isInPendingSuspense = !!suspense.pendingBranch;
|
|
11915
11977
|
if (isInPendingSuspense) {
|
|
11916
11978
|
suspense.deps++;
|
|
11917
11979
|
}
|
|
11918
|
-
const hydratedEl = instance.vnode.el;
|
|
11919
11980
|
instance.asyncDep.catch((err) => {
|
|
11920
11981
|
handleError(err, instance, 0);
|
|
11921
11982
|
}).then((asyncSetupResult) => {
|
|
@@ -11923,37 +11984,7 @@ function createSuspenseBoundary(vnode, parentSuspense, parentComponent, containe
|
|
|
11923
11984
|
return;
|
|
11924
11985
|
}
|
|
11925
11986
|
instance.asyncResolved = true;
|
|
11926
|
-
|
|
11927
|
-
if (!!(process.env.NODE_ENV !== "production")) {
|
|
11928
|
-
pushWarningContext(vnode2);
|
|
11929
|
-
}
|
|
11930
|
-
handleSetupResult(instance, asyncSetupResult, false);
|
|
11931
|
-
if (hydratedEl) {
|
|
11932
|
-
vnode2.el = hydratedEl;
|
|
11933
|
-
}
|
|
11934
|
-
const placeholder = !hydratedEl && instance.subTree.el;
|
|
11935
|
-
setupRenderEffect(
|
|
11936
|
-
instance,
|
|
11937
|
-
vnode2,
|
|
11938
|
-
// component may have been moved before resolve.
|
|
11939
|
-
// if this is not a hydration, instance.subTree will be the comment
|
|
11940
|
-
// placeholder.
|
|
11941
|
-
parentNode(hydratedEl || instance.subTree.el),
|
|
11942
|
-
// anchor will not be used if this is hydration, so only need to
|
|
11943
|
-
// consider the comment placeholder case.
|
|
11944
|
-
hydratedEl ? null : next(instance.subTree),
|
|
11945
|
-
suspense,
|
|
11946
|
-
namespace,
|
|
11947
|
-
optimized2
|
|
11948
|
-
);
|
|
11949
|
-
if (placeholder) {
|
|
11950
|
-
vnode2.placeholder = null;
|
|
11951
|
-
remove(placeholder);
|
|
11952
|
-
}
|
|
11953
|
-
updateHOCHostEl(instance, vnode2.el);
|
|
11954
|
-
if (!!(process.env.NODE_ENV !== "production")) {
|
|
11955
|
-
popWarningContext();
|
|
11956
|
-
}
|
|
11987
|
+
onResolve(asyncSetupResult);
|
|
11957
11988
|
if (isInPendingSuspense && --suspense.deps === 0) {
|
|
11958
11989
|
suspense.resolve();
|
|
11959
11990
|
}
|
|
@@ -13231,7 +13262,7 @@ function isMemoSame(cached, memo) {
|
|
|
13231
13262
|
return true;
|
|
13232
13263
|
}
|
|
13233
13264
|
|
|
13234
|
-
const version = "3.6.0-alpha.
|
|
13265
|
+
const version = "3.6.0-alpha.7";
|
|
13235
13266
|
const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
|
|
13236
13267
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
13237
13268
|
const devtools = !!(process.env.NODE_ENV !== "production") || true ? devtools$1 : void 0;
|
|
@@ -15475,6 +15506,7 @@ var runtimeDom = /*#__PURE__*/Object.freeze({
|
|
|
15475
15506
|
getCurrentInstance: getCurrentInstance,
|
|
15476
15507
|
getCurrentScope: getCurrentScope,
|
|
15477
15508
|
getCurrentWatcher: getCurrentWatcher,
|
|
15509
|
+
getFunctionalFallthrough: getFunctionalFallthrough,
|
|
15478
15510
|
getInheritedScopeIds: getInheritedScopeIds,
|
|
15479
15511
|
getTransitionRawChildren: getTransitionRawChildren,
|
|
15480
15512
|
guardReactiveProps: guardReactiveProps,
|
|
@@ -15632,6 +15664,7 @@ var runtimeDom = /*#__PURE__*/Object.freeze({
|
|
|
15632
15664
|
validateProps: validateProps,
|
|
15633
15665
|
version: version,
|
|
15634
15666
|
warn: warn,
|
|
15667
|
+
warnExtraneousAttributes: warnExtraneousAttributes,
|
|
15635
15668
|
warnPropMismatch: warnPropMismatch,
|
|
15636
15669
|
watch: watch,
|
|
15637
15670
|
watchEffect: watchEffect,
|
|
@@ -21259,7 +21292,9 @@ const isNonKeyModifier = /* @__PURE__ */ makeMap(
|
|
|
21259
21292
|
`stop,prevent,self,ctrl,shift,alt,meta,exact,middle`
|
|
21260
21293
|
);
|
|
21261
21294
|
const maybeKeyModifier = /* @__PURE__ */ makeMap("left,right");
|
|
21262
|
-
const isKeyboardEvent = /* @__PURE__ */ makeMap(
|
|
21295
|
+
const isKeyboardEvent = /* @__PURE__ */ makeMap(
|
|
21296
|
+
`onkeyup,onkeydown,onkeypress`
|
|
21297
|
+
);
|
|
21263
21298
|
const resolveModifiers = (key, modifiers, context, loc) => {
|
|
21264
21299
|
const keyModifiers = [];
|
|
21265
21300
|
const nonKeyModifiers = [];
|
|
@@ -21686,4 +21721,4 @@ Vue.compile = compileToFunction;
|
|
|
21686
21721
|
|
|
21687
21722
|
const configureCompat = Vue.configureCompat;
|
|
21688
21723
|
|
|
21689
|
-
export { BaseTransition, BaseTransitionPropsValidators, Comment, DeprecationTypes, EffectScope, ErrorCodes, ErrorTypeStrings, Fragment, KeepAlive, MismatchTypes, MoveType, ReactiveEffect, 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, Vue 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, getInheritedScopeIds, getTransitionRawChildren, guardReactiveProps, h, handleError, handleMovedChildren, hasCSSTransform, hasInjectionContext, hydrate, hydrateOnIdle, hydrateOnInteraction, hydrateOnMediaQuery, hydrateOnVisible, initCustomFormatter, initDirectivesForSSR, initFeatureFlags, inject, isAsyncWrapper, isEmitListener, isKeepAlive, isMapEqual, isMemoSame, isMismatchAllowed, isProxy, isReactive, isReadonly, isRef, isRuntimeOnly, isSetEqual, isShallow, isTeleportDeferred, isTeleportDisabled, isTemplateNode$1 as isTemplateNode, isVNode, isValidHtmlOrSvgAttribute, 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, setDevtoolsHook, setRef, setTransitionHooks, setVarsOnNode, shallowReactive, shallowReadonly, shallowRef, shouldSetAsProp, 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, warnPropMismatch, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withKeys, withMemo, withModifiers, withScopeId, xlinkNS };
|
|
21724
|
+
export { BaseTransition, BaseTransitionPropsValidators, Comment, DeprecationTypes, EffectScope, ErrorCodes, ErrorTypeStrings, Fragment, KeepAlive, MismatchTypes, MoveType, ReactiveEffect, 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, Vue 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, isAsyncWrapper, isEmitListener, isKeepAlive, isMapEqual, isMemoSame, isMismatchAllowed, isProxy, isReactive, isReadonly, isRef, isRuntimeOnly, isSetEqual, isShallow, isTeleportDeferred, isTeleportDisabled, isTemplateNode$1 as isTemplateNode, isVNode, isValidHtmlOrSvgAttribute, 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, setDevtoolsHook, setRef, setTransitionHooks, setVarsOnNode, shallowReactive, shallowReadonly, shallowRef, shouldSetAsProp, 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 };
|