@seniorsistemas/angular-components 17.8.4 → 17.8.5
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 +1 -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/table/table-column/table-columns.component.js +2 -2
- package/esm5/components/table/table-column/table-columns.component.js +2 -2
- package/fesm2015/seniorsistemas-angular-components.js +1 -1
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +1 -1
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -8220,7 +8220,7 @@ var TableColumnsComponent = /** @class */ (function () {
|
|
|
8220
8220
|
return column.prefix ? column.prefix : this.hostProjectConfigs.domain + "." + this.hostProjectConfigs.service + ".";
|
|
8221
8221
|
};
|
|
8222
8222
|
TableColumnsComponent.prototype.isAttributeValueInvalid = function (attributeValue) {
|
|
8223
|
-
return attributeValue
|
|
8223
|
+
return !attributeValue || (this.isArray(attributeValue) && !attributeValue.length);
|
|
8224
8224
|
};
|
|
8225
8225
|
TableColumnsComponent.prototype.getFormattedColumnValue = function (column, columnValue, unifiedColumnValues, uninformedText, uninformedNumber) {
|
|
8226
8226
|
if (uninformedNumber === column.attributes.length) {
|