@nettyapps/ntybase 21.0.35-beta.5 → 21.0.35-beta.6
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/package.json
CHANGED
|
@@ -350,6 +350,11 @@ declare abstract class NettyAgGridBase<T extends NettyEntityBaseInterface<T>> ex
|
|
|
350
350
|
protected setFilter(): void;
|
|
351
351
|
protected popupClose(): void;
|
|
352
352
|
protected onFilterTextBoxVisibilityChange(isOpen: boolean): void;
|
|
353
|
+
/**
|
|
354
|
+
* Handle back button click
|
|
355
|
+
*/
|
|
356
|
+
backClicked(): void;
|
|
357
|
+
refreshData(): Promise<void>;
|
|
353
358
|
/** Set data into the grid */
|
|
354
359
|
setData(data: T[]): void;
|
|
355
360
|
setAccessRights(): Promise<boolean>;
|
|
@@ -423,10 +428,6 @@ declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> ex
|
|
|
423
428
|
*/
|
|
424
429
|
ngOnInit(): Promise<void>;
|
|
425
430
|
private parseOrReturnValue;
|
|
426
|
-
/**
|
|
427
|
-
* Handle back button click
|
|
428
|
-
*/
|
|
429
|
-
backClicked(): void;
|
|
430
431
|
gotoURL(routePrefix: string[], rightSidenav: string[] | undefined, parameters: string, type?: string, dialogComponent?: any, isNewTab?: boolean, isPopup?: boolean): void;
|
|
431
432
|
popupGotoURL(urlSegments: string[]): void;
|
|
432
433
|
toggleOpenMode(): void;
|
|
@@ -448,7 +449,6 @@ declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> ex
|
|
|
448
449
|
protected hasValidValue(value: any): boolean;
|
|
449
450
|
protected loadData(): void;
|
|
450
451
|
deleteSelected(): Promise<void>;
|
|
451
|
-
refreshData(): Promise<void>;
|
|
452
452
|
protected deleteRows(rows: T[]): void;
|
|
453
453
|
static ɵfac: i0.ɵɵFactoryDeclaration<NettyAgGridListBase<any>, never>;
|
|
454
454
|
static ɵcmp: i0.ɵɵComponentDeclaration<NettyAgGridListBase<any>, "ntybase-ag-grid-list-base", never, { "hasFilter": { "alias": "hasFilter"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|