@esfaenza/es-table 11.2.96 → 11.2.98

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.
@@ -854,10 +854,13 @@
854
854
  switch (h.type) {
855
855
  case 'date':
856
856
  cell.value = this.dateExts.getDateConvertion(val).toDate();
857
+ break;
857
858
  case 'number':
858
859
  cell.value = parseFloat(val.replace(',', '.'));
860
+ break;
859
861
  default:
860
862
  cell.value = val;
863
+ break;
861
864
  }
862
865
  }
863
866
  }