vue 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 +1 -1
- package/dist/vue.cjs.prod.js +1 -1
- package/dist/vue.esm-browser.js +6 -7
- package/dist/vue.esm-browser.prod.js +3 -3
- package/dist/vue.esm-bundler.js +1 -1
- package/dist/vue.global.js +6 -7
- package/dist/vue.global.prod.js +4 -4
- package/dist/vue.runtime.esm-browser.js +6 -7
- package/dist/vue.runtime.esm-browser.prod.js +3 -3
- package/dist/vue.runtime.esm-bundler.js +1 -1
- package/dist/vue.runtime.global.js +6 -7
- package/dist/vue.runtime.global.prod.js +3 -3
- package/package.json +6 -6
package/dist/vue.cjs.js
CHANGED
package/dist/vue.cjs.prod.js
CHANGED
package/dist/vue.esm-browser.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* vue v3.5.
|
|
2
|
+
* vue 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"];
|
|
@@ -10632,7 +10632,7 @@ function isMemoSame(cached, memo) {
|
|
|
10632
10632
|
return true;
|
|
10633
10633
|
}
|
|
10634
10634
|
|
|
10635
|
-
const version = "3.5.
|
|
10635
|
+
const version = "3.5.20";
|
|
10636
10636
|
const warn = warn$1 ;
|
|
10637
10637
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
10638
10638
|
const devtools = devtools$1 ;
|
|
@@ -11032,6 +11032,8 @@ function patchClass(el, value, isSVG) {
|
|
|
11032
11032
|
const vShowOriginalDisplay = Symbol("_vod");
|
|
11033
11033
|
const vShowHidden = Symbol("_vsh");
|
|
11034
11034
|
const vShow = {
|
|
11035
|
+
// used for prop mismatch check during hydration
|
|
11036
|
+
name: "show",
|
|
11035
11037
|
beforeMount(el, { value }, { transition }) {
|
|
11036
11038
|
el[vShowOriginalDisplay] = el.style.display === "none" ? "" : el.style.display;
|
|
11037
11039
|
if (transition && value) {
|
|
@@ -11065,9 +11067,6 @@ const vShow = {
|
|
|
11065
11067
|
setDisplay(el, value);
|
|
11066
11068
|
}
|
|
11067
11069
|
};
|
|
11068
|
-
{
|
|
11069
|
-
vShow.name = "show";
|
|
11070
|
-
}
|
|
11071
11070
|
function setDisplay(el, value) {
|
|
11072
11071
|
el.style.display = value ? el[vShowOriginalDisplay] : "none";
|
|
11073
11072
|
el[vShowHidden] = !value;
|