keevo-components 1.4.18 → 1.4.19

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.
@@ -920,7 +920,7 @@ class TableComponent {
920
920
  let value = rowData[col.field];
921
921
  let rowClass;
922
922
  this.tableSize > 800 ? rowClass = 'text-base' : rowClass = 'text-sm';
923
- if (col.field == 'datavencimento') {
923
+ if (col.expiredDate == true) {
924
924
  new Date(value) < new Date() ? rowClass = rowClass + ' text-red-400 font-semibold' : '';
925
925
  }
926
926
  return rowClass;