Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@vue/runtime-dom

Package Overview
Dependencies
Maintainers
2
Versions
238
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.9 to 3.5.10

15

dist/runtime-dom.cjs.js
/**
* @vue/runtime-dom v3.5.9
* @vue/runtime-dom v3.5.10
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -712,2 +712,7 @@ * @license MIT

}
} else if (
// #11081 force set props for possible async custom element
el._isVueCE && (/[A-Z]/.test(key) || !shared.isString(nextValue))
) {
patchDOMProp(el, shared.camelize(key), nextValue);
} else {

@@ -753,9 +758,3 @@ if (key === "true-value") {

}
if (key in el) {
return true;
}
if (el._isVueCE && (/[A-Z]/.test(key) || !shared.isString(value))) {
return true;
}
return false;
return key in el;
}

@@ -762,0 +761,0 @@

/**
* @vue/runtime-dom v3.5.9
* @vue/runtime-dom v3.5.10
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -681,2 +681,7 @@ * @license MIT

}
} else if (
// #11081 force set props for possible async custom element
el._isVueCE && (/[A-Z]/.test(key) || !shared.isString(nextValue))
) {
patchDOMProp(el, shared.camelize(key), nextValue);
} else {

@@ -722,9 +727,3 @@ if (key === "true-value") {

}
if (key in el) {
return true;
}
if (el._isVueCE && (/[A-Z]/.test(key) || !shared.isString(value))) {
return true;
}
return false;
return key in el;
}

@@ -731,0 +730,0 @@

/**
* @vue/runtime-dom v3.5.9
* @vue/runtime-dom v3.5.10
* (c) 2018-present Yuxi (Evan) You and Vue contributors

@@ -8,3 +8,3 @@ * @license MIT

export * from '@vue/runtime-core';
import { extend, isObject, toNumber, isArray, isString, hyphenate, capitalize, includeBooleanAttr, isSymbol, isSpecialBooleanAttr, isFunction, NOOP, isOn, isModelListener, isPlainObject, hasOwn, camelize as camelize$1, EMPTY_OBJ, looseToNumber, looseIndexOf, isSet, looseEqual, invokeArrayFns, isHTMLTag, isSVGTag, isMathMLTag } from '@vue/shared';
import { extend, isObject, toNumber, isArray, isString, hyphenate, capitalize, includeBooleanAttr, isSymbol, isSpecialBooleanAttr, isFunction, NOOP, isOn, isModelListener, camelize as camelize$1, isPlainObject, hasOwn, EMPTY_OBJ, looseToNumber, looseIndexOf, isSet, looseEqual, invokeArrayFns, isHTMLTag, isSVGTag, isMathMLTag } from '@vue/shared';

@@ -776,2 +776,7 @@ let policy = void 0;

}
} else if (
// #11081 force set props for possible async custom element
el._isVueCE && (/[A-Z]/.test(key) || !isString(nextValue))
) {
patchDOMProp(el, camelize$1(key), nextValue);
} else {

@@ -817,9 +822,3 @@ if (key === "true-value") {

}
if (key in el) {
return true;
}
if (el._isVueCE && (/[A-Z]/.test(key) || !isString(value))) {
return true;
}
return false;
return key in el;
}

@@ -826,0 +825,0 @@

{
"name": "@vue/runtime-dom",
"version": "3.5.9",
"version": "3.5.10",
"description": "@vue/runtime-dom",

@@ -53,5 +53,5 @@ "main": "index.js",

"csstype": "^3.1.3",
"@vue/shared": "3.5.9",
"@vue/reactivity": "3.5.9",
"@vue/runtime-core": "3.5.9"
"@vue/shared": "3.5.10",
"@vue/runtime-core": "3.5.10",
"@vue/reactivity": "3.5.10"
},

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc