@vue/runtime-dom 3.3.0-alpha.3 → 3.3.0-alpha.5

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.
@@ -282,7 +282,7 @@ function createInvoker(initialValue, instance) {
282
282
  runtimeCore.callWithAsyncErrorHandling(
283
283
  patchStopImmediatePropagation(e, invoker.value),
284
284
  instance,
285
- "5",
285
+ 5,
286
286
  [e]
287
287
  );
288
288
  };
@@ -1482,6 +1482,6 @@ exports.vModelText = vModelText;
1482
1482
  exports.vShow = vShow;
1483
1483
  exports.withKeys = withKeys;
1484
1484
  exports.withModifiers = withModifiers;
1485
- Object.keys(runtimeCore).forEach(function(k) {
1486
- if (k !== 'default') exports[k] = runtimeCore[k];
1485
+ Object.keys(runtimeCore).forEach(function (k) {
1486
+ if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = runtimeCore[k];
1487
1487
  });
@@ -268,7 +268,7 @@ function createInvoker(initialValue, instance) {
268
268
  runtimeCore.callWithAsyncErrorHandling(
269
269
  patchStopImmediatePropagation(e, invoker.value),
270
270
  instance,
271
- "5",
271
+ 5,
272
272
  [e]
273
273
  );
274
274
  };
@@ -1385,6 +1385,6 @@ exports.vModelText = vModelText;
1385
1385
  exports.vShow = vShow;
1386
1386
  exports.withKeys = withKeys;
1387
1387
  exports.withModifiers = withModifiers;
1388
- Object.keys(runtimeCore).forEach(function(k) {
1389
- if (k !== 'default') exports[k] = runtimeCore[k];
1388
+ Object.keys(runtimeCore).forEach(function (k) {
1389
+ if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = runtimeCore[k];
1390
1390
  });