keevo-components 1.2.7 → 1.2.8

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.
@@ -913,7 +913,7 @@ class TableComponent {
913
913
  returnRowClass(rowData, col) {
914
914
  let value = rowData[col.field];
915
915
  let rowClass;
916
- this.tableSize > 800 ? rowClass = 'text-base' : rowClass = 'text-sm';
916
+ this.tableSize < 800 ? rowClass = 'text-base' : rowClass = 'text-sm';
917
917
  if (col.field == 'vencimento') {
918
918
  value < new Date() ? rowClass = rowClass + ' text-red-400 font-semibold' : '';
919
919
  }