@nettyapps/ntybase 21.0.28 → 21.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nettyapps/ntybase",
3
- "version": "21.0.28",
3
+ "version": "21.0.29",
4
4
  "description": "This library provides foundational services and components for NettyApps Angular applications.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -256,7 +256,7 @@ declare class AlertService {
256
256
  showWarning(message: string, action?: string, duration?: number): void;
257
257
  showConfirm(message: string): Promise<boolean>;
258
258
  showSuccess(message: string, duration?: number): void;
259
- showError(error: any, duration?: number): void;
259
+ showError(error: any, duration?: number): Promise<void>;
260
260
  static ɵfac: i0.ɵɵFactoryDeclaration<AlertService, never>;
261
261
  static ɵprov: i0.ɵɵInjectableDeclaration<AlertService>;
262
262
  }
@@ -614,9 +614,8 @@ declare class RangeStringFilter implements IFilterAngularComp {
614
614
  }
615
615
 
616
616
  declare class ConfirmDialog {
617
- dialogRef: MatDialogRef<ConfirmDialog>;
617
+ dialogRef: MatDialogRef<any, any>;
618
618
  data: any;
619
- constructor(dialogRef: MatDialogRef<ConfirmDialog>, data: any);
620
619
  static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmDialog, never>;
621
620
  static ɵcmp: i0.ɵɵComponentDeclaration<ConfirmDialog, "ntybase-confirm-dialog", never, {}, {}, never, never, true, never>;
622
621
  }