@cabloy/vue-runtime-core 3.5.48 → 3.5.49

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.
@@ -6584,8 +6584,8 @@ function renderComponentRoot(instance) {
6584
6584
  if (result.patchFlag > 0 && result.patchFlag & 2048) {
6585
6585
  [root, setRoot] = getChildRoot(result);
6586
6586
  }
6587
+ fallthroughAttrs = filterZovaAttrs(fallthroughAttrs, inheritAttrs);
6587
6588
  if (fallthroughAttrs && inheritAttrs !== false) {
6588
- fallthroughAttrs = filterZovaAttrs(fallthroughAttrs, inheritAttrs);
6589
6589
  const keys = Object.keys(fallthroughAttrs);
6590
6590
  const { shapeFlag } = root;
6591
6591
  if (keys.length) {
@@ -6712,6 +6712,7 @@ const filterModelListeners = (attrs, props) => {
6712
6712
  return res;
6713
6713
  };
6714
6714
  const filterZovaAttrs = (attrs, inheritAttrs = true) => {
6715
+ if (!attrs) return attrs;
6715
6716
  const res = {};
6716
6717
  if (!inheritAttrs) return res;
6717
6718
  for (const key in attrs) {
@@ -5198,8 +5198,8 @@ function renderComponentRoot(instance) {
5198
5198
  result = createVNode(Comment);
5199
5199
  }
5200
5200
  let root = result;
5201
+ fallthroughAttrs = filterZovaAttrs(fallthroughAttrs, inheritAttrs);
5201
5202
  if (fallthroughAttrs && inheritAttrs !== false) {
5202
- fallthroughAttrs = filterZovaAttrs(fallthroughAttrs, inheritAttrs);
5203
5203
  const keys = Object.keys(fallthroughAttrs);
5204
5204
  const { shapeFlag } = root;
5205
5205
  if (keys.length) {
@@ -5264,6 +5264,7 @@ const filterModelListeners = (attrs, props) => {
5264
5264
  return res;
5265
5265
  };
5266
5266
  const filterZovaAttrs = (attrs, inheritAttrs = true) => {
5267
+ if (!attrs) return attrs;
5267
5268
  const res = {};
5268
5269
  if (!inheritAttrs) return res;
5269
5270
  for (const key in attrs) {
@@ -6641,8 +6641,8 @@ function renderComponentRoot(instance) {
6641
6641
  if (!!(process.env.NODE_ENV !== "production") && result.patchFlag > 0 && result.patchFlag & 2048) {
6642
6642
  [root, setRoot] = getChildRoot(result);
6643
6643
  }
6644
+ fallthroughAttrs = filterZovaAttrs(fallthroughAttrs, inheritAttrs);
6644
6645
  if (fallthroughAttrs && inheritAttrs !== false) {
6645
- fallthroughAttrs = filterZovaAttrs(fallthroughAttrs, inheritAttrs);
6646
6646
  const keys = Object.keys(fallthroughAttrs);
6647
6647
  const { shapeFlag } = root;
6648
6648
  if (keys.length) {
@@ -6769,6 +6769,7 @@ const filterModelListeners = (attrs, props) => {
6769
6769
  return res;
6770
6770
  };
6771
6771
  const filterZovaAttrs = (attrs, inheritAttrs = true) => {
6772
+ if (!attrs) return attrs;
6772
6773
  const res = {};
6773
6774
  if (!inheritAttrs) return res;
6774
6775
  for (const key in attrs) {
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.49",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",