@nettyapps/ntybase 21.0.35-beta.5 → 21.0.35-beta.7
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>;
|
|
@@ -417,16 +422,13 @@ declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> ex
|
|
|
417
422
|
protected dialog: MatDialog;
|
|
418
423
|
protected queryParameterGUID: i0.Signal<any>;
|
|
419
424
|
protected queryParameterType: i0.Signal<any>;
|
|
425
|
+
protected openInPopup: i0.WritableSignal<boolean>;
|
|
420
426
|
protected nettyAppsProxy: NettyStandardProxy<T>;
|
|
421
427
|
/**
|
|
422
428
|
* Component initialization lifecycle hook
|
|
423
429
|
*/
|
|
424
430
|
ngOnInit(): Promise<void>;
|
|
425
431
|
private parseOrReturnValue;
|
|
426
|
-
/**
|
|
427
|
-
* Handle back button click
|
|
428
|
-
*/
|
|
429
|
-
backClicked(): void;
|
|
430
432
|
gotoURL(routePrefix: string[], rightSidenav: string[] | undefined, parameters: string, type?: string, dialogComponent?: any, isNewTab?: boolean, isPopup?: boolean): void;
|
|
431
433
|
popupGotoURL(urlSegments: string[]): void;
|
|
432
434
|
toggleOpenMode(): void;
|
|
@@ -448,7 +450,6 @@ declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> ex
|
|
|
448
450
|
protected hasValidValue(value: any): boolean;
|
|
449
451
|
protected loadData(): void;
|
|
450
452
|
deleteSelected(): Promise<void>;
|
|
451
|
-
refreshData(): Promise<void>;
|
|
452
453
|
protected deleteRows(rows: T[]): void;
|
|
453
454
|
static ɵfac: i0.ɵɵFactoryDeclaration<NettyAgGridListBase<any>, never>;
|
|
454
455
|
static ɵcmp: i0.ɵɵComponentDeclaration<NettyAgGridListBase<any>, "ntybase-ag-grid-list-base", never, { "hasFilter": { "alias": "hasFilter"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|