cilog-lib 1.12.23 → 1.12.25

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.12.23",
3
+ "version": "1.12.25",
4
4
  "peerDependencies": {
5
5
  "@types/node": "^20.11.19",
6
6
  "exceljs": "^4.4.0",
@@ -6,6 +6,9 @@ import { Table } from 'primeng/table';
6
6
  import * as Excel from 'exceljs';
7
7
  import { ContextMenu } from 'primeng/contextmenu';
8
8
  import { InputNumber } from 'primeng/inputnumber';
9
+ import * as ag_stack from 'ag-stack';
10
+ import * as ag_grid_community from 'ag-grid-community';
11
+ import { ColDef, GridReadyEvent } from 'ag-grid-community';
9
12
  import { Editor } from 'primeng/editor';
10
13
  import { ControlValueAccessor } from '@angular/forms';
11
14
  import { HttpClient } from '@angular/common/http';
@@ -417,6 +420,20 @@ declare class CilogTableComponent implements OnInit {
417
420
  static ɵcmp: i0.ɵɵComponentDeclaration<CilogTableComponent, "cilog-table", never, { "options": { "alias": "options"; "required": true; "isSignal": true; }; "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "values": { "alias": "values"; "required": true; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; }, { "columns": "columnsChange"; "values": "valuesChange"; "onEdit": "onEdit"; "onEditInit": "onEditInit"; "onDelete": "onDelete"; "onSelect": "onSelect"; "onUnselect": "onUnselect"; "onFilter": "onFilter"; "onFilterInit": "onFilterInit"; "onSort": "onSort"; "onPage": "onPage"; "onRowDoubleClick": "onRowDoubleClick"; }, never, never, true, never>;
418
421
  }
419
422
 
423
+ declare class CilogGridComponent {
424
+ private gridApi;
425
+ theme: ag_stack.Theme<ag_grid_community.ThemeDefaultParams>;
426
+ options: i0.InputSignal<IOptionsGrille>;
427
+ columns: i0.ModelSignal<IColumn[]>;
428
+ values: i0.ModelSignal<IRow[]>;
429
+ constructor();
430
+ defaultColDef: ColDef;
431
+ colDefs: i0.Signal<ColDef<any, any>[]>;
432
+ onGridReady(params: GridReadyEvent): void;
433
+ static ɵfac: i0.ɵɵFactoryDeclaration<CilogGridComponent, never>;
434
+ 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>;
435
+ }
436
+
420
437
  declare class CilogTreetableComponent {
421
438
  options: i0.InputSignal<IOptionsGrille>;
422
439
  columns: i0.ModelSignal<IColumn[]>;
@@ -579,5 +596,5 @@ declare class CilogTableService {
579
596
  static ɵprov: i0.ɵɵInjectableDeclaration<CilogTableService>;
580
597
  }
581
598
 
582
- export { CilogEditorComponent, CilogInputNumberComponent, CilogLibComponent, CilogLibService, CilogMessageComponent, CilogMessageService, CilogTableComponent, CilogTableService, CilogTreetableComponent, ColType, DocumentationContextuelleComponent, ExportService, ModeCalendar, ModeSelection, Position, Severity, ThemeGrille };
599
+ export { CilogEditorComponent, CilogGridComponent, CilogInputNumberComponent, CilogLibComponent, CilogLibService, CilogMessageComponent, CilogMessageService, CilogTableComponent, CilogTableService, CilogTreetableComponent, ColType, DocumentationContextuelleComponent, ExportService, ModeCalendar, ModeSelection, Position, Severity, ThemeGrille };
583
600
  export type { ICell, IColumn, IEdition, IFilter, IGrouping, IMessage, IOptions, IOptionsButton, IOptionsDate, IOptionsDropdown, IOptionsFile, IOptionsGrille, IOptionsMultiSelect, IOptionsNumber, IOptionsSelectButton, IOptionsState, IOptionsSwitch, IOptionsText, IPage, IRow, ISelection, ISort, ISortCustom, IState, ISuppression };