@ecodev/natural 63.3.3 → 63.4.0

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.
@@ -1,6 +1,6 @@
1
1
  import { OnInit } from '@angular/core';
2
2
  import { UntypedFormGroup } from '@angular/forms';
3
- import { ActivatedRoute, Router } from '@angular/router';
3
+ import { ActivatedRoute, type NavigationExtras, Router } from '@angular/router';
4
4
  import { NaturalAlertService } from '../modules/alert/alert.service';
5
5
  import { NaturalAbstractPanel } from '../modules/panels/abstract-panel';
6
6
  import { NaturalAbstractModelService } from '../services/abstract-model.service';
@@ -83,7 +83,10 @@ export declare class NaturalAbstractDetail<TService extends NaturalAbstractModel
83
83
  /**
84
84
  * `confirmer` can be used to open a custom dialog, or anything else, to confirm the deletion, instead of the standard dialog
85
85
  */
86
- delete(redirectionRoute?: unknown[], confirmer?: Observable<boolean | undefined>): void;
86
+ delete(redirectionRoute?: unknown[] | {
87
+ commands: unknown[];
88
+ extras: NavigationExtras;
89
+ }, confirmer?: Observable<boolean | undefined>): void;
87
90
  protected postUpdate(model: ExtractTupdate<TService>): void;
88
91
  /**
89
92
  * Returns an observable that will be subscribed to immediately and the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecodev/natural",
3
- "version": "63.3.3",
3
+ "version": "63.4.0",
4
4
  "license": "MIT",
5
5
  "repository": "github:Ecodev/natural",
6
6
  "sideEffects": false,