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 CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vue v3.5.19
2
+ * vue v3.5.20
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vue v3.5.19
2
+ * vue v3.5.20
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vue v3.5.19
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 optimisation required
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 Reflect.get(target, "size", target);
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.19";
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;