tickera-angular-components 0.0.1-dev.120 → 0.0.1-dev.128
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/index.d.ts
CHANGED
|
@@ -2524,13 +2524,15 @@ declare class AppModalComponent {
|
|
|
2524
2524
|
showHeader: boolean;
|
|
2525
2525
|
showCloseButton: boolean;
|
|
2526
2526
|
showTitle: boolean;
|
|
2527
|
+
interactiveClose: boolean;
|
|
2527
2528
|
isOpen: WritableSignal<boolean>;
|
|
2528
2529
|
size: ModalSize;
|
|
2529
2530
|
closeModal: EventEmitter<void>;
|
|
2530
2531
|
onCloseModal(): void;
|
|
2532
|
+
onInteractiveClose(): void;
|
|
2531
2533
|
onKeydownEscape(): void;
|
|
2532
2534
|
static ɵfac: i0.ɵɵFactoryDeclaration<AppModalComponent, never>;
|
|
2533
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AppModalComponent, "app-modal", never, { "title": { "alias": "title"; "required": false; }; "disableClose": { "alias": "disableClose"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "closeModal": "closeModal"; }, never, ["*"], true, never>;
|
|
2535
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppModalComponent, "app-modal", never, { "title": { "alias": "title"; "required": false; }; "disableClose": { "alias": "disableClose"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "interactiveClose": { "alias": "interactiveClose"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "closeModal": "closeModal"; }, never, ["*"], true, never>;
|
|
2534
2536
|
}
|
|
2535
2537
|
|
|
2536
2538
|
declare class AppBadgeComponent {
|
|
@@ -2565,15 +2567,18 @@ declare class DynamicTableComponent {
|
|
|
2565
2567
|
currentPage: number;
|
|
2566
2568
|
pageChange: EventEmitter<number>;
|
|
2567
2569
|
searchChange: EventEmitter<string>;
|
|
2570
|
+
pageSizeChange: EventEmitter<number>;
|
|
2571
|
+
pageSizeOptions: number[];
|
|
2568
2572
|
showPagination: boolean;
|
|
2569
2573
|
showSearch: boolean;
|
|
2570
2574
|
showTitle: boolean;
|
|
2571
2575
|
get totalPages(): number;
|
|
2572
2576
|
onSearch(event: any): void;
|
|
2573
2577
|
changePage(delta: number): void;
|
|
2578
|
+
changePageSize(event: any): void;
|
|
2574
2579
|
createInjector(row: any): Injector;
|
|
2575
2580
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTableComponent, never>;
|
|
2576
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTableComponent, "dynamic-table", never, { "title": { "alias": "title"; "required": false; }; "data": { "alias": "data"; "required": false; }; "headers": { "alias": "headers"; "required": false; }; "columnComponents": { "alias": "columnComponents"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "itemsPerPage": { "alias": "itemsPerPage"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "showPagination": { "alias": "showPagination"; "required": false; }; "showSearch": { "alias": "showSearch"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, { "pageChange": "pageChange"; "searchChange": "searchChange"; }, never, never, true, never>;
|
|
2581
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTableComponent, "dynamic-table", never, { "title": { "alias": "title"; "required": false; }; "data": { "alias": "data"; "required": false; }; "headers": { "alias": "headers"; "required": false; }; "columnComponents": { "alias": "columnComponents"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; "itemsPerPage": { "alias": "itemsPerPage"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "showPagination": { "alias": "showPagination"; "required": false; }; "showSearch": { "alias": "showSearch"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, { "pageChange": "pageChange"; "searchChange": "searchChange"; "pageSizeChange": "pageSizeChange"; }, never, never, true, never>;
|
|
2577
2582
|
}
|
|
2578
2583
|
|
|
2579
2584
|
declare class TextExpandableComponent implements OnChanges {
|