cilog-lib 1.12.7 → 1.12.9
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 +19 -2
- package/fesm2022/cilog-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/cilog-lib.d.ts +5 -0
package/package.json
CHANGED
package/types/cilog-lib.d.ts
CHANGED
|
@@ -325,9 +325,11 @@ declare class CilogTableComponent implements OnInit {
|
|
|
325
325
|
filterDatesRange: Date[];
|
|
326
326
|
optionsSwitch: any[];
|
|
327
327
|
contextMenuSelectedItem: IRow;
|
|
328
|
+
contextMenuSelectedRow: IRow;
|
|
328
329
|
table: Table;
|
|
329
330
|
cm: ContextMenu;
|
|
330
331
|
inputNumber: InputNumber;
|
|
332
|
+
lastProcessedDate: Date;
|
|
331
333
|
constructor(confirmationService: ConfirmationService, filterService: FilterService, cdRef: ChangeDetectorRef, exportService: ExportService);
|
|
332
334
|
ngOnInit(): void;
|
|
333
335
|
ngAfterViewInit(): void;
|
|
@@ -338,6 +340,7 @@ declare class CilogTableComponent implements OnInit {
|
|
|
338
340
|
checkType(typeCol: string, col: IColumn): boolean;
|
|
339
341
|
clickById(id: string): void;
|
|
340
342
|
onEditCell(row: IRow, column: IColumn, value: any): void;
|
|
343
|
+
onDateFinalized(row: IRow, column: IColumn, value: Date): void;
|
|
341
344
|
onKeyDown(event: KeyboardEvent, row: IRow, column: IColumn, value: any): void;
|
|
342
345
|
editMultiselect(row: IRow, column: IColumn, event: any): void;
|
|
343
346
|
onSelectAll(event: any): void;
|
|
@@ -358,6 +361,7 @@ declare class CilogTableComponent implements OnInit {
|
|
|
358
361
|
getTotalStr(col: IColumn): string;
|
|
359
362
|
getFormattedText(col: IColumn, rowData: IRow): string;
|
|
360
363
|
getFormattedNumber(col: IColumn, rowData: IRow, value: number, total?: boolean): string;
|
|
364
|
+
isSameDate(d1: Date, d2: Date): boolean;
|
|
361
365
|
downloadFile(cell: ICell): void;
|
|
362
366
|
hasFrozenColumns(): boolean;
|
|
363
367
|
trackByFunction(index: any, item: any): any;
|
|
@@ -369,6 +373,7 @@ declare class CilogTableComponent implements OnInit {
|
|
|
369
373
|
isModeMetakeySelection(): boolean;
|
|
370
374
|
exportExcel(byFiltre?: boolean, withColors?: boolean): void;
|
|
371
375
|
onClickCellNumber(row: IRow, col: IColumn): void;
|
|
376
|
+
onContextMenuSelect(): void;
|
|
372
377
|
static ɵfac: i0.ɵɵFactoryDeclaration<CilogTableComponent, never>;
|
|
373
378
|
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>;
|
|
374
379
|
}
|