@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.
- package/dist/runtime-dom.cjs.js +3 -3
- package/dist/runtime-dom.cjs.prod.js +3 -3
- package/dist/runtime-dom.d.ts +0 -1362
- package/dist/runtime-dom.esm-browser.js +154 -148
- package/dist/runtime-dom.esm-browser.prod.js +1 -1
- package/dist/runtime-dom.esm-bundler.js +1 -1
- package/dist/runtime-dom.global.js +154 -148
- package/dist/runtime-dom.global.prod.js +1 -1
- package/package.json +3 -3
package/dist/runtime-dom.cjs.js
CHANGED
|
@@ -282,7 +282,7 @@ function createInvoker(initialValue, instance) {
|
|
|
282
282
|
runtimeCore.callWithAsyncErrorHandling(
|
|
283
283
|
patchStopImmediatePropagation(e, invoker.value),
|
|
284
284
|
instance,
|
|
285
|
-
|
|
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
|
-
|
|
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
|
});
|