@vue/compat 3.6.0-beta.2 → 3.6.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vue.cjs.js +9 -7
- package/dist/vue.cjs.prod.js +9 -7
- package/dist/vue.esm-browser.js +10 -8
- package/dist/vue.esm-browser.prod.js +3 -3
- package/dist/vue.esm-bundler.js +10 -8
- package/dist/vue.global.js +9 -7
- package/dist/vue.global.prod.js +2 -2
- package/dist/vue.runtime.esm-browser.js +10 -8
- package/dist/vue.runtime.esm-browser.prod.js +3 -3
- package/dist/vue.runtime.esm-bundler.js +10 -8
- package/dist/vue.runtime.global.js +9 -7
- package/dist/vue.runtime.global.prod.js +2 -2
- package/package.json +2 -2
package/dist/vue.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.6.0-beta.
|
|
2
|
+
* @vue/compat v3.6.0-beta.3
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -6680,9 +6680,10 @@ function createSlots(slots, dynamicSlots) {
|
|
|
6680
6680
|
|
|
6681
6681
|
function renderSlot(slots, name, props = {}, fallback, noSlotted) {
|
|
6682
6682
|
let slot = slots[name];
|
|
6683
|
-
|
|
6683
|
+
const vaporSlot = slot && (slot.__vs || (slot.__vapor ? slot : null));
|
|
6684
|
+
if (vaporSlot) {
|
|
6684
6685
|
const ret = (openBlock(), createBlock(VaporSlot, props));
|
|
6685
|
-
ret.vs = { slot, fallback };
|
|
6686
|
+
ret.vs = { slot: vaporSlot, fallback };
|
|
6686
6687
|
return ret;
|
|
6687
6688
|
}
|
|
6688
6689
|
if (currentRenderingInstance && (currentRenderingInstance.ce || currentRenderingInstance.parent && isAsyncWrapper(currentRenderingInstance.parent) && currentRenderingInstance.parent.ce)) {
|
|
@@ -6745,14 +6746,14 @@ function ensureVaporSlotFallback(vnodes, fallback) {
|
|
|
6745
6746
|
}
|
|
6746
6747
|
}
|
|
6747
6748
|
|
|
6748
|
-
function toHandlers(obj, preserveCaseIfNecessary
|
|
6749
|
+
function toHandlers(obj, preserveCaseIfNecessary) {
|
|
6749
6750
|
const ret = {};
|
|
6750
6751
|
if (!isObject(obj)) {
|
|
6751
6752
|
warn$1(`v-on with no argument expects an object value.`);
|
|
6752
6753
|
return ret;
|
|
6753
6754
|
}
|
|
6754
6755
|
for (const key in obj) {
|
|
6755
|
-
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] =
|
|
6756
|
+
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] = obj[key];
|
|
6756
6757
|
}
|
|
6757
6758
|
return ret;
|
|
6758
6759
|
}
|
|
@@ -7893,7 +7894,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
7893
7894
|
return vm;
|
|
7894
7895
|
}
|
|
7895
7896
|
}
|
|
7896
|
-
Vue.version = `2.6.14-compat:${"3.6.0-beta.
|
|
7897
|
+
Vue.version = `2.6.14-compat:${"3.6.0-beta.3"}`;
|
|
7897
7898
|
Vue.config = singletonApp.config;
|
|
7898
7899
|
Vue.use = (plugin, ...options) => {
|
|
7899
7900
|
if (plugin && isFunction(plugin.install)) {
|
|
@@ -13250,7 +13251,7 @@ function isMemoSame(cached, memo) {
|
|
|
13250
13251
|
return true;
|
|
13251
13252
|
}
|
|
13252
13253
|
|
|
13253
|
-
const version = "3.6.0-beta.
|
|
13254
|
+
const version = "3.6.0-beta.3";
|
|
13254
13255
|
const warn = warn$1 ;
|
|
13255
13256
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
13256
13257
|
const devtools = devtools$1 ;
|
|
@@ -15339,6 +15340,7 @@ var runtimeDom = /*#__PURE__*/Object.freeze({
|
|
|
15339
15340
|
Fragment: Fragment,
|
|
15340
15341
|
KeepAlive: KeepAlive,
|
|
15341
15342
|
MoveType: MoveType,
|
|
15343
|
+
NULL_DYNAMIC_COMPONENT: NULL_DYNAMIC_COMPONENT,
|
|
15342
15344
|
ReactiveEffect: ReactiveEffect,
|
|
15343
15345
|
Static: Static,
|
|
15344
15346
|
Suspense: Suspense,
|
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.3
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -5477,9 +5477,10 @@ function createSlots(slots, dynamicSlots) {
|
|
|
5477
5477
|
|
|
5478
5478
|
function renderSlot(slots, name, props = {}, fallback, noSlotted) {
|
|
5479
5479
|
let slot = slots[name];
|
|
5480
|
-
|
|
5480
|
+
const vaporSlot = slot && (slot.__vs || (slot.__vapor ? slot : null));
|
|
5481
|
+
if (vaporSlot) {
|
|
5481
5482
|
const ret = (openBlock(), createBlock(VaporSlot, props));
|
|
5482
|
-
ret.vs = { slot, fallback };
|
|
5483
|
+
ret.vs = { slot: vaporSlot, fallback };
|
|
5483
5484
|
return ret;
|
|
5484
5485
|
}
|
|
5485
5486
|
if (currentRenderingInstance && (currentRenderingInstance.ce || currentRenderingInstance.parent && isAsyncWrapper(currentRenderingInstance.parent) && currentRenderingInstance.parent.ce)) {
|
|
@@ -5536,10 +5537,10 @@ function ensureVaporSlotFallback(vnodes, fallback) {
|
|
|
5536
5537
|
}
|
|
5537
5538
|
}
|
|
5538
5539
|
|
|
5539
|
-
function toHandlers(obj, preserveCaseIfNecessary
|
|
5540
|
+
function toHandlers(obj, preserveCaseIfNecessary) {
|
|
5540
5541
|
const ret = {};
|
|
5541
5542
|
for (const key in obj) {
|
|
5542
|
-
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] =
|
|
5543
|
+
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] = obj[key];
|
|
5543
5544
|
}
|
|
5544
5545
|
return ret;
|
|
5545
5546
|
}
|
|
@@ -6431,7 +6432,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
6431
6432
|
return vm;
|
|
6432
6433
|
}
|
|
6433
6434
|
}
|
|
6434
|
-
Vue.version = `2.6.14-compat:${"3.6.0-beta.
|
|
6435
|
+
Vue.version = `2.6.14-compat:${"3.6.0-beta.3"}`;
|
|
6435
6436
|
Vue.config = singletonApp.config;
|
|
6436
6437
|
Vue.use = (plugin, ...options) => {
|
|
6437
6438
|
if (plugin && isFunction(plugin.install)) {
|
|
@@ -10814,7 +10815,7 @@ function isMemoSame(cached, memo) {
|
|
|
10814
10815
|
return true;
|
|
10815
10816
|
}
|
|
10816
10817
|
|
|
10817
|
-
const version = "3.6.0-beta.
|
|
10818
|
+
const version = "3.6.0-beta.3";
|
|
10818
10819
|
const warn$1 = NOOP;
|
|
10819
10820
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
10820
10821
|
const devtools = void 0;
|
|
@@ -12729,6 +12730,7 @@ var runtimeDom = /*#__PURE__*/Object.freeze({
|
|
|
12729
12730
|
Fragment: Fragment,
|
|
12730
12731
|
KeepAlive: KeepAlive,
|
|
12731
12732
|
MoveType: MoveType,
|
|
12733
|
+
NULL_DYNAMIC_COMPONENT: NULL_DYNAMIC_COMPONENT,
|
|
12732
12734
|
ReactiveEffect: ReactiveEffect,
|
|
12733
12735
|
Static: Static,
|
|
12734
12736
|
Suspense: Suspense,
|
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.3
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -6630,9 +6630,10 @@ function createSlots(slots, dynamicSlots) {
|
|
|
6630
6630
|
|
|
6631
6631
|
function renderSlot(slots, name, props = {}, fallback, noSlotted) {
|
|
6632
6632
|
let slot = slots[name];
|
|
6633
|
-
|
|
6633
|
+
const vaporSlot = slot && (slot.__vs || (slot.__vapor ? slot : null));
|
|
6634
|
+
if (vaporSlot) {
|
|
6634
6635
|
const ret = (openBlock(), createBlock(VaporSlot, props));
|
|
6635
|
-
ret.vs = { slot, fallback };
|
|
6636
|
+
ret.vs = { slot: vaporSlot, fallback };
|
|
6636
6637
|
return ret;
|
|
6637
6638
|
}
|
|
6638
6639
|
if (currentRenderingInstance && (currentRenderingInstance.ce || currentRenderingInstance.parent && isAsyncWrapper(currentRenderingInstance.parent) && currentRenderingInstance.parent.ce)) {
|
|
@@ -6695,14 +6696,14 @@ function ensureVaporSlotFallback(vnodes, fallback) {
|
|
|
6695
6696
|
}
|
|
6696
6697
|
}
|
|
6697
6698
|
|
|
6698
|
-
function toHandlers(obj, preserveCaseIfNecessary
|
|
6699
|
+
function toHandlers(obj, preserveCaseIfNecessary) {
|
|
6699
6700
|
const ret = {};
|
|
6700
6701
|
if (!isObject(obj)) {
|
|
6701
6702
|
warn$1(`v-on with no argument expects an object value.`);
|
|
6702
6703
|
return ret;
|
|
6703
6704
|
}
|
|
6704
6705
|
for (const key in obj) {
|
|
6705
|
-
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] =
|
|
6706
|
+
ret[preserveCaseIfNecessary && /[A-Z]/.test(key) ? `on:${key}` : toHandlerKey(key)] = obj[key];
|
|
6706
6707
|
}
|
|
6707
6708
|
return ret;
|
|
6708
6709
|
}
|
|
@@ -7843,7 +7844,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
7843
7844
|
return vm;
|
|
7844
7845
|
}
|
|
7845
7846
|
}
|
|
7846
|
-
Vue.version = `2.6.14-compat:${"3.6.0-beta.
|
|
7847
|
+
Vue.version = `2.6.14-compat:${"3.6.0-beta.3"}`;
|
|
7847
7848
|
Vue.config = singletonApp.config;
|
|
7848
7849
|
Vue.use = (plugin, ...options) => {
|
|
7849
7850
|
if (plugin && isFunction(plugin.install)) {
|
|
@@ -13200,7 +13201,7 @@ function isMemoSame(cached, memo) {
|
|
|
13200
13201
|
return true;
|
|
13201
13202
|
}
|
|
13202
13203
|
|
|
13203
|
-
const version = "3.6.0-beta.
|
|
13204
|
+
const version = "3.6.0-beta.3";
|
|
13204
13205
|
const warn = warn$1 ;
|
|
13205
13206
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
13206
13207
|
const devtools = devtools$1 ;
|
|
@@ -15369,6 +15370,7 @@ var runtimeDom = /*#__PURE__*/Object.freeze({
|
|
|
15369
15370
|
Fragment: Fragment,
|
|
15370
15371
|
KeepAlive: KeepAlive,
|
|
15371
15372
|
MoveType: MoveType,
|
|
15373
|
+
NULL_DYNAMIC_COMPONENT: NULL_DYNAMIC_COMPONENT,
|
|
15372
15374
|
ReactiveEffect: ReactiveEffect,
|
|
15373
15375
|
Static: Static,
|
|
15374
15376
|
Suspense: Suspense,
|
|
@@ -21596,4 +21598,4 @@ Vue.compile = compileToFunction;
|
|
|
21596
21598
|
|
|
21597
21599
|
const configureCompat = Vue.configureCompat;
|
|
21598
21600
|
|
|
21599
|
-
export { BaseTransition, BaseTransitionPropsValidators, Comment, DeprecationTypes, EffectScope, ErrorCodes, ErrorTypeStrings, Fragment, KeepAlive, MoveType, ReactiveEffect, Static, Suspense, Teleport, Text, TrackOpTypes, Transition, TransitionGroup, TriggerOpTypes, VueElement, VueElementBase, assertNumber, callWithAsyncErrorHandling, callWithErrorHandling, camelize, capitalize, cloneVNode, compatUtils, computed, configureCompat, createApp, createBlock, createCommentVNode, createElementBlock, createBaseVNode as createElementVNode, createHydrationRenderer, createPropsRestProxy, createRenderer, createSSRApp, createSlots, createStaticVNode, createTextVNode, createVNode, customRef, Vue as default, defineAsyncComponent, defineComponent, defineCustomElement, defineEmits, defineExpose, defineModel, defineOptions, defineProps, defineSSRCustomElement, defineSlots, devtools, effect, effectScope, getCurrentInstance, getCurrentScope, getCurrentWatcher, getTransitionRawChildren, guardReactiveProps, h, handleError, hasInjectionContext, hydrate, hydrateOnIdle, hydrateOnInteraction, hydrateOnMediaQuery, hydrateOnVisible, initCustomFormatter, initDirectivesForSSR, inject, isMemoSame, isProxy, isReactive, isReadonly, isRef, isRuntimeOnly, isShallow, isVNode, markRaw, mergeDefaults, mergeModels, mergeProps, nextTick, nodeOps, normalizeClass, normalizeProps, normalizeStyle, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onScopeDispose, onServerPrefetch, onUnmounted, onUpdated, onWatcherCleanup, openBlock, patchProp, popScopeId, provide, proxyRefs, pushScopeId, queuePostFlushCb, reactive, readonly, ref, registerRuntimeCompiler, render, renderList, renderSlot, resolveComponent, resolveDirective, resolveDynamicComponent, resolveFilter, resolveTransitionHooks, setBlockTracking, setDevtoolsHook, setTransitionHooks, shallowReactive, shallowReadonly, shallowRef, ssrContextKey, ssrUtils, stop, toDisplayString, toHandlerKey, toHandlers, toRaw, toRef, toRefs, toValue, transformVNodeArgs, triggerRef, unref, useAttrs, useCssModule, useCssVars, useHost, useId, useInstanceOption, useModel, useSSRContext, useShadowRoot, useSlots, useTemplateRef, useTransitionState, vModelCheckbox, vModelDynamic, vModelRadio, vModelSelect, vModelText, vShow, version, warn, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withKeys, withMemo, withModifiers, withScopeId };
|
|
21601
|
+
export { BaseTransition, BaseTransitionPropsValidators, Comment, DeprecationTypes, EffectScope, ErrorCodes, ErrorTypeStrings, Fragment, KeepAlive, MoveType, NULL_DYNAMIC_COMPONENT, ReactiveEffect, Static, Suspense, Teleport, Text, TrackOpTypes, Transition, TransitionGroup, TriggerOpTypes, VueElement, VueElementBase, assertNumber, callWithAsyncErrorHandling, callWithErrorHandling, camelize, capitalize, cloneVNode, compatUtils, computed, configureCompat, createApp, createBlock, createCommentVNode, createElementBlock, createBaseVNode as createElementVNode, createHydrationRenderer, createPropsRestProxy, createRenderer, createSSRApp, createSlots, createStaticVNode, createTextVNode, createVNode, customRef, Vue as default, defineAsyncComponent, defineComponent, defineCustomElement, defineEmits, defineExpose, defineModel, defineOptions, defineProps, defineSSRCustomElement, defineSlots, devtools, effect, effectScope, getCurrentInstance, getCurrentScope, getCurrentWatcher, getTransitionRawChildren, guardReactiveProps, h, handleError, hasInjectionContext, hydrate, hydrateOnIdle, hydrateOnInteraction, hydrateOnMediaQuery, hydrateOnVisible, initCustomFormatter, initDirectivesForSSR, inject, isMemoSame, isProxy, isReactive, isReadonly, isRef, isRuntimeOnly, isShallow, isVNode, markRaw, mergeDefaults, mergeModels, mergeProps, nextTick, nodeOps, normalizeClass, normalizeProps, normalizeStyle, onActivated, onBeforeMount, onBeforeUnmount, onBeforeUpdate, onDeactivated, onErrorCaptured, onMounted, onRenderTracked, onRenderTriggered, onScopeDispose, onServerPrefetch, onUnmounted, onUpdated, onWatcherCleanup, openBlock, patchProp, popScopeId, provide, proxyRefs, pushScopeId, queuePostFlushCb, reactive, readonly, ref, registerRuntimeCompiler, render, renderList, renderSlot, resolveComponent, resolveDirective, resolveDynamicComponent, resolveFilter, resolveTransitionHooks, setBlockTracking, setDevtoolsHook, setTransitionHooks, shallowReactive, shallowReadonly, shallowRef, ssrContextKey, ssrUtils, stop, toDisplayString, toHandlerKey, toHandlers, toRaw, toRef, toRefs, toValue, transformVNodeArgs, triggerRef, unref, useAttrs, useCssModule, useCssVars, useHost, useId, useInstanceOption, useModel, useSSRContext, useShadowRoot, useSlots, useTemplateRef, useTransitionState, vModelCheckbox, vModelDynamic, vModelRadio, vModelSelect, vModelText, vShow, version, warn, watch, watchEffect, watchPostEffect, watchSyncEffect, withAsyncContext, withCtx, withDefaults, withDirectives, withKeys, withMemo, withModifiers, withScopeId };
|