@magic-xpa/angular 4.800.0-dev480.191 → 4.800.0-dev480.199

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,10 +1,10 @@
1
1
  {
2
2
  "name": "@magic-xpa/angular",
3
- "version": "4.800.0-dev480.191",
3
+ "version": "4.800.0-dev480.199",
4
4
  "license": "SEE LICENSE IN EULA.pdf",
5
5
  "dependencies": {
6
- "@magic-xpa/engine": "4.800.0-dev480.191",
7
- "@magic-xpa/angular-material-core": "4.800.0-dev480.191",
6
+ "@magic-xpa/engine": "4.800.0-dev480.199",
7
+ "@magic-xpa/angular-material-core": "4.800.0-dev480.199",
8
8
  "tslib": "^2.0.0"
9
9
  },
10
10
  "peerDependencies": {
@@ -17,4 +17,5 @@ export declare class GuiInteractiveExecutor {
17
17
  private OnRefreshPage;
18
18
  private OnGetTopIndex;
19
19
  private OnGetIsRowEditing;
20
+ private OnGetLastRoute;
20
21
  }
@@ -1,5 +1,5 @@
1
1
  import { ComponentFactoryResolver, OnInit, ViewContainerRef } from '@angular/core';
2
- import { ActivatedRoute } from '@angular/router';
2
+ import { ActivatedRoute, Router } from '@angular/router';
3
3
  import { EngineMagicService } from '../services/engine.magic.service';
4
4
  import { ComponentListMagicService } from '../services/component-list.magic.service';
5
5
  import { CommandsCollectorMagicService } from '../services/commands-collector.magic.service';
@@ -8,6 +8,7 @@ import { TaskMagicService } from '../services/task.magics.service';
8
8
  import * as i0 from "@angular/core";
9
9
  export declare class RouterContainerMagicComponent implements OnInit {
10
10
  private activatedRoute;
11
+ protected router: Router;
11
12
  protected magic: EngineMagicService;
12
13
  private containerTaskService;
13
14
  private componentFactoryResolver;
@@ -17,7 +18,9 @@ export declare class RouterContainerMagicComponent implements OnInit {
17
18
  protected routerCommandsMagicService: RouterCommandsMagicService;
18
19
  private componentRef;
19
20
  private parentMgSubformService;
20
- constructor(activatedRoute: ActivatedRoute, magic: EngineMagicService, containerTaskService: TaskMagicService, componentFactoryResolver: ComponentFactoryResolver, viewContainerRef: ViewContainerRef, componentList: ComponentListMagicService, pendingCommandsCollector: CommandsCollectorMagicService, routerCommandsMagicService: RouterCommandsMagicService);
21
+ private static lastRoute;
22
+ static get LastRoute(): string;
23
+ constructor(activatedRoute: ActivatedRoute, router: Router, magic: EngineMagicService, containerTaskService: TaskMagicService, componentFactoryResolver: ComponentFactoryResolver, viewContainerRef: ViewContainerRef, componentList: ComponentListMagicService, pendingCommandsCollector: CommandsCollectorMagicService, routerCommandsMagicService: RouterCommandsMagicService);
21
24
  ngOnInit(): void;
22
25
  private insertRouteEvent;
23
26
  initializeComponent(): void;