@vue/runtime-dom
Advanced tools
+32
-21
| /** | ||
| * @vue/runtime-dom v3.5.34 | ||
| * @vue/runtime-dom v3.5.35 | ||
| * (c) 2018-present Yuxi (Evan) You and Vue contributors | ||
@@ -680,8 +680,33 @@ * @license MIT | ||
| } | ||
| runtimeCore.callWithAsyncErrorHandling( | ||
| patchStopImmediatePropagation(e, invoker.value), | ||
| instance, | ||
| 5, | ||
| [e] | ||
| ); | ||
| const value = invoker.value; | ||
| if (shared.isArray(value)) { | ||
| const originalStop = e.stopImmediatePropagation; | ||
| e.stopImmediatePropagation = () => { | ||
| originalStop.call(e); | ||
| e._stopped = true; | ||
| }; | ||
| const handlers = value.slice(); | ||
| const args = [e]; | ||
| for (let i = 0; i < handlers.length; i++) { | ||
| if (e._stopped) { | ||
| break; | ||
| } | ||
| const handler = handlers[i]; | ||
| if (handler) { | ||
| runtimeCore.callWithAsyncErrorHandling( | ||
| handler, | ||
| instance, | ||
| 5, | ||
| args | ||
| ); | ||
| } | ||
| } | ||
| } else { | ||
| runtimeCore.callWithAsyncErrorHandling( | ||
| value, | ||
| instance, | ||
| 5, | ||
| [e] | ||
| ); | ||
| } | ||
| }; | ||
@@ -702,16 +727,2 @@ invoker.value = initialValue; | ||
| } | ||
| function patchStopImmediatePropagation(e, value) { | ||
| if (shared.isArray(value)) { | ||
| const originalStop = e.stopImmediatePropagation; | ||
| e.stopImmediatePropagation = () => { | ||
| originalStop.call(e); | ||
| e._stopped = true; | ||
| }; | ||
| return value.map( | ||
| (fn) => (e2) => !e2._stopped && fn && fn(e2) | ||
| ); | ||
| } else { | ||
| return value; | ||
| } | ||
| } | ||
@@ -718,0 +729,0 @@ const isNativeOn = (key) => key.charCodeAt(0) === 111 && key.charCodeAt(1) === 110 && // lowercase letter |
| /** | ||
| * @vue/runtime-dom v3.5.34 | ||
| * @vue/runtime-dom v3.5.35 | ||
| * (c) 2018-present Yuxi (Evan) You and Vue contributors | ||
@@ -662,8 +662,33 @@ * @license MIT | ||
| } | ||
| runtimeCore.callWithAsyncErrorHandling( | ||
| patchStopImmediatePropagation(e, invoker.value), | ||
| instance, | ||
| 5, | ||
| [e] | ||
| ); | ||
| const value = invoker.value; | ||
| if (shared.isArray(value)) { | ||
| const originalStop = e.stopImmediatePropagation; | ||
| e.stopImmediatePropagation = () => { | ||
| originalStop.call(e); | ||
| e._stopped = true; | ||
| }; | ||
| const handlers = value.slice(); | ||
| const args = [e]; | ||
| for (let i = 0; i < handlers.length; i++) { | ||
| if (e._stopped) { | ||
| break; | ||
| } | ||
| const handler = handlers[i]; | ||
| if (handler) { | ||
| runtimeCore.callWithAsyncErrorHandling( | ||
| handler, | ||
| instance, | ||
| 5, | ||
| args | ||
| ); | ||
| } | ||
| } | ||
| } else { | ||
| runtimeCore.callWithAsyncErrorHandling( | ||
| value, | ||
| instance, | ||
| 5, | ||
| [e] | ||
| ); | ||
| } | ||
| }; | ||
@@ -674,16 +699,2 @@ invoker.value = initialValue; | ||
| } | ||
| function patchStopImmediatePropagation(e, value) { | ||
| if (shared.isArray(value)) { | ||
| const originalStop = e.stopImmediatePropagation; | ||
| e.stopImmediatePropagation = () => { | ||
| originalStop.call(e); | ||
| e._stopped = true; | ||
| }; | ||
| return value.map( | ||
| (fn) => (e2) => !e2._stopped && fn && fn(e2) | ||
| ); | ||
| } else { | ||
| return value; | ||
| } | ||
| } | ||
@@ -690,0 +701,0 @@ const isNativeOn = (key) => key.charCodeAt(0) === 111 && key.charCodeAt(1) === 110 && // lowercase letter |
| /** | ||
| * @vue/runtime-dom v3.5.34 | ||
| * @vue/runtime-dom v3.5.35 | ||
| * (c) 2018-present Yuxi (Evan) You and Vue contributors | ||
@@ -745,8 +745,33 @@ * @license MIT | ||
| } | ||
| callWithAsyncErrorHandling( | ||
| patchStopImmediatePropagation(e, invoker.value), | ||
| instance, | ||
| 5, | ||
| [e] | ||
| ); | ||
| const value = invoker.value; | ||
| if (isArray(value)) { | ||
| const originalStop = e.stopImmediatePropagation; | ||
| e.stopImmediatePropagation = () => { | ||
| originalStop.call(e); | ||
| e._stopped = true; | ||
| }; | ||
| const handlers = value.slice(); | ||
| const args = [e]; | ||
| for (let i = 0; i < handlers.length; i++) { | ||
| if (e._stopped) { | ||
| break; | ||
| } | ||
| const handler = handlers[i]; | ||
| if (handler) { | ||
| callWithAsyncErrorHandling( | ||
| handler, | ||
| instance, | ||
| 5, | ||
| args | ||
| ); | ||
| } | ||
| } | ||
| } else { | ||
| callWithAsyncErrorHandling( | ||
| value, | ||
| instance, | ||
| 5, | ||
| [e] | ||
| ); | ||
| } | ||
| }; | ||
@@ -767,16 +792,2 @@ invoker.value = initialValue; | ||
| } | ||
| function patchStopImmediatePropagation(e, value) { | ||
| if (isArray(value)) { | ||
| const originalStop = e.stopImmediatePropagation; | ||
| e.stopImmediatePropagation = () => { | ||
| originalStop.call(e); | ||
| e._stopped = true; | ||
| }; | ||
| return value.map( | ||
| (fn) => (e2) => !e2._stopped && fn && fn(e2) | ||
| ); | ||
| } else { | ||
| return value; | ||
| } | ||
| } | ||
@@ -783,0 +794,0 @@ const isNativeOn = (key) => key.charCodeAt(0) === 111 && key.charCodeAt(1) === 110 && // lowercase letter |
+4
-4
| { | ||
| "name": "@vue/runtime-dom", | ||
| "version": "3.5.34", | ||
| "version": "3.5.35", | ||
| "description": "@vue/runtime-dom", | ||
@@ -53,5 +53,5 @@ "main": "index.js", | ||
| "csstype": "^3.2.3", | ||
| "@vue/shared": "3.5.34", | ||
| "@vue/runtime-core": "3.5.34", | ||
| "@vue/reactivity": "3.5.34" | ||
| "@vue/shared": "3.5.35", | ||
| "@vue/reactivity": "3.5.35", | ||
| "@vue/runtime-core": "3.5.35" | ||
| }, | ||
@@ -58,0 +58,0 @@ "devDependencies": { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
1241849
0.14%33676
0.19%+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
Updated
Updated
Updated