@magic-xpa/engine 4.901.0-dev491.318 → 4.901.0-dev491.321
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/gui/MgForm.mjs +3 -3
- package/fesm2015/magic-xpa-engine.mjs +8 -3
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +3 -3
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
- package/src/gui/MgForm.d.ts +1 -1
|
@@ -20857,8 +20857,13 @@ class MgForm extends MgFormBase {
|
|
|
20857
20857
|
}
|
|
20858
20858
|
}
|
|
20859
20859
|
createForm() {
|
|
20860
|
-
|
|
20861
|
-
|
|
20860
|
+
const _super = Object.create(null, {
|
|
20861
|
+
createForm: { get: () => super.createForm }
|
|
20862
|
+
});
|
|
20863
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
20864
|
+
yield _super.createForm.call(this);
|
|
20865
|
+
MgForm.CreatedForms.add(this);
|
|
20866
|
+
});
|
|
20862
20867
|
}
|
|
20863
20868
|
UpdateStatusBar() {
|
|
20864
20869
|
}
|
|
@@ -30376,7 +30381,7 @@ class CommandsTable {
|
|
|
30376
30381
|
}
|
|
30377
30382
|
}
|
|
30378
30383
|
|
|
30379
|
-
let CurrentClientVersion = '4.901.0-dev491.
|
|
30384
|
+
let CurrentClientVersion = '4.901.0-dev491.321';
|
|
30380
30385
|
|
|
30381
30386
|
class ClientManager {
|
|
30382
30387
|
constructor() {
|