cilog-lib 1.12.2 → 1.12.3
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 +35 -58
- package/fesm2022/cilog-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/cilog-lib.d.ts +6 -9
package/package.json
CHANGED
package/types/cilog-lib.d.ts
CHANGED
|
@@ -304,12 +304,10 @@ declare class CilogTableComponent implements OnInit {
|
|
|
304
304
|
private cdRef;
|
|
305
305
|
private exportService;
|
|
306
306
|
initFilter: boolean;
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
values: IRow[]
|
|
310
|
-
|
|
311
|
-
options: IOptionsGrille;
|
|
312
|
-
loading: boolean;
|
|
307
|
+
options: i0.InputSignal<IOptionsGrille>;
|
|
308
|
+
columns: i0.ModelSignal<IColumn[]>;
|
|
309
|
+
values: i0.ModelSignal<IRow[]>;
|
|
310
|
+
loading: i0.InputSignal<boolean>;
|
|
313
311
|
onEdit: EventEmitter<IEdition>;
|
|
314
312
|
onEditInit: EventEmitter<IEdition>;
|
|
315
313
|
onDelete: EventEmitter<ISuppression>;
|
|
@@ -343,7 +341,6 @@ declare class CilogTableComponent implements OnInit {
|
|
|
343
341
|
onSelectRow(row: IRow): void;
|
|
344
342
|
onSelectCell(cell: ICell): void;
|
|
345
343
|
onUnselectRow(row: IRow): void;
|
|
346
|
-
refreshData(): void;
|
|
347
344
|
onPageTable(event: IPage): void;
|
|
348
345
|
onDeleteLine(row: IRow): void;
|
|
349
346
|
onEditInitCell(row: IRow, column: IColumn, value: any): void;
|
|
@@ -351,7 +348,7 @@ declare class CilogTableComponent implements OnInit {
|
|
|
351
348
|
getOption(col: any, row: any, option: string): any;
|
|
352
349
|
getMultiSelectConcat(value: any, label: string): any;
|
|
353
350
|
getSelectLibelleByValue(row: any, col: any): string;
|
|
354
|
-
getFilterByCol(col: IColumn): "dateRangeFilter" | "objetFilter" | "
|
|
351
|
+
getFilterByCol(col: IColumn): "dateRangeFilter" | "objetFilter" | "listeFilter" | "textFilter" | "switchFilter" | "selectButtonFilter";
|
|
355
352
|
onFilterCol(event: any, col: IColumn): void;
|
|
356
353
|
filter(col: IColumn, val: any, filter: string): void;
|
|
357
354
|
getTotal(col: IColumn): number;
|
|
@@ -370,7 +367,7 @@ declare class CilogTableComponent implements OnInit {
|
|
|
370
367
|
exportExcel(byFiltre?: boolean, withColors?: boolean): void;
|
|
371
368
|
onClickCellNumber(row: IRow, col: IColumn): void;
|
|
372
369
|
static ɵfac: i0.ɵɵFactoryDeclaration<CilogTableComponent, never>;
|
|
373
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CilogTableComponent, "cilog-table", never, { "
|
|
370
|
+
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
371
|
}
|
|
375
372
|
|
|
376
373
|
interface IEditorTextChange {
|