@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.
- package/bundles/seniorsistemas-angular-components.umd.js +4 -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 +5 -2
- package/esm5/components/table/table-column/table-columns.component.js +5 -2
- package/fesm2015/seniorsistemas-angular-components.js +4 -1
- package/fesm2015/seniorsistemas-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-angular-components.js +4 -1
- package/fesm5/seniorsistemas-angular-components.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
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) {
|