@magic-xpa/engine 4.801.0-dev481.299 → 4.801.0-dev481.303
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/event/EventsManager.mjs +3 -1
- package/fesm2015/magic-xpa-engine.mjs +3 -1
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +3 -1
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -27819,6 +27819,8 @@ class EventsManager {
|
|
|
27819
27819
|
handleFocus(ctrl, line, onClick) {
|
|
27820
27820
|
return __awaiter(this, void 0, void 0, function* () {
|
|
27821
27821
|
try {
|
|
27822
|
+
if (ctrl.isStatic())
|
|
27823
|
+
return;
|
|
27822
27824
|
if (ctrl !== this._lastFailedFocusedControl && ctrl.HasExpOrParentTaskField()) {
|
|
27823
27825
|
if (ctrl.isListBox() || ctrl.isCheckBox() || ctrl.isComboBox() || ctrl.isTextControl() || ctrl.isRadio() || ctrl.isTabControl()) {
|
|
27824
27826
|
Logger.Instance.WriteErrorToLog(NString.Format("Control either has expression or has parent task variable attached to it. Failed to park on control with name: {0}", ctrl.Name));
|
|
@@ -31089,7 +31091,7 @@ class CommandsTable {
|
|
|
31089
31091
|
}
|
|
31090
31092
|
}
|
|
31091
31093
|
|
|
31092
|
-
let CurrentClientVersion = '4.801.0-dev481.
|
|
31094
|
+
let CurrentClientVersion = '4.801.0-dev481.303';
|
|
31093
31095
|
|
|
31094
31096
|
class ClientManager {
|
|
31095
31097
|
constructor() {
|