@magic-xpa/engine 4.800.1 → 4.800.2
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/bundles/magic-xpa-engine.umd.js +12 -17
- package/bundles/magic-xpa-engine.umd.js.map +1 -1
- package/bundles/magic-xpa-engine.umd.min.js +2 -3
- package/bundles/magic-xpa-engine.umd.min.js.map +1 -1
- package/esm2015/src/AccessHelper.js +1 -7
- package/esm2015/src/CurrentClientVersion.js +2 -2
- package/esm2015/src/data/DataView.js +3 -3
- package/esm2015/src/event/EventsManager.js +7 -8
- package/esm2015/src/event/IEventsManager.js +1 -1
- package/esm2015/src/rt/Operation.js +4 -4
- package/esm2015/src/util/Scrambler.js +3 -2
- package/fesm2015/magic-xpa-engine.js +13 -18
- package/fesm2015/magic-xpa-engine.js.map +1 -1
- package/package.json +4 -4
- package/src/AccessHelper.d.ts +0 -5
- package/src/event/EventsManager.d.ts +1 -2
- package/src/event/IEventsManager.d.ts +1 -2
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-xpa/engine",
|
|
3
|
-
"version": "4.800.
|
|
3
|
+
"version": "4.800.2",
|
|
4
4
|
"description": "magic engine package",
|
|
5
5
|
"license": "SEE LICENSE IN EULA.pdf",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@magic-xpa/mscorelib": "4.800.
|
|
8
|
-
"@magic-xpa/utils": "4.800.
|
|
9
|
-
"@magic-xpa/gui": "4.800.
|
|
7
|
+
"@magic-xpa/mscorelib": "4.800.2",
|
|
8
|
+
"@magic-xpa/utils": "4.800.2",
|
|
9
|
+
"@magic-xpa/gui": "4.800.2",
|
|
10
10
|
"@angular/http": "^7.1.0",
|
|
11
11
|
"tslib": "^2.0.0"
|
|
12
12
|
},
|
package/src/AccessHelper.d.ts
CHANGED
|
@@ -17,7 +17,6 @@ import { ExecutionStack } from '../rt/ExecutionStack';
|
|
|
17
17
|
import { ExecutionStackEntry } from '../rt/ExecutionStackEntry';
|
|
18
18
|
import { EventsAllowedType, IEventsManager } from './IEventsManager';
|
|
19
19
|
import { Subject } from "rxjs";
|
|
20
|
-
import { ClearEventsOnStopExecution } from '../AccessHelper';
|
|
21
20
|
export declare class EventsManager implements IEventsManager {
|
|
22
21
|
private static Timer_Timeout_Infinite;
|
|
23
22
|
private static REAL_ONLY;
|
|
@@ -154,7 +153,7 @@ export declare class EventsManager implements IEventsManager {
|
|
|
154
153
|
getCurrCtrl(): MgControl;
|
|
155
154
|
getCurrTask(): Task;
|
|
156
155
|
setStopExecution(stop: boolean): void;
|
|
157
|
-
setStopExecution(stop: boolean,
|
|
156
|
+
setStopExecution(stop: boolean, clearSrvrEvents: boolean): void;
|
|
158
157
|
private setStopExecution_0;
|
|
159
158
|
private setStopExecution_1;
|
|
160
159
|
setStopExecutionCtrl(ctrl: MgControl): void;
|
|
@@ -13,7 +13,6 @@ import { HandlersTable } from "../rt/HandlersTable";
|
|
|
13
13
|
import { MGData } from "../tasks/MGData";
|
|
14
14
|
import { TaskBase } from "../tasks/TaskBase";
|
|
15
15
|
import { Subject } from 'rxjs/internal/Subject';
|
|
16
|
-
import { ClearEventsOnStopExecution } from '../AccessHelper';
|
|
17
16
|
export declare enum EventsAllowedType {
|
|
18
17
|
NONE = 0,
|
|
19
18
|
NON_INTERACTIVE = 1,
|
|
@@ -39,7 +38,7 @@ export interface IEventsManager extends IGuiEventsManager {
|
|
|
39
38
|
GetStopExecutionFlag(): boolean;
|
|
40
39
|
getCurrCtrl(): MgControl;
|
|
41
40
|
setStopExecution(stop: boolean): void;
|
|
42
|
-
setStopExecution(stop: boolean,
|
|
41
|
+
setStopExecution(stop: boolean, clearSrvrEvents: boolean): void;
|
|
43
42
|
handleInternalEventWithTaskAndSubformRefresh(itask: ITask, eventCode: number, subformRefresh: boolean): Promise<void>;
|
|
44
43
|
reverseServerExecStack(): void;
|
|
45
44
|
pushServerExecStack(taskId: string, handlerId: string, operIdx: number): void;
|