@indigina/ui-kit 1.1.445 → 1.1.446
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.
|
@@ -10796,6 +10796,9 @@ class KitExcelExportService {
|
|
|
10796
10796
|
const rowCells = gridColumns.map((column) => {
|
|
10797
10797
|
const value = this.gridCellService.getCellValue(row, column.field);
|
|
10798
10798
|
switch (column.type) {
|
|
10799
|
+
case 'number': {
|
|
10800
|
+
return { value: (value ?? undefined) };
|
|
10801
|
+
}
|
|
10799
10802
|
case 'time':
|
|
10800
10803
|
return { format: column.excelFormat, value: this.timeStringToExcelFraction(value) };
|
|
10801
10804
|
case 'date':
|