cilog-lib 1.12.8 → 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 +15 -2
- package/fesm2022/cilog-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/cilog-lib.d.ts +3 -0
package/package.json
CHANGED
package/types/cilog-lib.d.ts
CHANGED
|
@@ -329,6 +329,7 @@ declare class CilogTableComponent implements OnInit {
|
|
|
329
329
|
table: Table;
|
|
330
330
|
cm: ContextMenu;
|
|
331
331
|
inputNumber: InputNumber;
|
|
332
|
+
lastProcessedDate: Date;
|
|
332
333
|
constructor(confirmationService: ConfirmationService, filterService: FilterService, cdRef: ChangeDetectorRef, exportService: ExportService);
|
|
333
334
|
ngOnInit(): void;
|
|
334
335
|
ngAfterViewInit(): void;
|
|
@@ -339,6 +340,7 @@ declare class CilogTableComponent implements OnInit {
|
|
|
339
340
|
checkType(typeCol: string, col: IColumn): boolean;
|
|
340
341
|
clickById(id: string): void;
|
|
341
342
|
onEditCell(row: IRow, column: IColumn, value: any): void;
|
|
343
|
+
onDateFinalized(row: IRow, column: IColumn, value: Date): void;
|
|
342
344
|
onKeyDown(event: KeyboardEvent, row: IRow, column: IColumn, value: any): void;
|
|
343
345
|
editMultiselect(row: IRow, column: IColumn, event: any): void;
|
|
344
346
|
onSelectAll(event: any): void;
|
|
@@ -359,6 +361,7 @@ declare class CilogTableComponent implements OnInit {
|
|
|
359
361
|
getTotalStr(col: IColumn): string;
|
|
360
362
|
getFormattedText(col: IColumn, rowData: IRow): string;
|
|
361
363
|
getFormattedNumber(col: IColumn, rowData: IRow, value: number, total?: boolean): string;
|
|
364
|
+
isSameDate(d1: Date, d2: Date): boolean;
|
|
362
365
|
downloadFile(cell: ICell): void;
|
|
363
366
|
hasFrozenColumns(): boolean;
|
|
364
367
|
trackByFunction(index: any, item: any): any;
|