@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.
@@ -3526,7 +3526,7 @@
3526
3526
  var label = this.searchTotalRecords === 1
3527
3527
  ? this.recordsLabel.trim()
3528
3528
  : this.recordsLabel.trim();
3529
- return (this.searchTotalRecordsLabel || this.searchTotalRecords) + " " + label;
3529
+ return this.searchTotalRecordsLabel ? this.searchTotalRecordsLabel : this.searchTotalRecords + " " + label;
3530
3530
  };
3531
3531
  LookupComponent.prototype._convertToMomentHourFormat = function (hourFormat, format) {
3532
3532
  if (format === "dd/mm/yy") { // valor padrão para o format.
@@ -6008,6 +6008,7 @@
6008
6008
  EnumBadgeColors["YELLOW"] = "sds-semantic-yellow";
6009
6009
  EnumBadgeColors["GREEN"] = "sds-semantic-green";
6010
6010
  EnumBadgeColors["BLUE"] = "sds-semantic-blue";
6011
+ EnumBadgeColors["GRAY"] = "sds-semantic-gray";
6011
6012
  })(exports.EnumBadgeColors || (exports.EnumBadgeColors = {}));
6012
6013
 
6013
6014
  var moment$4 = moment_;