@magic-xpa/engine 4.900.0-dev490.48 → 4.900.0-dev490.49
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
|
@@ -27697,7 +27697,7 @@ class EventsManager {
|
|
|
27697
27697
|
val = Manager.GetCtrlVal(ctrl);
|
|
27698
27698
|
task.CurrentEditingControl = null;
|
|
27699
27699
|
if (!task.cancelWasRaised() &&
|
|
27700
|
-
(ctrl.Type !== MgControlType.CTRL_TYPE_BROWSER && (!isNullOrUndefined(ctrl._field) && ctrl._field.getType() === StorageAttribute.DATE || val !== null) && typeof val != 'undefined' &&
|
|
27700
|
+
(ctrl.Type !== MgControlType.CTRL_TYPE_BROWSER && (!isNullOrUndefined(ctrl._field) && (ctrl._field.getType() === StorageAttribute.DATE || ctrl._field.getType() == StorageAttribute.NUMERIC) || val !== null) && typeof val != 'undefined' &&
|
|
27701
27701
|
!(yield ctrl.validateAndSetValue(val, true)))) {
|
|
27702
27702
|
this.setStopExecution(true);
|
|
27703
27703
|
return false;
|
|
@@ -30370,7 +30370,7 @@ class CommandsTable {
|
|
|
30370
30370
|
}
|
|
30371
30371
|
}
|
|
30372
30372
|
|
|
30373
|
-
let CurrentClientVersion = '4.900.0-dev490.
|
|
30373
|
+
let CurrentClientVersion = '4.900.0-dev490.49';
|
|
30374
30374
|
|
|
30375
30375
|
class ClientManager {
|
|
30376
30376
|
constructor() {
|