@seniorsistemas/angular-components 17.8.5 → 17.8.6

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.
@@ -8366,7 +8366,10 @@
8366
8366
  return column.prefix ? column.prefix : this.hostProjectConfigs.domain + "." + this.hostProjectConfigs.service + ".";
8367
8367
  };
8368
8368
  TableColumnsComponent.prototype.isAttributeValueInvalid = function (attributeValue) {
8369
- return !attributeValue || (this.isArray(attributeValue) && !attributeValue.length);
8369
+ return attributeValue === null ||
8370
+ attributeValue === undefined ||
8371
+ (this.isArray(attributeValue) && !attributeValue.length) ||
8372
+ (typeof attributeValue === 'string' && attributeValue.trim() === '');
8370
8373
  };
8371
8374
  TableColumnsComponent.prototype.getFormattedColumnValue = function (column, columnValue, unifiedColumnValues, uninformedText, uninformedNumber) {
8372
8375
  if (uninformedNumber === column.attributes.length) {