cilog-lib 1.13.1 → 1.13.2
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 +96 -95
- package/fesm2022/cilog-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/cilog-lib.d.ts +4 -3
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
|
}
|
|
@@ -398,7 +399,7 @@ declare class CilogTableComponent implements OnInit {
|
|
|
398
399
|
onRowDoubleClickEvent(row: IRow): void;
|
|
399
400
|
getMultiSelectConcat(value: any, label: string): any;
|
|
400
401
|
getSelectLibelleByValue(row: any, col: any): string;
|
|
401
|
-
getFilterByCol(col: IColumn): "dateRangeFilter" | "objetFilter" | "
|
|
402
|
+
getFilterByCol(col: IColumn): "dateRangeFilter" | "objetFilter" | "listeFilter" | "textFilter" | "switchFilter" | "selectButtonFilter";
|
|
402
403
|
onFilterCol(event: any, col: IColumn): void;
|
|
403
404
|
filter(col: IColumn, val: any, filter: string): void;
|
|
404
405
|
getTotal(col: IColumn): number;
|