@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.
@@ -6518,10 +6518,10 @@ function isMatchingElement(vnode, elm, renderer, attrsToSkip) {
6518
6518
  }
6519
6519
  const hasCompatibleAttrs = validateAttrs(vnode, elm, renderer, attrsToSkip);
6520
6520
  const hasCompatibleClass = ((_a = attrsToSkip === null || attrsToSkip === void 0 ? void 0 : attrsToSkip.has) === null || _a === void 0 ? void 0 : _a.call(attrsToSkip, 'class'))
6521
- ? false
6521
+ ? true
6522
6522
  : validateClassAttr(vnode, elm, renderer);
6523
6523
  const hasCompatibleStyle = ((_b = attrsToSkip === null || attrsToSkip === void 0 ? void 0 : attrsToSkip.has) === null || _b === void 0 ? void 0 : _b.call(attrsToSkip, 'style'))
6524
- ? false
6524
+ ? true
6525
6525
  : validateStyleAttr(vnode, elm, renderer);
6526
6526
  return hasCompatibleAttrs && hasCompatibleClass && hasCompatibleStyle;
6527
6527
  }