@nettyapps/ntybase 21.1.25 → 21.1.27

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nettyapps/ntybase",
3
- "version": "21.1.25",
3
+ "version": "21.1.27",
4
4
  "description": "This library provides foundational services and components for NettyApps Angular applications.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -420,6 +420,7 @@ declare abstract class NettyAgGridBase<T extends NettyEntityBaseInterface<T>> ex
420
420
  saveGrid(params: any): void;
421
421
  expandCollapse(): void;
422
422
  quickSearch(searchStr?: string): void;
423
+ refreshData(): Promise<void>;
423
424
  /**
424
425
  * Update a single row in the grid
425
426
  * @param rowData The updated row data
@@ -466,7 +467,6 @@ declare abstract class NettyAgGridListBase<T extends NettyEntityInterface<T>> ex
466
467
  */
467
468
  constructor();
468
469
  protected loadData(): void;
469
- refreshData(): Promise<void>;
470
470
  deleteSelected(): Promise<void>;
471
471
  protected deleteRows(rows: T[]): void;
472
472
  logInputs(message: string): void;
@@ -509,7 +509,6 @@ declare abstract class NettyAgGridLogBase<T extends NettyEntityLogInterface<T>>
509
509
  */
510
510
  ngOnInit(): Promise<void>;
511
511
  protected loadData(): void;
512
- refreshData(): Promise<void>;
513
512
  static ɵfac: i0.ɵɵFactoryDeclaration<NettyAgGridLogBase<any>, never>;
514
513
  static ɵcmp: i0.ɵɵComponentDeclaration<NettyAgGridLogBase<any>, "ntybase-ag-grid-log-base", never, {}, {}, never, never, true, never>;
515
514
  }
@@ -1035,6 +1034,7 @@ declare class Guid {
1035
1034
 
1036
1035
  declare class NettyBaseApp {
1037
1036
  protected i18nService: I18nService;
1037
+ protected alertService: AlertService;
1038
1038
  protected loadBaseTranslations(): Promise<void>;
1039
1039
  static ɵfac: i0.ɵɵFactoryDeclaration<NettyBaseApp, never>;
1040
1040
  static ɵcmp: i0.ɵɵComponentDeclaration<NettyBaseApp, "ntybase-netty-base-app", never, {}, {}, never, never, true, never>;
@@ -1107,6 +1107,7 @@ declare class NettyMenuService {
1107
1107
  private http;
1108
1108
  private environmentProxy;
1109
1109
  private i18nService;
1110
+ private alertService;
1110
1111
  readonly menuName: i0.WritableSignal<string>;
1111
1112
  readonly menu: i0.WritableSignal<any>;
1112
1113
  setMenuName(name: string): void;