@cabloy/vue-runtime-core 3.4.46 → 3.4.48

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.
@@ -3712,16 +3712,6 @@ function createHydrationFunctions(rendererInternals) {
3712
3712
  }
3713
3713
  } else {
3714
3714
  if (node.data !== vnode.children) {
3715
- warn$1(
3716
- `Hydration text mismatch in`,
3717
- node.parentNode,
3718
- `
3719
- - rendered on server: ${JSON.stringify(
3720
- node.data
3721
- )}
3722
- - expected on client: ${JSON.stringify(vnode.children)}`
3723
- );
3724
- logMismatchError();
3725
3715
  node.data = vnode.children;
3726
3716
  }
3727
3717
  nextNode = nextSibling(node);
@@ -2770,7 +2770,6 @@ function createHydrationFunctions(rendererInternals) {
2770
2770
  }
2771
2771
  } else {
2772
2772
  if (node.data !== vnode.children) {
2773
- logMismatchError();
2774
2773
  node.data = vnode.children;
2775
2774
  }
2776
2775
  nextNode = nextSibling(node);
@@ -3718,16 +3718,6 @@ function createHydrationFunctions(rendererInternals) {
3718
3718
  }
3719
3719
  } else {
3720
3720
  if (node.data !== vnode.children) {
3721
- (!!(process.env.NODE_ENV !== "production") || __VUE_PROD_HYDRATION_MISMATCH_DETAILS__) && warn$1(
3722
- `Hydration text mismatch in`,
3723
- node.parentNode,
3724
- `
3725
- - rendered on server: ${JSON.stringify(
3726
- node.data
3727
- )}
3728
- - expected on client: ${JSON.stringify(vnode.children)}`
3729
- );
3730
- logMismatchError();
3731
3721
  node.data = vnode.children;
3732
3722
  }
3733
3723
  nextNode = nextSibling(node);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/vue-runtime-core",
3
- "version": "3.4.46",
3
+ "version": "3.4.48",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",
@@ -47,6 +47,6 @@
47
47
  "homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
48
48
  "dependencies": {
49
49
  "@vue/shared": "3.4.37",
50
- "@vue/reactivity": "npm:@cabloy/vue-reactivity@3.4.46"
50
+ "@vue/reactivity": "npm:@cabloy/vue-reactivity@3.4.48"
51
51
  }
52
52
  }