@magic-xpa/engine 4.1100.0-dev4110.7 → 4.1100.0-dev4110.70

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.
@@ -14441,10 +14441,6 @@ class ExpressionEvaluator extends GuiExpressionEvaluator {
14441
14441
  let form = task.getForm();
14442
14442
  let args = this.params2arguments(expVal, 0, expVal.length);
14443
14443
  if (!isNullOrUndefined(args)) {
14444
- if (task.isFirstRecordCycle()) {
14445
- Commands.invoke();
14446
- yield Thread.Sleep(10);
14447
- }
14448
14444
  resVal.StrVal = Commands.addCallJS(form, form.UniqueName, methodName, args);
14449
14445
  resVal.Attr = StorageAttribute.ALPHA;
14450
14446
  }
@@ -20829,8 +20825,13 @@ class MgForm extends MgFormBase {
20829
20825
  }
20830
20826
  }
20831
20827
  createForm() {
20832
- super.createForm();
20833
- MgForm.CreatedForms.add(this);
20828
+ const _super = Object.create(null, {
20829
+ createForm: { get: () => super.createForm }
20830
+ });
20831
+ return __awaiter(this, void 0, void 0, function* () {
20832
+ yield _super.createForm.call(this);
20833
+ MgForm.CreatedForms.add(this);
20834
+ });
20834
20835
  }
20835
20836
  UpdateStatusBar() {
20836
20837
  }
@@ -30362,7 +30363,7 @@ class CommandsTable {
30362
30363
  }
30363
30364
  }
30364
30365
 
30365
- let CurrentClientVersion = '4.1100.0-dev4110.7';
30366
+ let CurrentClientVersion = '4.1100.0-dev4110.70';
30366
30367
 
30367
30368
  class ClientManager {
30368
30369
  static get Instance() {