cilog-lib 1.12.14 → 1.12.16

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.14",
3
+ "version": "1.12.16",
4
4
  "peerDependencies": {
5
5
  "@types/node": "^20.11.19",
6
6
  "exceljs": "^4.4.0",
@@ -23,6 +23,7 @@
23
23
  }
24
24
  },
25
25
  "sideEffects": false,
26
+ "type": "module",
26
27
  "dependencies": {
27
28
  "tslib": "^2.0.0"
28
29
  }
@@ -171,6 +171,7 @@ interface IColumn {
171
171
  textColor?: string;
172
172
  disableFilter?: boolean;
173
173
  exportable?: boolean;
174
+ contextMenuDisabled?: boolean;
174
175
  }
175
176
  interface IOptions {
176
177
  defaultFilters?: any;
@@ -350,7 +351,7 @@ declare class CilogTableComponent implements OnInit {
350
351
  onUnselectRow(row: IRow): void;
351
352
  onPageTable(event: IPage): void;
352
353
  onDeleteLine(row: IRow): void;
353
- onEditInitCell(row: IRow, column: IColumn, value: any): void;
354
+ onEditInitCell(event: any, row: IRow, column: IColumn, value: any): void;
354
355
  onRowDoubleClickEvent(row: IRow): void;
355
356
  getOption(col: any, row: any, option: string): any;
356
357
  getMultiSelectConcat(value: any, label: string): any;
@@ -373,7 +374,6 @@ declare class CilogTableComponent implements OnInit {
373
374
  isModeCellSelection(): boolean;
374
375
  isModeMetakeySelection(): boolean;
375
376
  exportExcel(byFiltre?: boolean, withColors?: boolean): void;
376
- onClickCellNumber(row: IRow, col: IColumn): void;
377
377
  onContextMenuSelect(): void;
378
378
  static ɵfac: i0.ɵɵFactoryDeclaration<CilogTableComponent, never>;
379
379
  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>;