@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.
- package/bundles/seniorsistemas-angular-components.umd.js +9 -1
- package/bundles/seniorsistemas-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/select-button/select-button.component.js +10 -2
- package/esm5/components/select-button/select-button.component.js +10 -2
- package/fesm2015/seniorsistemas-angular-components.js +9 -1
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +9 -1
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +2 -2
|
@@ -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);
|