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.
@@ -7328,8 +7328,8 @@
7328
7328
  return false;
7329
7329
  }
7330
7330
  var hasCompatibleAttrs = validateAttrs(vnode, elm, renderer, attrsToSkip);
7331
- 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);
7332
- 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);
7331
+ 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);
7332
+ 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);
7333
7333
  return hasCompatibleAttrs && hasCompatibleClass && hasCompatibleStyle;
7334
7334
  }
7335
7335
  function attributeValuesAreEqual(vnodeValue, value) {