@magic-xpa/engine 4.1000.0-dev4100.106 → 4.1000.0-dev4100.107

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,12 +1,12 @@
1
1
  {
2
2
  "name": "@magic-xpa/engine",
3
- "version": "4.1000.0-dev4100.106",
3
+ "version": "4.1000.0-dev4100.107",
4
4
  "description": "magic engine package",
5
5
  "license": "SEE LICENSE IN EULA.pdf",
6
6
  "dependencies": {
7
- "@magic-xpa/mscorelib": "4.1000.0-dev4100.106",
8
- "@magic-xpa/utils": "4.1000.0-dev4100.106",
9
- "@magic-xpa/gui": "4.1000.0-dev4100.106",
7
+ "@magic-xpa/mscorelib": "4.1000.0-dev4100.107",
8
+ "@magic-xpa/utils": "4.1000.0-dev4100.107",
9
+ "@magic-xpa/gui": "4.1000.0-dev4100.107",
10
10
  "@angular/http": "^7.1.0",
11
11
  "tslib": "^2.3.0"
12
12
  },
@@ -2,8 +2,10 @@ import { IFlowMonitorQueue } from '@magic-xpa/gui';
2
2
  import { StringBuilder } from '@magic-xpa/mscorelib';
3
3
  import { XmlParser } from '@magic-xpa/utils';
4
4
  import { Operation } from '../rt/Operation';
5
+ import { Task } from '../tasks/Task';
5
6
  export declare class FlowMonitorQueue implements IFlowMonitorQueue {
6
7
  private static _instance;
8
+ private static UNPRINTABLE_STR_LOG;
7
9
  private static S_EVENT_STR1;
8
10
  private static S_EVENT_STR2;
9
11
  private static S_EVENT_PROPAGATED;
@@ -40,6 +42,7 @@ export declare class FlowMonitorQueue implements IFlowMonitorQueue {
40
42
  private _isRecompute;
41
43
  private _isTask;
42
44
  private _isTaskFlow;
45
+ private _isDataView;
43
46
  ShouldSerialize: boolean;
44
47
  static get Instance(): FlowMonitorQueue;
45
48
  addTaskCngMode(newTaskMode: string, taskInfo: string): void;
@@ -49,6 +52,11 @@ export declare class FlowMonitorQueue implements IFlowMonitorQueue {
49
52
  isEmpty(): boolean;
50
53
  enable(value: boolean): boolean;
51
54
  addTaskEvent(triggeredBy: string, state: number, taskInfo: string): void;
55
+ private appendVirtualsAndParameters;
56
+ addDataViewFlow(task: Task): void;
57
+ private getFieldData;
58
+ private PrepareDisplayString;
59
+ private padRight;
52
60
  addTaskFlowRec(id: number, state: number, taskInfo: string): void;
53
61
  addTaskFlowFld(id: number, fldName: string, state: number, taskInfo: string): void;
54
62
  addTaskFlowCtrl(id: number, ctrlName: string, state: number, taskInfo: string): void;