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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cilog-lib",
3
- "version": "1.13.1",
3
+ "version": "1.13.3",
4
4
  "peerDependencies": {
5
5
  "@types/node": "^20.11.19",
6
6
  "exceljs": "^4.4.0",
@@ -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): Object;
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
  }