@esfaenza/es-table 11.2.78 → 11.2.79

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.
@@ -3568,9 +3568,10 @@
3568
3568
  case 'boolean':
3569
3569
  case 'enum':
3570
3570
  case 'autocomplete':
3571
+ return valType.value;
3571
3572
  case 'float':
3572
3573
  case 'currency':
3573
- return valType.value;
3574
+ return parseFloat(valType.value).toLocaleString(this.est.locale);
3574
3575
  case 'date':
3575
3576
  return dayjs(valType.value).format(this.est.lc.token("getSmallDateDisplayFormat"));
3576
3577
  case 'datetime':