@magic-xpa/engine 4.801.1 → 4.801.2
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 +2 -2
- package/fesm2015/magic-xpa-engine.mjs +2 -2
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +2 -2
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -26925,7 +26925,7 @@ class EventsManager {
|
|
|
26925
26925
|
val = Manager.GetCtrlVal(ctrl);
|
|
26926
26926
|
task.CurrentEditingControl = null;
|
|
26927
26927
|
if (!task.cancelWasRaised() &&
|
|
26928
|
-
(ctrl.Type !== MgControlType.CTRL_TYPE_BROWSER && (!isNullOrUndefined(ctrl._field) && ctrl._field.getType() === StorageAttribute.DATE || val !== null) && typeof val != 'undefined' &&
|
|
26928
|
+
(ctrl.Type !== MgControlType.CTRL_TYPE_BROWSER && (!isNullOrUndefined(ctrl._field) && (ctrl._field.getType() === StorageAttribute.DATE || ctrl._field.getType() == StorageAttribute.NUMERIC) || val !== null) && typeof val != 'undefined' &&
|
|
26929
26929
|
!await ctrl.validateAndSetValue(val, true))) {
|
|
26930
26930
|
this.setStopExecution(true);
|
|
26931
26931
|
return false;
|
|
@@ -29517,7 +29517,7 @@ class CommandsTable {
|
|
|
29517
29517
|
}
|
|
29518
29518
|
}
|
|
29519
29519
|
|
|
29520
|
-
let CurrentClientVersion = '4.801.
|
|
29520
|
+
let CurrentClientVersion = '4.801.2';
|
|
29521
29521
|
|
|
29522
29522
|
class ClientManager {
|
|
29523
29523
|
constructor() {
|