Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@vue/runtime-dom

Package Overview
Dependencies
Maintainers
1
Versions
281
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vue/runtime-dom - npm Package Compare versions

Comparing version
3.5.34
to
3.5.35
+32
-21
dist/runtime-dom.cjs.js
/**
* @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

{
"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