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.
@@ -7325,8 +7325,8 @@ var LWC = (function (exports) {
7325
7325
  return false;
7326
7326
  }
7327
7327
  var hasCompatibleAttrs = validateAttrs(vnode, elm, renderer, attrsToSkip);
7328
- var hasCompatibleClass = ((_a = attrsToSkip === null || attrsToSkip === void 0 ? void 0 : attrsToSkip.has) === null || _a === void 0 ? void 0 : _a.call(attrsToSkip, 'class')) ? false : validateClassAttr(vnode, elm, renderer);
7329
- var hasCompatibleStyle = ((_b = attrsToSkip === null || attrsToSkip === void 0 ? void 0 : attrsToSkip.has) === null || _b === void 0 ? void 0 : _b.call(attrsToSkip, 'style')) ? false : validateStyleAttr(vnode, elm, renderer);
7328
+ var hasCompatibleClass = ((_a = attrsToSkip === null || attrsToSkip === void 0 ? void 0 : attrsToSkip.has) === null || _a === void 0 ? void 0 : _a.call(attrsToSkip, 'class')) ? true : validateClassAttr(vnode, elm, renderer);
7329
+ var hasCompatibleStyle = ((_b = attrsToSkip === null || attrsToSkip === void 0 ? void 0 : attrsToSkip.has) === null || _b === void 0 ? void 0 : _b.call(attrsToSkip, 'style')) ? true : validateStyleAttr(vnode, elm, renderer);
7330
7330
  return hasCompatibleAttrs && hasCompatibleClass && hasCompatibleStyle;
7331
7331
  }
7332
7332
  function attributeValuesAreEqual(vnodeValue, value) {