@vue/runtime-core 3.4.16 → 3.4.18

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/runtime-core v3.4.16
2
+ * @vue/runtime-core v3.4.18
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -4275,7 +4275,7 @@ function normalizePropsOptions(comp, appContext, asMixin = false) {
4275
4275
  return res;
4276
4276
  }
4277
4277
  function validatePropName(key) {
4278
- if (key[0] !== "$") {
4278
+ if (key[0] !== "$" && !shared.isReservedProp(key)) {
4279
4279
  return true;
4280
4280
  } else {
4281
4281
  warn$1(`Invalid prop name: "${key}" is a reserved property.`);
@@ -8068,7 +8068,7 @@ function isMemoSame(cached, memo) {
8068
8068
  return true;
8069
8069
  }
8070
8070
 
8071
- const version = "3.4.16";
8071
+ const version = "3.4.18";
8072
8072
  const warn = warn$1 ;
8073
8073
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
8074
8074
  const devtools = devtools$1 ;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-core v3.4.16
2
+ * @vue/runtime-core v3.4.18
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -3331,7 +3331,7 @@ function normalizePropsOptions(comp, appContext, asMixin = false) {
3331
3331
  return res;
3332
3332
  }
3333
3333
  function validatePropName(key) {
3334
- if (key[0] !== "$") {
3334
+ if (key[0] !== "$" && !shared.isReservedProp(key)) {
3335
3335
  return true;
3336
3336
  }
3337
3337
  return false;
@@ -6279,7 +6279,7 @@ function isMemoSame(cached, memo) {
6279
6279
  return true;
6280
6280
  }
6281
6281
 
6282
- const version = "3.4.16";
6282
+ const version = "3.4.18";
6283
6283
  const warn$1 = shared.NOOP;
6284
6284
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
6285
6285
  const devtools = void 0;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-core v3.4.16
2
+ * @vue/runtime-core v3.4.18
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -4283,7 +4283,7 @@ function normalizePropsOptions(comp, appContext, asMixin = false) {
4283
4283
  return res;
4284
4284
  }
4285
4285
  function validatePropName(key) {
4286
- if (key[0] !== "$") {
4286
+ if (key[0] !== "$" && !isReservedProp(key)) {
4287
4287
  return true;
4288
4288
  } else if (!!(process.env.NODE_ENV !== "production")) {
4289
4289
  warn$1(`Invalid prop name: "${key}" is a reserved property.`);
@@ -8140,7 +8140,7 @@ function isMemoSame(cached, memo) {
8140
8140
  return true;
8141
8141
  }
8142
8142
 
8143
- const version = "3.4.16";
8143
+ const version = "3.4.18";
8144
8144
  const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
8145
8145
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
8146
8146
  const devtools = !!(process.env.NODE_ENV !== "production") || true ? devtools$1 : void 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/runtime-core",
3
- "version": "3.4.16",
3
+ "version": "3.4.18",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
48
48
  "dependencies": {
49
- "@vue/shared": "3.4.16",
50
- "@vue/reactivity": "3.4.16"
49
+ "@vue/shared": "3.4.18",
50
+ "@vue/reactivity": "3.4.18"
51
51
  }
52
52
  }