@magic-xpa/engine 4.801.0-dev481.289 → 4.801.0-dev481.297
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/esm2020/src/ClientManager.mjs +2 -2
- package/esm2020/src/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/exp/ExpressionEvaluator.mjs +1 -9
- package/fesm2015/magic-xpa-engine.mjs +2 -10
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +2 -10
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
- package/src/exp/ExpressionEvaluator.d.ts +2 -3
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-xpa/engine",
|
|
3
|
-
"version": "4.801.0-dev481.
|
|
3
|
+
"version": "4.801.0-dev481.297",
|
|
4
4
|
"description": "magic engine package",
|
|
5
5
|
"license": "SEE LICENSE IN EULA.pdf",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@magic-xpa/mscorelib": "4.801.0-dev481.
|
|
8
|
-
"@magic-xpa/utils": "4.801.0-dev481.
|
|
9
|
-
"@magic-xpa/gui": "4.801.0-dev481.
|
|
7
|
+
"@magic-xpa/mscorelib": "4.801.0-dev481.297",
|
|
8
|
+
"@magic-xpa/utils": "4.801.0-dev481.297",
|
|
9
|
+
"@magic-xpa/gui": "4.801.0-dev481.297",
|
|
10
10
|
"@angular/http": "^7.1.0",
|
|
11
11
|
"tslib": "^2.3.0"
|
|
12
12
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { DisplayConvertor, ExpVal, GuiExpressionEvaluator, ITask, MgControlBase,
|
|
1
|
+
import { DisplayConvertor, ExpVal, GuiExpressionEvaluator, ITask, MgControlBase, NUM_TYPE } from '@magic-xpa/gui';
|
|
2
2
|
import { StorageAttribute } from '@magic-xpa/utils';
|
|
3
|
-
import { Exception
|
|
3
|
+
import { Exception } from '@magic-xpa/mscorelib';
|
|
4
4
|
import { Field } from '../data/Field';
|
|
5
5
|
import { TaskBase } from '../tasks/TaskBase';
|
|
6
6
|
export declare class ExpressionEvaluator extends GuiExpressionEvaluator {
|
|
@@ -168,7 +168,6 @@ export declare class ExpressionEvaluator extends GuiExpressionEvaluator {
|
|
|
168
168
|
private eval_op_projectdir;
|
|
169
169
|
private static IsValidVector;
|
|
170
170
|
private static GetAttributeChar;
|
|
171
|
-
GetTopMostForms(): List<MgFormBase>;
|
|
172
171
|
HandleControlGoto(ctrlTask: ITask, ctrl: MgControlBase, rowNo: number): boolean;
|
|
173
172
|
eval_op_set_title(resVal: ExpVal, title: ExpVal): void;
|
|
174
173
|
eval_op_is_row_editing(resVal: ExpVal, val1: ExpVal): void;
|