@magic-xpa/gui 4.1300.0-dev4130.2 → 4.1300.0-dev4130.200
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/fesm2022/magic-xpa-gui.mjs +18 -0
- package/fesm2022/magic-xpa-gui.mjs.map +1 -1
- package/package.json +6 -6
- package/types/magic-xpa-gui.d.ts +3063 -0
- package/index.d.ts +0 -73
- package/src/Commands.d.ts +0 -40
- package/src/Events.d.ts +0 -157
- package/src/EventsProcessor.d.ts +0 -13
- package/src/FocusManager.d.ts +0 -8
- package/src/GuiConstants.d.ts +0 -65
- package/src/GuiEnums.d.ts +0 -286
- package/src/GuiEnvironment.d.ts +0 -4
- package/src/IFlowMonitorQueue.d.ts +0 -3
- package/src/Manager.d.ts +0 -26
- package/src/UIBridge.d.ts +0 -16
- package/src/env/IEnvironment.d.ts +0 -31
- package/src/gui/ControlBase.d.ts +0 -4
- package/src/gui/GuiMgControl.d.ts +0 -39
- package/src/gui/GuiMgForm.d.ts +0 -3
- package/src/gui/KeyboardItem.d.ts +0 -18
- package/src/gui/LastFocusedVal.d.ts +0 -7
- package/src/gui/MgValue.d.ts +0 -15
- package/src/gui/PropParentInterface.d.ts +0 -13
- package/src/gui/low/DialogHandler.d.ts +0 -4
- package/src/gui/low/GuiCommand.d.ts +0 -37
- package/src/gui/low/GuiCommandQueue.d.ts +0 -13
- package/src/gui/low/GuiInteractive.d.ts +0 -55
- package/src/gui/low/Style.d.ts +0 -19
- package/src/management/RuntimeContextBase.d.ts +0 -23
- package/src/management/data/BlobType.d.ts +0 -29
- package/src/management/data/DcValues.d.ts +0 -33
- package/src/management/data/DcValuesBuilderBase.d.ts +0 -17
- package/src/management/data/FieldDef.d.ts +0 -53
- package/src/management/data/FieldsTable.d.ts +0 -16
- package/src/management/data/GuiDataViewBase.d.ts +0 -27
- package/src/management/data/GuiFieldBase.d.ts +0 -17
- package/src/management/data/IRecord.d.ts +0 -12
- package/src/management/data/IReferencedObject.d.ts +0 -5
- package/src/management/data/NUM_TYPE.d.ts +0 -103
- package/src/management/data/ObjectReferenceBase.d.ts +0 -16
- package/src/management/data/ObjectReferencesCollection.d.ts +0 -10
- package/src/management/data/RecordUtils.d.ts +0 -21
- package/src/management/data/VectorType.d.ts +0 -52
- package/src/management/data/VectorTypeBase.d.ts +0 -8
- package/src/management/events/IActionManager.d.ts +0 -7
- package/src/management/events/IGuiEventsManager.d.ts +0 -20
- package/src/management/exp/ExpressionInterface.d.ts +0 -243
- package/src/management/exp/GuiExpressionEvaluator.d.ts +0 -47
- package/src/management/gui/ControlTable.d.ts +0 -28
- package/src/management/gui/DisplayConvertor.d.ts +0 -103
- package/src/management/gui/FieldValidator.d.ts +0 -35
- package/src/management/gui/GuiControlPropertyAdapter.d.ts +0 -40
- package/src/management/gui/GuiFormPropertyAdapter.d.ts +0 -17
- package/src/management/gui/HebrewDate.d.ts +0 -46
- package/src/management/gui/Helps.d.ts +0 -51
- package/src/management/gui/MgControlBase.d.ts +0 -225
- package/src/management/gui/MgFormBase.d.ts +0 -160
- package/src/management/gui/PIC.d.ts +0 -108
- package/src/management/gui/PropDefaults.d.ts +0 -7
- package/src/management/gui/PropInterface.d.ts +0 -245
- package/src/management/gui/PropTable.d.ts +0 -33
- package/src/management/gui/Property.d.ts +0 -121
- package/src/management/gui/ValidationDetails.d.ts +0 -52
- package/src/management/gui/ValidationDetailsBase.d.ts +0 -14
- package/src/management/gui/WrongFormatException.d.ts +0 -9
- package/src/management/tasks/GuiDataCollection.d.ts +0 -4
- package/src/management/tasks/GuiTaskBase.d.ts +0 -150
- package/src/management/tasks/IMGDataTable.d.ts +0 -10
- package/src/management/tasks/ITask.d.ts +0 -6
- package/src/management/tasks/MgTimer.d.ts +0 -8
- package/src/management/tasks/TaskDefinitionId.d.ts +0 -16
- package/src/management/tasks/TaskDefinitionIdTableSaxHandler.d.ts +0 -7
- package/src/util/MemoryUtil.d.ts +0 -6
- package/src/util/ObjectReference.d.ts +0 -9
- package/src/util/UsernamePasswordCredentials.d.ts +0 -18
|
@@ -13673,6 +13673,14 @@ class PropTable {
|
|
|
13673
13673
|
let prop = null;
|
|
13674
13674
|
if (this._parent != null)
|
|
13675
13675
|
prop = this._parent.getProp(propId);
|
|
13676
|
+
// Server recompute payloads reference the subform program task
|
|
13677
|
+
// property even when it was not materialized in the client control
|
|
13678
|
+
// property table. Since this property is excluded from refresh,
|
|
13679
|
+
// ignore its absence during recompute parsing.
|
|
13680
|
+
if (prop == null && propId === PropInterface.PROP_TYPE_PRGTSK_NUM) {
|
|
13681
|
+
parser.setCurrIndex(endContext + XMLConstants.TAG_TERM.length);
|
|
13682
|
+
return true;
|
|
13683
|
+
}
|
|
13676
13684
|
if (prop == null)
|
|
13677
13685
|
Events.WriteExceptionToLog(NString.Format("in PropTable.fillExistInnerObjects() no property with id={0}", strPropId));
|
|
13678
13686
|
else
|
|
@@ -16460,6 +16468,12 @@ class MgControlBase extends GuiControlPropertyAdapter {
|
|
|
16460
16468
|
}
|
|
16461
16469
|
else {
|
|
16462
16470
|
result = temp.get_Item(0);
|
|
16471
|
+
// for multiple selection list, it is possible that nothing is selected.
|
|
16472
|
+
// In this case, result can be null.
|
|
16473
|
+
// But, the client engine doesn't expect null to be returned as the selected value from the UI.
|
|
16474
|
+
// So, return blank instead.
|
|
16475
|
+
if (this.IsMultipleSelectionListBox() && result == null)
|
|
16476
|
+
result = "";
|
|
16463
16477
|
}
|
|
16464
16478
|
}
|
|
16465
16479
|
return result;
|
|
@@ -20126,6 +20140,10 @@ class ExpressionInterface {
|
|
|
20126
20140
|
static EXP_OP_DELETE_COOKIE = 703;
|
|
20127
20141
|
static EXP_OP_ROUTEGET = 705;
|
|
20128
20142
|
static EXP_OP_HASH = 716;
|
|
20143
|
+
static EXP_OP_SUBSCRIBE = 719;
|
|
20144
|
+
static EXP_OP_UNSUBSCRIBE = 720;
|
|
20145
|
+
static EXP_OP_LOCALTOUTC = 723;
|
|
20146
|
+
static EXP_OP_UTCTOLOCAL = 724;
|
|
20129
20147
|
constructor() {
|
|
20130
20148
|
}
|
|
20131
20149
|
}
|