@mcurros2/microm 1.1.125-0 → 1.1.127-0
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/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3012,12 +3012,12 @@ function $5be4b35862a9dc4d$export$a04f965200623e61(data, notExportableColumns, s
|
|
|
3012
3012
|
column.numFmt = "0";
|
|
3013
3013
|
break;
|
|
3014
3014
|
case "date":
|
|
3015
|
-
column.numFmt = "
|
|
3015
|
+
column.numFmt = "14";
|
|
3016
3016
|
break;
|
|
3017
3017
|
case "datetime":
|
|
3018
3018
|
case "datetime2":
|
|
3019
3019
|
case "smalldatetime":
|
|
3020
|
-
column.numFmt = "
|
|
3020
|
+
column.numFmt = "14";
|
|
3021
3021
|
break;
|
|
3022
3022
|
case "time":
|
|
3023
3023
|
column.numFmt = "hh:mm:ss";
|
|
@@ -3054,7 +3054,9 @@ function $5be4b35862a9dc4d$export$a04f965200623e61(data, notExportableColumns, s
|
|
|
3054
3054
|
worksheet.addRow(rowForExcel);
|
|
3055
3055
|
});
|
|
3056
3056
|
});
|
|
3057
|
-
const buffer = yield workbook.xlsx.writeBuffer(
|
|
3057
|
+
const buffer = yield workbook.xlsx.writeBuffer({
|
|
3058
|
+
useStyles: true
|
|
3059
|
+
});
|
|
3058
3060
|
const blob = new Blob([
|
|
3059
3061
|
buffer
|
|
3060
3062
|
], {
|