cilog-lib 1.12.34 → 1.13.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/fesm2022/cilog-lib.mjs +13 -4
- package/fesm2022/cilog-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/cilog-lib.d.ts +2 -0
package/package.json
CHANGED
package/types/cilog-lib.d.ts
CHANGED
|
@@ -422,6 +422,7 @@ declare class CilogTableComponent implements OnInit {
|
|
|
422
422
|
|
|
423
423
|
declare class CilogGridComponent {
|
|
424
424
|
private gridApi;
|
|
425
|
+
exportService: ExportService;
|
|
425
426
|
localeText: {
|
|
426
427
|
selectAll: string;
|
|
427
428
|
selectAllSearchResults: string;
|
|
@@ -1217,6 +1218,7 @@ declare class CilogGridComponent {
|
|
|
1217
1218
|
totalRowData: i0.Signal<any[]>;
|
|
1218
1219
|
getRowStyle: (params: RowClassParams) => RowStyle | undefined;
|
|
1219
1220
|
onGridReady(params: GridReadyEvent): void;
|
|
1221
|
+
exportExcel(byFiltre?: boolean, withColors?: boolean): void;
|
|
1220
1222
|
static ɵfac: i0.ɵɵFactoryDeclaration<CilogGridComponent, never>;
|
|
1221
1223
|
static ɵcmp: i0.ɵɵComponentDeclaration<CilogGridComponent, "cilog-grid", never, { "options": { "alias": "options"; "required": true; "isSignal": true; }; "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "values": { "alias": "values"; "required": true; "isSignal": true; }; }, { "columns": "columnsChange"; "values": "valuesChange"; }, never, never, true, never>;
|
|
1222
1224
|
}
|