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.
- package/esm2020/lib/api/components/table/table.config.column.mjs +1 -1
- package/esm2020/lib/table/table.component.mjs +2 -2
- package/fesm2015/keevo-components.mjs +1 -1
- package/fesm2015/keevo-components.mjs.map +1 -1
- package/fesm2020/keevo-components.mjs +1 -1
- package/fesm2020/keevo-components.mjs.map +1 -1
- package/lib/api/components/table/table.config.column.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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.
|
|
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;
|