@vtj/materials 0.13.13 → 0.13.15

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.
@@ -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
  **/
@@ -1167,7 +1167,7 @@ var Vue = (function (exports) {
1167
1167
  join(separator) {
1168
1168
  return reactiveReadArray(this).join(separator);
1169
1169
  },
1170
- // keys() iterator only reads `length`, no optimisation required
1170
+ // keys() iterator only reads `length`, no optimization required
1171
1171
  lastIndexOf(...args) {
1172
1172
  return searchProxy(this, "lastIndexOf", args);
1173
1173
  },
@@ -1519,7 +1519,7 @@ var Vue = (function (exports) {
1519
1519
  get size() {
1520
1520
  const target = this["__v_raw"];
1521
1521
  !readonly && track(toRaw(target), "iterate", ITERATE_KEY);
1522
- return Reflect.get(target, "size", target);
1522
+ return target.size;
1523
1523
  },
1524
1524
  has(key) {
1525
1525
  const target = this["__v_raw"];
@@ -10584,7 +10584,7 @@ Component that was made reactive: `,
10584
10584
  return true;
10585
10585
  }
10586
10586
 
10587
- const version = "3.5.19";
10587
+ const version = "3.5.20";
10588
10588
  const warn = warn$1 ;
10589
10589
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
10590
10590
  const devtools = devtools$1 ;
@@ -10972,6 +10972,8 @@ Component that was made reactive: `,
10972
10972
  const vShowOriginalDisplay = Symbol("_vod");
10973
10973
  const vShowHidden = Symbol("_vsh");
10974
10974
  const vShow = {
10975
+ // used for prop mismatch check during hydration
10976
+ name: "show",
10975
10977
  beforeMount(el, { value }, { transition }) {
10976
10978
  el[vShowOriginalDisplay] = el.style.display === "none" ? "" : el.style.display;
10977
10979
  if (transition && value) {
@@ -11005,9 +11007,6 @@ Component that was made reactive: `,
11005
11007
  setDisplay(el, value);
11006
11008
  }
11007
11009
  };
11008
- {
11009
- vShow.name = "show";
11010
- }
11011
11010
  function setDisplay(el, value) {
11012
11011
  el.style.display = value ? el[vShowOriginalDisplay] : "none";
11013
11012
  el[vShowHidden] = !value;