@magic-xpa/engine 4.1000.0-dev4100.9 → 4.1000.0-dev4100.90
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/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/commands/ClientToServer/CommandFactory.mjs +10 -2
- package/esm2020/src/exp/ExpressionDict.mjs +8 -8
- package/esm2020/src/exp/ExpressionEvaluator.mjs +24 -176
- package/esm2020/src/gui/MgForm.mjs +6 -2
- package/fesm2015/magic-xpa-engine.mjs +103 -264
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +98 -237
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
- package/src/commands/ClientToServer/CommandFactory.d.ts +3 -0
- package/src/exp/ExpressionEvaluator.d.ts +1 -9
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@magic-xpa/engine",
|
3
|
-
"version": "4.1000.0-dev4100.
|
3
|
+
"version": "4.1000.0-dev4100.90",
|
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.
|
8
|
-
"@magic-xpa/utils": "4.1000.0-dev4100.
|
9
|
-
"@magic-xpa/gui": "4.1000.0-dev4100.
|
7
|
+
"@magic-xpa/mscorelib": "4.1000.0-dev4100.90",
|
8
|
+
"@magic-xpa/utils": "4.1000.0-dev4100.90",
|
9
|
+
"@magic-xpa/gui": "4.1000.0-dev4100.90",
|
10
10
|
"@angular/http": "^7.1.0",
|
11
11
|
"tslib": "^2.3.0"
|
12
12
|
},
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { MgControlBase } from '@magic-xpa/gui';
|
1
2
|
import { StorageAttribute } from '@magic-xpa/utils';
|
2
3
|
import { EventCommand } from './EventCommand';
|
3
4
|
import { RollbackEventCommand, RollbackEventCommand_RollbackType } from './RollbackEventCommand';
|
@@ -29,10 +30,12 @@ import { GlobalParamsQueryCommand } from './GlobalParamsQueryCommand';
|
|
29
30
|
import { IniputForceWriteCommand } from './IniputForceWriteCommand';
|
30
31
|
import { ContextTerminationEventCommand } from './ContextTerminationEventCommand';
|
31
32
|
import { ContextTimeoutResetCommand } from './ContextTimeoutResetCommand';
|
33
|
+
import { ControlItemsRefreshCommand } from './ControlItemsRefreshCommand';
|
32
34
|
export declare class CommandFactory {
|
33
35
|
static CreateEventCommand(taskTag: string, magicEvent: number): EventCommand;
|
34
36
|
static CreateRollbackEventCommand(taskTag: string, rollbackType: RollbackEventCommand_RollbackType): RollbackEventCommand;
|
35
37
|
static CreateDataViewCommand(taskId: string, commandType: DataViewCommandType): DataviewCommand;
|
38
|
+
static CreateControlItemsRefreshCommand(taskId: string, control: MgControlBase): ControlItemsRefreshCommand;
|
36
39
|
static CreateAddUserRangeDataviewCommand(taskId: string, userRange: UserRange): AddUserRangeDataviewCommand;
|
37
40
|
static CreateAddUserSortDataviewCommand(taskId: string, sort: Sort): AddUserSortDataViewCommand;
|
38
41
|
static CreateAddUserLocateDataviewCommand(taskId: string, userRange: UserRange): AddUserLocateDataViewCommand;
|
@@ -93,6 +93,7 @@ export declare class ExpressionEvaluator extends GuiExpressionEvaluator {
|
|
93
93
|
private eval_op_varinp;
|
94
94
|
private eval_op_varname;
|
95
95
|
private eval_op_VarDisplayName;
|
96
|
+
private eval_op_controlItemRefresh;
|
96
97
|
private eval_op_VarControlID;
|
97
98
|
private eval_op_ControlItemsList;
|
98
99
|
private eval_op_ControlDisplayList;
|
@@ -111,7 +112,6 @@ export declare class ExpressionEvaluator extends GuiExpressionEvaluator {
|
|
111
112
|
private eval_op_stat;
|
112
113
|
private eval_op_subformExecMode;
|
113
114
|
private eval_op_varset;
|
114
|
-
private eval_op_rollback;
|
115
115
|
private eval_op_like;
|
116
116
|
private static cutArray;
|
117
117
|
private eval_op_repstr;
|
@@ -145,15 +145,7 @@ export declare class ExpressionEvaluator extends GuiExpressionEvaluator {
|
|
145
145
|
private eval_op_dbviewrowidx;
|
146
146
|
private eval_op_MlsTrans;
|
147
147
|
private eval_op_StrBuild;
|
148
|
-
private eval_op_range_add;
|
149
|
-
private eval_op_range_reset;
|
150
|
-
private eval_op_locate_add;
|
151
|
-
private eval_op_locate_reset;
|
152
|
-
private eval_op_sort_add;
|
153
|
-
private eval_op_sort_reset;
|
154
148
|
private eval_op_tsk_instance;
|
155
|
-
private add_sort;
|
156
|
-
private add_rt_ranges;
|
157
149
|
private eval_op_getParam;
|
158
150
|
private eval_op_setParam;
|
159
151
|
private eval_op_iniput;
|