@cabloy/vue-runtime-core 3.4.37 → 3.4.38

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.
@@ -4940,10 +4940,10 @@ function baseCreateRenderer(options, createHydrationFns) {
4940
4940
  } else {
4941
4941
  const zova = instance.ctx._.zova;
4942
4942
  if (zova) {
4943
- zova.meta.ssr.increase();
4943
+ zova.meta.ssr._hydratingInc();
4944
4944
  zova.meta.state.inited.wait().then(() => {
4945
4945
  !instance.isUnmounted && hydrateSubTree();
4946
- zova.meta.ssr.decrease();
4946
+ zova.meta.ssr._hydratingDec();
4947
4947
  });
4948
4948
  } else {
4949
4949
  hydrateSubTree();
@@ -3732,10 +3732,10 @@ function baseCreateRenderer(options, createHydrationFns) {
3732
3732
  } else {
3733
3733
  const zova = instance.ctx._.zova;
3734
3734
  if (zova) {
3735
- zova.meta.ssr.increase();
3735
+ zova.meta.ssr._hydratingInc();
3736
3736
  zova.meta.state.inited.wait().then(() => {
3737
3737
  !instance.isUnmounted && hydrateSubTree();
3738
- zova.meta.ssr.decrease();
3738
+ zova.meta.ssr._hydratingDec();
3739
3739
  });
3740
3740
  } else {
3741
3741
  hydrateSubTree();
@@ -4995,10 +4995,10 @@ function baseCreateRenderer(options, createHydrationFns) {
4995
4995
  } else {
4996
4996
  const zova = instance.ctx._.zova;
4997
4997
  if (zova) {
4998
- zova.meta.ssr.increase();
4998
+ zova.meta.ssr._hydratingInc();
4999
4999
  zova.meta.state.inited.wait().then(() => {
5000
5000
  !instance.isUnmounted && hydrateSubTree();
5001
- zova.meta.ssr.decrease();
5001
+ zova.meta.ssr._hydratingDec();
5002
5002
  });
5003
5003
  } else {
5004
5004
  hydrateSubTree();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/vue-runtime-core",
3
- "version": "3.4.37",
3
+ "version": "3.4.38",
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.37"
50
+ "@vue/reactivity": "npm:@cabloy/vue-reactivity@3.4.38"
51
51
  }
52
52
  }