@decaf-ts/for-angular 0.1.26 → 0.1.29
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
|
@@ -5841,6 +5841,7 @@ declare class ListComponent extends NgxComponentDirective implements OnInit, OnD
|
|
|
5841
5841
|
* @memberOf ListComponent
|
|
5842
5842
|
*/
|
|
5843
5843
|
lastPage: number;
|
|
5844
|
+
bookMarkPagination: boolean;
|
|
5844
5845
|
/**
|
|
5845
5846
|
* @description Event emitter for item click interactions.
|
|
5846
5847
|
* @summary Emits an event when a list item is clicked. The event includes the data
|
|
@@ -6833,6 +6834,8 @@ declare class PaginationComponent extends NgxComponentDirective implements OnIni
|
|
|
6833
6834
|
* @memberOf PaginationComponent
|
|
6834
6835
|
*/
|
|
6835
6836
|
clickEvent: EventEmitter<IPaginationCustomEvent>;
|
|
6837
|
+
bookMarkPagination: boolean;
|
|
6838
|
+
nextBookmark: string;
|
|
6836
6839
|
/**
|
|
6837
6840
|
* @constructor
|
|
6838
6841
|
* @description Initializes a new instance of the PaginationComponent.
|
|
@@ -6991,7 +6994,7 @@ declare class PaginationComponent extends NgxComponentDirective implements OnIni
|
|
|
6991
6994
|
*/
|
|
6992
6995
|
navigate(page: number | null): void;
|
|
6993
6996
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationComponent, never>;
|
|
6994
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "ngx-decaf-pagination", never, { "table": { "alias": "table"; "required": false; }; "totalPages": { "alias": "totalPages"; "required": true; }; "current": { "alias": "current"; "required": false; }; "truncatePages": { "alias": "truncatePages"; "required": false; }; "disablePages": { "alias": "disablePages"; "required": false; }; }, { "clickEvent": "clickEvent"; }, never, never, true, never>;
|
|
6997
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginationComponent, "ngx-decaf-pagination", never, { "table": { "alias": "table"; "required": false; }; "totalPages": { "alias": "totalPages"; "required": true; }; "current": { "alias": "current"; "required": false; }; "truncatePages": { "alias": "truncatePages"; "required": false; }; "disablePages": { "alias": "disablePages"; "required": false; }; "bookMarkPagination": { "alias": "bookMarkPagination"; "required": false; }; "nextBookmark": { "alias": "nextBookmark"; "required": false; }; }, { "clickEvent": "clickEvent"; }, never, never, true, never>;
|
|
6995
6998
|
}
|
|
6996
6999
|
|
|
6997
7000
|
/**
|
|
@@ -7896,7 +7899,7 @@ declare function getNgxInlineModal(inlineContent: string | SafeHtml, props?: Par
|
|
|
7896
7899
|
* @param {EnvironmentInjector} [injector] - Optional environment injector for dependency injection.
|
|
7897
7900
|
* @returns {Promise<IonModal>} - A promise that resolves with the modal instance.
|
|
7898
7901
|
*/
|
|
7899
|
-
declare function getNgxSelectOptionsModal(title: string, options: SelectOption[], injector?: EnvironmentInjector): Promise<IonModal>;
|
|
7902
|
+
declare function getNgxSelectOptionsModal(title: string, options: SelectOption[], uid?: string, injector?: EnvironmentInjector): Promise<IonModal>;
|
|
7900
7903
|
declare function presentModalConfirm(props: Pick<ModalConfirmComponent, "title" | "role" | "data" | "locale"> | undefined, role: CrudOperations, injector?: EnvironmentInjector): Promise<IonModal>;
|
|
7901
7904
|
|
|
7902
7905
|
declare class IconComponent implements OnInit {
|