cilog-lib 1.12.27 → 1.12.28
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 +60 -3
- package/fesm2022/cilog-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/cilog-lib.d.ts +3 -1
package/package.json
CHANGED
package/types/cilog-lib.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { ContextMenu } from 'primeng/contextmenu';
|
|
|
8
8
|
import { InputNumber } from 'primeng/inputnumber';
|
|
9
9
|
import * as ag_stack from 'ag-stack';
|
|
10
10
|
import * as ag_grid_community from 'ag-grid-community';
|
|
11
|
-
import { ColDef, GridReadyEvent } from 'ag-grid-community';
|
|
11
|
+
import { ColDef, RowClassParams, RowStyle, GridReadyEvent } from 'ag-grid-community';
|
|
12
12
|
import { Editor } from 'primeng/editor';
|
|
13
13
|
import { ControlValueAccessor } from '@angular/forms';
|
|
14
14
|
import { HttpClient } from '@angular/common/http';
|
|
@@ -429,6 +429,8 @@ declare class CilogGridComponent {
|
|
|
429
429
|
constructor();
|
|
430
430
|
defaultColDef: ColDef;
|
|
431
431
|
colDefs: i0.Signal<ColDef<any, any>[]>;
|
|
432
|
+
totalRowData: i0.Signal<any[]>;
|
|
433
|
+
getRowStyle: (params: RowClassParams) => RowStyle | undefined;
|
|
432
434
|
onGridReady(params: GridReadyEvent): void;
|
|
433
435
|
static ɵfac: i0.ɵɵFactoryDeclaration<CilogGridComponent, never>;
|
|
434
436
|
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>;
|