@magic-xpa/engine 4.1100.0-dev4110.4 → 4.1100.0-dev4110.41
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/src/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/exp/ExpressionEvaluator.mjs +2 -6
- package/esm2020/src/gui/MgForm.mjs +3 -3
- package/esm2020/src/tasks/Task.mjs +1 -1
- package/fesm2015/magic-xpa-engine.mjs +8 -7
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +3 -7
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
- package/src/gui/MgForm.d.ts +1 -1
@@ -14165,10 +14165,6 @@ class ExpressionEvaluator extends GuiExpressionEvaluator {
|
|
14165
14165
|
let form = task.getForm();
|
14166
14166
|
let args = this.params2arguments(expVal, 0, expVal.length);
|
14167
14167
|
if (!isNullOrUndefined(args)) {
|
14168
|
-
if (task.isFirstRecordCycle()) {
|
14169
|
-
Commands.invoke();
|
14170
|
-
await Thread.Sleep(10);
|
14171
|
-
}
|
14172
14168
|
resVal.StrVal = Commands.addCallJS(form, form.UniqueName, methodName, args);
|
14173
14169
|
resVal.Attr = StorageAttribute.ALPHA;
|
14174
14170
|
}
|
@@ -20315,8 +20311,8 @@ class MgForm extends MgFormBase {
|
|
20315
20311
|
}
|
20316
20312
|
}
|
20317
20313
|
}
|
20318
|
-
createForm() {
|
20319
|
-
super.createForm();
|
20314
|
+
async createForm() {
|
20315
|
+
await super.createForm();
|
20320
20316
|
MgForm.CreatedForms.add(this);
|
20321
20317
|
}
|
20322
20318
|
UpdateStatusBar() {
|
@@ -29546,7 +29542,7 @@ class CommandsTable {
|
|
29546
29542
|
}
|
29547
29543
|
}
|
29548
29544
|
|
29549
|
-
let CurrentClientVersion = '4.1100.0-dev4110.
|
29545
|
+
let CurrentClientVersion = '4.1100.0-dev4110.41';
|
29550
29546
|
|
29551
29547
|
class ClientManager {
|
29552
29548
|
static get Instance() {
|