@seniorsistemas/angular-components 17.6.2 → 17.6.4

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.
@@ -15267,7 +15267,10 @@ var SelectButtonComponent = /** @class */ (function () {
15267
15267
  if (a === b) {
15268
15268
  return true;
15269
15269
  }
15270
- if (typeof a !== "object" || a === null || typeof b !== "object" || b === null) {
15270
+ if (a === undefined || b === undefined || typeof a !== "object" || a === null || typeof b !== "object" || b === null) {
15271
+ return false;
15272
+ }
15273
+ if (Array.isArray(a) !== Array.isArray(b)) {
15271
15274
  return false;
15272
15275
  }
15273
15276
  var keysA = Object.keys(a);
@@ -15290,6 +15293,11 @@ var SelectButtonComponent = /** @class */ (function () {
15290
15293
  }
15291
15294
  finally { if (e_1) throw e_1.error; }
15292
15295
  }
15296
+ for (var key in a) {
15297
+ if (a.hasOwnProperty(key) !== b.hasOwnProperty(key)) {
15298
+ return false;
15299
+ }
15300
+ }
15293
15301
  return true;
15294
15302
  };
15295
15303
  return _compare(item1, item2);