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