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