@cabloy/vue-runtime-core 3.5.48 → 3.5.50

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.
@@ -6715,7 +6715,6 @@ const filterZovaAttrs = (attrs, inheritAttrs = true) => {
6715
6715
  const res = {};
6716
6716
  if (!inheritAttrs) return res;
6717
6717
  for (const key in attrs) {
6718
- if (key.startsWith("v-")) continue;
6719
6718
  if (inheritAttrs) {
6720
6719
  if (inheritAttrs === true) {
6721
6720
  if (key.startsWith("nativeOn")) {
@@ -7505,6 +7504,8 @@ function createBaseVNode(type, props = null, children = null, patchFlag = 0, dyn
7505
7504
  if (typeof children === "object") {
7506
7505
  children = Object.assign({}, props["v-slots"], children);
7507
7506
  }
7507
+ props = Object.assign({}, props);
7508
+ delete props["v-slots"];
7508
7509
  }
7509
7510
  const vnode = {
7510
7511
  __v_isVNode: true,
@@ -5267,7 +5267,6 @@ const filterZovaAttrs = (attrs, inheritAttrs = true) => {
5267
5267
  const res = {};
5268
5268
  if (!inheritAttrs) return res;
5269
5269
  for (const key in attrs) {
5270
- if (key.startsWith("v-")) continue;
5271
5270
  if (inheritAttrs) {
5272
5271
  if (inheritAttrs === true) {
5273
5272
  if (key.startsWith("nativeOn")) {
@@ -6005,6 +6004,8 @@ function createBaseVNode(type, props = null, children = null, patchFlag = 0, dyn
6005
6004
  if (typeof children === "object") {
6006
6005
  children = Object.assign({}, props["v-slots"], children);
6007
6006
  }
6007
+ props = Object.assign({}, props);
6008
+ delete props["v-slots"];
6008
6009
  }
6009
6010
  const vnode = {
6010
6011
  __v_isVNode: true,
@@ -6772,7 +6772,6 @@ const filterZovaAttrs = (attrs, inheritAttrs = true) => {
6772
6772
  const res = {};
6773
6773
  if (!inheritAttrs) return res;
6774
6774
  for (const key in attrs) {
6775
- if (key.startsWith("v-")) continue;
6776
6775
  if (inheritAttrs) {
6777
6776
  if (inheritAttrs === true) {
6778
6777
  if (key.startsWith("nativeOn")) {
@@ -7562,6 +7561,8 @@ function createBaseVNode(type, props = null, children = null, patchFlag = 0, dyn
7562
7561
  if (typeof children === "object") {
7563
7562
  children = Object.assign({}, props["v-slots"], children);
7564
7563
  }
7564
+ props = Object.assign({}, props);
7565
+ delete props["v-slots"];
7565
7566
  }
7566
7567
  const vnode = {
7567
7568
  __v_isVNode: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/vue-runtime-core",
3
- "version": "3.5.48",
3
+ "version": "3.5.50",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",