@seniorsistemas/angular-components 16.11.0 → 16.11.2

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.
@@ -3380,7 +3380,7 @@ var LookupComponent = /** @class */ (function () {
3380
3380
  var label = this.searchTotalRecords === 1
3381
3381
  ? this.recordsLabel.trim()
3382
3382
  : this.recordsLabel.trim();
3383
- return (this.searchTotalRecordsLabel || this.searchTotalRecords) + " " + label;
3383
+ return this.searchTotalRecordsLabel ? this.searchTotalRecordsLabel : this.searchTotalRecords + " " + label;
3384
3384
  };
3385
3385
  LookupComponent.prototype._convertToMomentHourFormat = function (hourFormat, format) {
3386
3386
  if (format === "dd/mm/yy") { // valor padrão para o format.
@@ -5862,6 +5862,7 @@ var EnumBadgeColors;
5862
5862
  EnumBadgeColors["YELLOW"] = "sds-semantic-yellow";
5863
5863
  EnumBadgeColors["GREEN"] = "sds-semantic-green";
5864
5864
  EnumBadgeColors["BLUE"] = "sds-semantic-blue";
5865
+ EnumBadgeColors["GRAY"] = "sds-semantic-gray";
5865
5866
  })(EnumBadgeColors || (EnumBadgeColors = {}));
5866
5867
 
5867
5868
  var moment$4 = moment_;