lwc 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.
@@ -6999,10 +6999,10 @@ function isMatchingElement(vnode, elm, renderer, attrsToSkip) {
6999
6999
  }
7000
7000
  const hasCompatibleAttrs = validateAttrs(vnode, elm, renderer, attrsToSkip);
7001
7001
  const hasCompatibleClass = ((_a = attrsToSkip === null || attrsToSkip === void 0 ? void 0 : attrsToSkip.has) === null || _a === void 0 ? void 0 : _a.call(attrsToSkip, 'class'))
7002
- ? false
7002
+ ? true
7003
7003
  : validateClassAttr(vnode, elm, renderer);
7004
7004
  const hasCompatibleStyle = ((_b = attrsToSkip === null || attrsToSkip === void 0 ? void 0 : attrsToSkip.has) === null || _b === void 0 ? void 0 : _b.call(attrsToSkip, 'style'))
7005
- ? false
7005
+ ? true
7006
7006
  : validateStyleAttr(vnode, elm, renderer);
7007
7007
  return hasCompatibleAttrs && hasCompatibleClass && hasCompatibleStyle;
7008
7008
  }