@magic-xpa/angular 4.800.0-dev480.95 → 4.800.1

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.95",
3
+ "version": "4.800.1",
4
4
  "license": "SEE LICENSE IN EULA.pdf",
5
5
  "dependencies": {
6
- "@magic-xpa/engine": "4.800.0-dev480.95",
7
- "@magic-xpa/angular-material-core": "4.800.0-dev480.95",
6
+ "@magic-xpa/engine": "4.800.1",
7
+ "@magic-xpa/angular-material-core": "4.800.1",
8
8
  "tslib": "^2.0.0"
9
9
  },
10
10
  "peerDependencies": {
@@ -29,7 +29,14 @@ export declare class AccessorMagicService {
29
29
  getPicture(controlId: string, rowId?: string): string;
30
30
  getCustomProperty(controlId: string, propertyNameOrRowID?: string, rowId?: string): any;
31
31
  getCustomProperty_1(controlId: string, propertyName: string, rowId?: string): any;
32
- getItemListValues(id: string, rowId?: string): string;
32
+ getItemListValues(id: string, rowId?: string): Array<{
33
+ index: number;
34
+ displayValue: string;
35
+ }>;
36
+ getFilteredList(controlId: string, rowId?: string): Array<{
37
+ index: number;
38
+ displayValue: string;
39
+ }>;
33
40
  getDisplayValue(id: any, rowId?: any): string;
34
41
  isOptionSelected(index: any, controlId: any): boolean;
35
42
  isTabPageSelected(controlId: string, layer: number): boolean;
@@ -1,4 +1,4 @@
1
- import { Component } from '@angular/core';
1
+ import { Component, Injector, NgModuleFactoryLoader } from '@angular/core';
2
2
  import { TaskMagicService } from './task.magics.service';
3
3
  import { List } from '@magic-xpa/mscorelib';
4
4
  import { ComponentListMagicService } from './component-list.magic.service';
@@ -16,6 +16,9 @@ export declare class SubformMagicService implements ISubformMagicService {
16
16
  protected pendingCommandsCollector: CommandsCollectorMagicService;
17
17
  protected router: Router;
18
18
  protected routerCommandsMagicService: RouterCommandsMagicService;
19
+ private componentListMagicService;
20
+ private loader;
21
+ private injector;
19
22
  subformsDict: {};
20
23
  routesDict: {
21
24
  [x: string]: string;
@@ -23,7 +26,7 @@ export declare class SubformMagicService implements ISubformMagicService {
23
26
  currentRouteDefinition: RouteDefinition;
24
27
  static currentCallerMgSubformServiceRef: any;
25
28
  static routerContainers: Array<RouterContainerMagicComponent>;
26
- constructor(task: TaskMagicService, activatedRoute: ActivatedRoute, componentList: ComponentListMagicService, pendingCommandsCollector: CommandsCollectorMagicService, router: Router, routerCommandsMagicService: RouterCommandsMagicService);
29
+ constructor(task: TaskMagicService, activatedRoute: ActivatedRoute, componentList: ComponentListMagicService, pendingCommandsCollector: CommandsCollectorMagicService, router: Router, routerCommandsMagicService: RouterCommandsMagicService, componentListMagicService: ComponentListMagicService, loader: NgModuleFactoryLoader, injector: Injector);
27
30
  mgGetComp(subformName: string): Component;
28
31
  mgGetParameters(subformName: string): any;
29
32
  deleteSubformComp(subformControlName: string, formName: string): void;
@@ -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
  }
@@ -23,6 +23,7 @@ export declare class MagicDirective implements OnInit, OnDestroy {
23
23
  private focusUnlistener;
24
24
  eventsOnlyVal: boolean;
25
25
  static opened: boolean;
26
+ static noOfAutoCompleteBoxesOpened: number;
26
27
  subscribeInteractiveCommands: Subscription;
27
28
  constructor(_task: TaskMagicService, element: ElementRef, renderer: Renderer2, vcRef: ViewContainerRef, magicRow: RowMagicDirective);
28
29
  get task(): TaskMagicService;
@@ -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;