@vue/runtime-dom
Advanced tools
Comparing version 3.5.9 to 3.5.10
/** | ||
* @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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1166647
32014
+ Added@vue/reactivity@3.5.10(transitive)
+ Added@vue/runtime-core@3.5.10(transitive)
+ Added@vue/shared@3.5.10(transitive)
- Removed@vue/reactivity@3.5.9(transitive)
- Removed@vue/runtime-core@3.5.9(transitive)
- Removed@vue/shared@3.5.9(transitive)
Updated@vue/reactivity@3.5.10
Updated@vue/runtime-core@3.5.10
Updated@vue/shared@3.5.10