@vue/compat 3.5.19 → 3.5.20
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 -10
- package/dist/vue.cjs.prod.js +9 -7
- package/dist/vue.esm-browser.js +9 -10
- package/dist/vue.esm-browser.prod.js +3 -3
- package/dist/vue.esm-bundler.js +9 -10
- package/dist/vue.global.js +9 -10
- package/dist/vue.global.prod.js +3 -3
- package/dist/vue.runtime.esm-browser.js +9 -10
- package/dist/vue.runtime.esm-browser.prod.js +3 -3
- package/dist/vue.runtime.esm-bundler.js +9 -10
- package/dist/vue.runtime.global.js +9 -10
- package/dist/vue.runtime.global.prod.js +3 -3
- package/package.json +2 -2
package/dist/vue.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.5.
|
|
2
|
+
* @vue/compat v3.5.20
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -1217,7 +1217,7 @@ const arrayInstrumentations = {
|
|
|
1217
1217
|
join(separator) {
|
|
1218
1218
|
return reactiveReadArray(this).join(separator);
|
|
1219
1219
|
},
|
|
1220
|
-
// keys() iterator only reads `length`, no
|
|
1220
|
+
// keys() iterator only reads `length`, no optimization required
|
|
1221
1221
|
lastIndexOf(...args) {
|
|
1222
1222
|
return searchProxy(this, "lastIndexOf", args);
|
|
1223
1223
|
},
|
|
@@ -1569,7 +1569,7 @@ function createInstrumentations(readonly, shallow) {
|
|
|
1569
1569
|
get size() {
|
|
1570
1570
|
const target = this["__v_raw"];
|
|
1571
1571
|
!readonly && track(toRaw(target), "iterate", ITERATE_KEY);
|
|
1572
|
-
return
|
|
1572
|
+
return target.size;
|
|
1573
1573
|
},
|
|
1574
1574
|
has(key) {
|
|
1575
1575
|
const target = this["__v_raw"];
|
|
@@ -6209,7 +6209,7 @@ function legacyRenderSlot(instance, name, fallback, props, bindObject) {
|
|
|
6209
6209
|
}
|
|
6210
6210
|
return renderSlot(instance.slots, name, props, fallback && (() => fallback));
|
|
6211
6211
|
}
|
|
6212
|
-
function
|
|
6212
|
+
function legacyResolveScopedSlots(fns, raw, hasDynamicKeys) {
|
|
6213
6213
|
return createSlots(
|
|
6214
6214
|
raw || { $stable: !hasDynamicKeys },
|
|
6215
6215
|
mapKeyToName(fns)
|
|
@@ -6376,7 +6376,7 @@ function installCompatInstanceProperties(map) {
|
|
|
6376
6376
|
_b: () => legacyBindObjectProps,
|
|
6377
6377
|
_v: () => createTextVNode,
|
|
6378
6378
|
_e: () => createCommentVNode,
|
|
6379
|
-
_u: () =>
|
|
6379
|
+
_u: () => legacyResolveScopedSlots,
|
|
6380
6380
|
_g: () => legacyBindObjectListeners,
|
|
6381
6381
|
_d: () => legacyBindDynamicKeys,
|
|
6382
6382
|
_p: () => legacyPrependModifier
|
|
@@ -7295,7 +7295,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
7295
7295
|
return vm;
|
|
7296
7296
|
}
|
|
7297
7297
|
}
|
|
7298
|
-
Vue.version = `2.6.14-compat:${"3.5.
|
|
7298
|
+
Vue.version = `2.6.14-compat:${"3.5.20"}`;
|
|
7299
7299
|
Vue.config = singletonApp.config;
|
|
7300
7300
|
Vue.use = (plugin, ...options) => {
|
|
7301
7301
|
if (plugin && isFunction(plugin.install)) {
|
|
@@ -12445,7 +12445,7 @@ function isMemoSame(cached, memo) {
|
|
|
12445
12445
|
return true;
|
|
12446
12446
|
}
|
|
12447
12447
|
|
|
12448
|
-
const version = "3.5.
|
|
12448
|
+
const version = "3.5.20";
|
|
12449
12449
|
const warn = warn$1 ;
|
|
12450
12450
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
12451
12451
|
const devtools = devtools$1 ;
|
|
@@ -12889,6 +12889,8 @@ function patchClass(el, value, isSVG) {
|
|
|
12889
12889
|
const vShowOriginalDisplay = Symbol("_vod");
|
|
12890
12890
|
const vShowHidden = Symbol("_vsh");
|
|
12891
12891
|
const vShow = {
|
|
12892
|
+
// used for prop mismatch check during hydration
|
|
12893
|
+
name: "show",
|
|
12892
12894
|
beforeMount(el, { value }, { transition }) {
|
|
12893
12895
|
el[vShowOriginalDisplay] = el.style.display === "none" ? "" : el.style.display;
|
|
12894
12896
|
if (transition && value) {
|
|
@@ -12922,9 +12924,6 @@ const vShow = {
|
|
|
12922
12924
|
setDisplay(el, value);
|
|
12923
12925
|
}
|
|
12924
12926
|
};
|
|
12925
|
-
{
|
|
12926
|
-
vShow.name = "show";
|
|
12927
|
-
}
|
|
12928
12927
|
function setDisplay(el, value) {
|
|
12929
12928
|
el.style.display = value ? el[vShowOriginalDisplay] : "none";
|
|
12930
12929
|
el[vShowHidden] = !value;
|
package/dist/vue.cjs.prod.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.5.
|
|
2
|
+
* @vue/compat v3.5.20
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -1062,7 +1062,7 @@ const arrayInstrumentations = {
|
|
|
1062
1062
|
join(separator) {
|
|
1063
1063
|
return reactiveReadArray(this).join(separator);
|
|
1064
1064
|
},
|
|
1065
|
-
// keys() iterator only reads `length`, no
|
|
1065
|
+
// keys() iterator only reads `length`, no optimization required
|
|
1066
1066
|
lastIndexOf(...args) {
|
|
1067
1067
|
return searchProxy(this, "lastIndexOf", args);
|
|
1068
1068
|
},
|
|
@@ -1389,7 +1389,7 @@ function createInstrumentations(readonly, shallow) {
|
|
|
1389
1389
|
get size() {
|
|
1390
1390
|
const target = this["__v_raw"];
|
|
1391
1391
|
!readonly && track(toRaw(target), "iterate", ITERATE_KEY);
|
|
1392
|
-
return
|
|
1392
|
+
return target.size;
|
|
1393
1393
|
},
|
|
1394
1394
|
has(key) {
|
|
1395
1395
|
const target = this["__v_raw"];
|
|
@@ -5004,7 +5004,7 @@ function legacyRenderSlot(instance, name, fallback, props, bindObject) {
|
|
|
5004
5004
|
}
|
|
5005
5005
|
return renderSlot(instance.slots, name, props, fallback && (() => fallback));
|
|
5006
5006
|
}
|
|
5007
|
-
function
|
|
5007
|
+
function legacyResolveScopedSlots(fns, raw, hasDynamicKeys) {
|
|
5008
5008
|
return createSlots(
|
|
5009
5009
|
raw || { $stable: !hasDynamicKeys },
|
|
5010
5010
|
mapKeyToName(fns)
|
|
@@ -5165,7 +5165,7 @@ function installCompatInstanceProperties(map) {
|
|
|
5165
5165
|
_b: () => legacyBindObjectProps,
|
|
5166
5166
|
_v: () => createTextVNode,
|
|
5167
5167
|
_e: () => createCommentVNode,
|
|
5168
|
-
_u: () =>
|
|
5168
|
+
_u: () => legacyResolveScopedSlots,
|
|
5169
5169
|
_g: () => legacyBindObjectListeners,
|
|
5170
5170
|
_d: () => legacyBindDynamicKeys,
|
|
5171
5171
|
_p: () => legacyPrependModifier
|
|
@@ -5841,7 +5841,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
5841
5841
|
return vm;
|
|
5842
5842
|
}
|
|
5843
5843
|
}
|
|
5844
|
-
Vue.version = `2.6.14-compat:${"3.5.
|
|
5844
|
+
Vue.version = `2.6.14-compat:${"3.5.20"}`;
|
|
5845
5845
|
Vue.config = singletonApp.config;
|
|
5846
5846
|
Vue.use = (plugin, ...options) => {
|
|
5847
5847
|
if (plugin && isFunction(plugin.install)) {
|
|
@@ -9992,7 +9992,7 @@ function isMemoSame(cached, memo) {
|
|
|
9992
9992
|
return true;
|
|
9993
9993
|
}
|
|
9994
9994
|
|
|
9995
|
-
const version = "3.5.
|
|
9995
|
+
const version = "3.5.20";
|
|
9996
9996
|
const warn$1 = NOOP;
|
|
9997
9997
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
9998
9998
|
const devtools = void 0;
|
|
@@ -10432,6 +10432,8 @@ function patchClass(el, value, isSVG) {
|
|
|
10432
10432
|
const vShowOriginalDisplay = Symbol("_vod");
|
|
10433
10433
|
const vShowHidden = Symbol("_vsh");
|
|
10434
10434
|
const vShow = {
|
|
10435
|
+
// used for prop mismatch check during hydration
|
|
10436
|
+
name: "show",
|
|
10435
10437
|
beforeMount(el, { value }, { transition }) {
|
|
10436
10438
|
el[vShowOriginalDisplay] = el.style.display === "none" ? "" : el.style.display;
|
|
10437
10439
|
if (transition && value) {
|
package/dist/vue.esm-browser.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/compat v3.5.
|
|
2
|
+
* @vue/compat v3.5.20
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -1164,7 +1164,7 @@ const arrayInstrumentations = {
|
|
|
1164
1164
|
join(separator) {
|
|
1165
1165
|
return reactiveReadArray(this).join(separator);
|
|
1166
1166
|
},
|
|
1167
|
-
// keys() iterator only reads `length`, no
|
|
1167
|
+
// keys() iterator only reads `length`, no optimization required
|
|
1168
1168
|
lastIndexOf(...args) {
|
|
1169
1169
|
return searchProxy(this, "lastIndexOf", args);
|
|
1170
1170
|
},
|
|
@@ -1516,7 +1516,7 @@ function createInstrumentations(readonly, shallow) {
|
|
|
1516
1516
|
get size() {
|
|
1517
1517
|
const target = this["__v_raw"];
|
|
1518
1518
|
!readonly && track(toRaw(target), "iterate", ITERATE_KEY);
|
|
1519
|
-
return
|
|
1519
|
+
return target.size;
|
|
1520
1520
|
},
|
|
1521
1521
|
has(key) {
|
|
1522
1522
|
const target = this["__v_raw"];
|
|
@@ -6159,7 +6159,7 @@ function legacyRenderSlot(instance, name, fallback, props, bindObject) {
|
|
|
6159
6159
|
}
|
|
6160
6160
|
return renderSlot(instance.slots, name, props, fallback && (() => fallback));
|
|
6161
6161
|
}
|
|
6162
|
-
function
|
|
6162
|
+
function legacyResolveScopedSlots(fns, raw, hasDynamicKeys) {
|
|
6163
6163
|
return createSlots(
|
|
6164
6164
|
raw || { $stable: !hasDynamicKeys },
|
|
6165
6165
|
mapKeyToName(fns)
|
|
@@ -6326,7 +6326,7 @@ function installCompatInstanceProperties(map) {
|
|
|
6326
6326
|
_b: () => legacyBindObjectProps,
|
|
6327
6327
|
_v: () => createTextVNode,
|
|
6328
6328
|
_e: () => createCommentVNode,
|
|
6329
|
-
_u: () =>
|
|
6329
|
+
_u: () => legacyResolveScopedSlots,
|
|
6330
6330
|
_g: () => legacyBindObjectListeners,
|
|
6331
6331
|
_d: () => legacyBindDynamicKeys,
|
|
6332
6332
|
_p: () => legacyPrependModifier
|
|
@@ -7245,7 +7245,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
|
|
|
7245
7245
|
return vm;
|
|
7246
7246
|
}
|
|
7247
7247
|
}
|
|
7248
|
-
Vue.version = `2.6.14-compat:${"3.5.
|
|
7248
|
+
Vue.version = `2.6.14-compat:${"3.5.20"}`;
|
|
7249
7249
|
Vue.config = singletonApp.config;
|
|
7250
7250
|
Vue.use = (plugin, ...options) => {
|
|
7251
7251
|
if (plugin && isFunction(plugin.install)) {
|
|
@@ -12395,7 +12395,7 @@ function isMemoSame(cached, memo) {
|
|
|
12395
12395
|
return true;
|
|
12396
12396
|
}
|
|
12397
12397
|
|
|
12398
|
-
const version = "3.5.
|
|
12398
|
+
const version = "3.5.20";
|
|
12399
12399
|
const warn = warn$1 ;
|
|
12400
12400
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
12401
12401
|
const devtools = devtools$1 ;
|
|
@@ -12839,6 +12839,8 @@ function patchClass(el, value, isSVG) {
|
|
|
12839
12839
|
const vShowOriginalDisplay = Symbol("_vod");
|
|
12840
12840
|
const vShowHidden = Symbol("_vsh");
|
|
12841
12841
|
const vShow = {
|
|
12842
|
+
// used for prop mismatch check during hydration
|
|
12843
|
+
name: "show",
|
|
12842
12844
|
beforeMount(el, { value }, { transition }) {
|
|
12843
12845
|
el[vShowOriginalDisplay] = el.style.display === "none" ? "" : el.style.display;
|
|
12844
12846
|
if (transition && value) {
|
|
@@ -12872,9 +12874,6 @@ const vShow = {
|
|
|
12872
12874
|
setDisplay(el, value);
|
|
12873
12875
|
}
|
|
12874
12876
|
};
|
|
12875
|
-
{
|
|
12876
|
-
vShow.name = "show";
|
|
12877
|
-
}
|
|
12878
12877
|
function setDisplay(el, value) {
|
|
12879
12878
|
el.style.display = value ? el[vShowOriginalDisplay] : "none";
|
|
12880
12879
|
el[vShowHidden] = !value;
|