intelica-library-ui 0.1.157 → 0.1.158

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.
@@ -5325,7 +5325,7 @@ class HtmlToExcelService {
5325
5325
  const rows = JSON.parse(rowsSerializate);
5326
5326
  const csvLines = rows.map(r => r.linea);
5327
5327
  const csvContent = csvLines.join("\n");
5328
- const blob = new Blob([csvContent], { type: "text/csv;charset=utf-8;" });
5328
+ const blob = new Blob(["\uFEFF" + csvContent], { type: "text/csv;charset=utf-8;" });
5329
5329
  saveAs(blob, excelName.endsWith(".csv") ? excelName : `${excelName}.csv`);
5330
5330
  }
5331
5331
  GetExcelColumnLetter(columnNumber) {