@nettyapps/ntybase 21.0.35-beta.4 → 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
|
@@ -327,6 +327,8 @@ declare abstract class NettyAgGridBase<T extends NettyEntityBaseInterface<T>> ex
|
|
|
327
327
|
protected commonService: CommonService;
|
|
328
328
|
protected sysFunctionProxy: SysfunctionProxy;
|
|
329
329
|
protected environment: EnvironmentProxy;
|
|
330
|
+
menuValid: i0.WritableSignal<boolean>;
|
|
331
|
+
refreshButtonValid: i0.WritableSignal<boolean>;
|
|
330
332
|
protected authenticationList: Array<NettySecurity>;
|
|
331
333
|
protected accessRightsProcessed: i0.WritableSignal<boolean>;
|
|
332
334
|
allowAdd: i0.WritableSignal<boolean>;
|
|
@@ -347,6 +349,12 @@ declare abstract class NettyAgGridBase<T extends NettyEntityBaseInterface<T>> ex
|
|
|
347
349
|
protected selectedData?(): void;
|
|
348
350
|
protected setFilter(): void;
|
|
349
351
|
protected popupClose(): void;
|
|
352
|
+
protected onFilterTextBoxVisibilityChange(isOpen: boolean): void;
|
|
353
|
+
/**
|
|
354
|
+
* Handle back button click
|
|
355
|
+
*/
|
|
356
|
+
backClicked(): void;
|
|
357
|
+
refreshData(): Promise<void>;
|
|
350
358
|
/** Set data into the grid */
|
|
351
359
|
setData(data: T[]): void;
|
|
352
360
|
setAccessRights(): Promise<boolean>;
|
|
@@ -408,8 +416,6 @@ declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> ex
|
|
|
408
416
|
hasFilter: i0.InputSignal<boolean>;
|
|
409
417
|
protected isFilterValid: i0.WritableSignal<boolean>;
|
|
410
418
|
protected isFilterExpanded: i0.Signal<boolean>;
|
|
411
|
-
menuValid: i0.WritableSignal<boolean>;
|
|
412
|
-
refreshButtonValid: i0.WritableSignal<boolean>;
|
|
413
419
|
protected openEditComponentInPopup: i0.WritableSignal<boolean>;
|
|
414
420
|
protected router: Router;
|
|
415
421
|
protected routerActive: ActivatedRoute;
|
|
@@ -422,10 +428,6 @@ declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> ex
|
|
|
422
428
|
*/
|
|
423
429
|
ngOnInit(): Promise<void>;
|
|
424
430
|
private parseOrReturnValue;
|
|
425
|
-
/**
|
|
426
|
-
* Handle back button click
|
|
427
|
-
*/
|
|
428
|
-
backClicked(): void;
|
|
429
431
|
gotoURL(routePrefix: string[], rightSidenav: string[] | undefined, parameters: string, type?: string, dialogComponent?: any, isNewTab?: boolean, isPopup?: boolean): void;
|
|
430
432
|
popupGotoURL(urlSegments: string[]): void;
|
|
431
433
|
toggleOpenMode(): void;
|
|
@@ -445,10 +447,8 @@ declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> ex
|
|
|
445
447
|
* @returns true if has a valid value
|
|
446
448
|
*/
|
|
447
449
|
protected hasValidValue(value: any): boolean;
|
|
448
|
-
protected onFilterTextBoxVisibilityChange(isOpen: boolean): void;
|
|
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>;
|