@cabloy/vue-runtime-core 3.5.28 → 3.5.30

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.
@@ -5448,6 +5448,9 @@ function baseCreateRenderer(options, createHydrationFns) {
5448
5448
  if (zova && zova.meta.$ssr.isRuntimeSsrPreHydration && !zova.meta.$ssr._hydratingInstanceRecord(instance)) {
5449
5449
  return;
5450
5450
  }
5451
+ if (zova && instance.zovaHostProviders) {
5452
+ zova._zovaHostProviders();
5453
+ }
5451
5454
  effect.run();
5452
5455
  }
5453
5456
  }
@@ -6686,7 +6689,12 @@ const filterZovaAttrs = (attrs, inheritAttrs = true) => {
6686
6689
  for (const key in attrs) {
6687
6690
  if (inheritAttrs) {
6688
6691
  if (inheritAttrs === true) {
6689
- res[key] = attrs[key];
6692
+ if (key.startsWith("nativeOn")) {
6693
+ const key2 = "on" + key.slice("nativeOn".length);
6694
+ res[key2] = attrs[key];
6695
+ } else {
6696
+ res[key] = attrs[key];
6697
+ }
6690
6698
  } else if (inheritAttrs === "auto") {
6691
6699
  if (["class", "style"].includes(key)) {
6692
6700
  res[key] = attrs[key];
@@ -4178,6 +4178,9 @@ function baseCreateRenderer(options, createHydrationFns) {
4178
4178
  if (zova && zova.meta.$ssr.isRuntimeSsrPreHydration && !zova.meta.$ssr._hydratingInstanceRecord(instance)) {
4179
4179
  return;
4180
4180
  }
4181
+ if (zova && instance.zovaHostProviders) {
4182
+ zova._zovaHostProviders();
4183
+ }
4181
4184
  effect.run();
4182
4185
  }
4183
4186
  }
@@ -5238,7 +5241,12 @@ const filterZovaAttrs = (attrs, inheritAttrs = true) => {
5238
5241
  for (const key in attrs) {
5239
5242
  if (inheritAttrs) {
5240
5243
  if (inheritAttrs === true) {
5241
- res[key] = attrs[key];
5244
+ if (key.startsWith("nativeOn")) {
5245
+ const key2 = "on" + key.slice("nativeOn".length);
5246
+ res[key2] = attrs[key];
5247
+ } else {
5248
+ res[key] = attrs[key];
5249
+ }
5242
5250
  } else if (inheritAttrs === "auto") {
5243
5251
  if (["class", "style"].includes(key)) {
5244
5252
  res[key] = attrs[key];
@@ -5505,6 +5505,9 @@ function baseCreateRenderer(options, createHydrationFns) {
5505
5505
  if (zova && zova.meta.$ssr.isRuntimeSsrPreHydration && !zova.meta.$ssr._hydratingInstanceRecord(instance)) {
5506
5506
  return;
5507
5507
  }
5508
+ if (zova && instance.zovaHostProviders) {
5509
+ zova._zovaHostProviders();
5510
+ }
5508
5511
  effect.run();
5509
5512
  }
5510
5513
  }
@@ -6743,7 +6746,12 @@ const filterZovaAttrs = (attrs, inheritAttrs = true) => {
6743
6746
  for (const key in attrs) {
6744
6747
  if (inheritAttrs) {
6745
6748
  if (inheritAttrs === true) {
6746
- res[key] = attrs[key];
6749
+ if (key.startsWith("nativeOn")) {
6750
+ const key2 = "on" + key.slice("nativeOn".length);
6751
+ res[key2] = attrs[key];
6752
+ } else {
6753
+ res[key] = attrs[key];
6754
+ }
6747
6755
  } else if (inheritAttrs === "auto") {
6748
6756
  if (["class", "style"].includes(key)) {
6749
6757
  res[key] = attrs[key];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/vue-runtime-core",
3
- "version": "3.5.28",
3
+ "version": "3.5.30",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",