tickera-angular-components 0.0.1-dev.187 → 0.0.1-dev.188
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
|
@@ -2946,7 +2946,7 @@ declare class AuditInformationComponent {
|
|
|
2946
2946
|
static ɵcmp: i0.ɵɵComponentDeclaration<AuditInformationComponent, "app-audit-information", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
|
|
2947
2947
|
}
|
|
2948
2948
|
|
|
2949
|
-
declare class DynamicTableComponent {
|
|
2949
|
+
declare class DynamicTableComponent implements OnChanges {
|
|
2950
2950
|
private injector;
|
|
2951
2951
|
constructor(injector: Injector);
|
|
2952
2952
|
title: string;
|
|
@@ -2972,6 +2972,8 @@ declare class DynamicTableComponent {
|
|
|
2972
2972
|
onSearch(event: any): void;
|
|
2973
2973
|
changePage(delta: number): void;
|
|
2974
2974
|
changePageSize(event: any): void;
|
|
2975
|
+
private rowInjectors;
|
|
2976
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2975
2977
|
createInjector(row: any): Injector;
|
|
2976
2978
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTableComponent, never>;
|
|
2977
2979
|
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTableComponent, "dynamic-table", never, { "title": { "alias": "title"; "required": false; }; "data": { "alias": "data"; "required": false; }; "headers": { "alias": "headers"; "required": false; }; "searcherPlaceholder": { "alias": "searcherPlaceholder"; "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; }; "searchValue": { "alias": "searchValue"; "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>;
|