@lwc/engine-core 2.40.1-lbc → 2.40.2-lbc
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/engine-core.js
CHANGED
|
@@ -6516,10 +6516,10 @@ function isMatchingElement(vnode, elm, renderer, attrsToSkip) {
|
|
|
6516
6516
|
}
|
|
6517
6517
|
const hasCompatibleAttrs = validateAttrs(vnode, elm, renderer, attrsToSkip);
|
|
6518
6518
|
const hasCompatibleClass = ((_a = attrsToSkip === null || attrsToSkip === void 0 ? void 0 : attrsToSkip.has) === null || _a === void 0 ? void 0 : _a.call(attrsToSkip, 'class'))
|
|
6519
|
-
?
|
|
6519
|
+
? true
|
|
6520
6520
|
: validateClassAttr(vnode, elm, renderer);
|
|
6521
6521
|
const hasCompatibleStyle = ((_b = attrsToSkip === null || attrsToSkip === void 0 ? void 0 : attrsToSkip.has) === null || _b === void 0 ? void 0 : _b.call(attrsToSkip, 'style'))
|
|
6522
|
-
?
|
|
6522
|
+
? true
|
|
6523
6523
|
: validateStyleAttr(vnode, elm, renderer);
|
|
6524
6524
|
return hasCompatibleAttrs && hasCompatibleClass && hasCompatibleStyle;
|
|
6525
6525
|
}
|