@sapphire-ion/framework 1.2.61 → 1.2.62
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/esm2022/lib/components/default/default-view/view.mjs +8 -13
- package/esm2022/lib/services/navigation-context.service.mjs +14 -2
- package/esm2022/lib/services/web/http.service.mjs +6 -5
- package/fesm2022/sapphire-ion-framework.mjs +24 -17
- package/fesm2022/sapphire-ion-framework.mjs.map +1 -1
- package/lib/components/default/default-view/view.d.ts +2 -0
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ import { NavController } from "@ionic/angular";
|
|
|
8
8
|
import { HeaderViewComponent } from "./header-view/header-view.component";
|
|
9
9
|
import { TableField } from "../../../classes/inputs/table-field";
|
|
10
10
|
import { CustomInput } from "../../inputs/custom-input";
|
|
11
|
+
import { NavigationContextService } from '../../../services/navigation-context.service';
|
|
11
12
|
import * as i0 from "@angular/core";
|
|
12
13
|
export declare abstract class View<T extends HttpService | HttpServiceAtivo> implements OnInit {
|
|
13
14
|
/** Id do dado a ser carregado */
|
|
@@ -28,6 +29,7 @@ export declare abstract class View<T extends HttpService | HttpServiceAtivo> imp
|
|
|
28
29
|
protected activatedRoute: ActivatedRoute;
|
|
29
30
|
protected elementRef: ElementRef;
|
|
30
31
|
protected fb: FormBuilder;
|
|
32
|
+
protected navContext: NavigationContextService;
|
|
31
33
|
protected nested: boolean;
|
|
32
34
|
constructor();
|
|
33
35
|
/** Lista de TableFields a serem invocados de acordo com sua configuração.
|