cilog-lib 1.13.1 → 1.13.3
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/fesm2022/cilog-lib.mjs +98 -97
- package/fesm2022/cilog-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/cilog-lib.d.ts +3 -2
package/package.json
CHANGED
package/types/cilog-lib.d.ts
CHANGED
|
@@ -300,13 +300,14 @@ interface IPage {
|
|
|
300
300
|
}
|
|
301
301
|
|
|
302
302
|
declare class ExportService {
|
|
303
|
+
private colorCache;
|
|
303
304
|
constructor();
|
|
304
305
|
exportExcel(values: IRow[], columns: IColumn[], byFiltre: boolean, withColors: boolean): void;
|
|
305
306
|
getHexaColor(color: string): string;
|
|
306
307
|
setStyleGlobalGrille(ws: Excel.Worksheet): void;
|
|
307
308
|
columnIndexToColumnLetter(column: number): string;
|
|
308
|
-
getValueByType(cell: ICell, col: IColumn):
|
|
309
|
-
getStyleByType(type: ColType): Partial<Excel.Style
|
|
309
|
+
getValueByType(cell: ICell, col: IColumn): any;
|
|
310
|
+
getStyleByType(type: ColType): Partial<Excel.Style> | null;
|
|
310
311
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExportService, never>;
|
|
311
312
|
static ɵprov: i0.ɵɵInjectableDeclaration<ExportService>;
|
|
312
313
|
}
|