@magic-xpa/gui 4.1100.0-dev4110.98 → 4.1100.0
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/README.md +7 -7
- package/{esm2020 → esm2022}/index.mjs +71 -71
- package/{esm2020 → esm2022}/magic-xpa-gui.mjs +1 -1
- package/esm2022/src/Commands.mjs +184 -0
- package/esm2022/src/Events.mjs +425 -0
- package/{esm2020 → esm2022}/src/EventsProcessor.mjs +66 -66
- package/{esm2020 → esm2022}/src/FocusManager.mjs +33 -33
- package/esm2022/src/GuiConstants.mjs +68 -0
- package/{esm2020 → esm2022}/src/GuiEnums.mjs +301 -300
- package/esm2022/src/GuiEnvironment.mjs +4 -0
- package/{esm2020 → esm2022}/src/IFlowMonitorQueue.mjs +1 -1
- package/esm2022/src/Manager.mjs +91 -0
- package/esm2022/src/UIBridge.mjs +33 -0
- package/{esm2020 → esm2022}/src/env/IEnvironment.mjs +1 -1
- package/{esm2020 → esm2022}/src/gui/ControlBase.mjs +2 -2
- package/esm2022/src/gui/GuiMgControl.mjs +123 -0
- package/{esm2020 → esm2022}/src/gui/GuiMgForm.mjs +3 -3
- package/esm2022/src/gui/KeyboardItem.mjs +135 -0
- package/esm2022/src/gui/LastFocusedVal.mjs +11 -0
- package/esm2022/src/gui/MgValue.mjs +16 -0
- package/{esm2020 → esm2022}/src/gui/PropParentInterface.mjs +1 -1
- package/{esm2020 → esm2022}/src/gui/low/DialogHandler.mjs +6 -6
- package/esm2022/src/gui/low/GuiCommand.mjs +68 -0
- package/esm2022/src/gui/low/GuiCommandQueue.mjs +35 -0
- package/esm2022/src/gui/low/GuiInteractive.mjs +178 -0
- package/esm2022/src/gui/low/Style.mjs +20 -0
- package/esm2022/src/management/RuntimeContextBase.mjs +42 -0
- package/esm2022/src/management/data/BlobType.mjs +281 -0
- package/esm2022/src/management/data/DcValues.mjs +214 -0
- package/{esm2020 → esm2022}/src/management/data/DcValuesBuilderBase.mjs +95 -95
- package/esm2022/src/management/data/FieldDef.mjs +331 -0
- package/{esm2020 → esm2022}/src/management/data/FieldsTable.mjs +54 -54
- package/esm2022/src/management/data/GuiDataViewBase.mjs +88 -0
- package/esm2022/src/management/data/GuiFieldBase.mjs +82 -0
- package/{esm2020 → esm2022}/src/management/data/IRecord.mjs +1 -1
- package/{esm2020 → esm2022}/src/management/data/IReferencedObject.mjs +1 -1
- package/esm2022/src/management/data/NUM_TYPE.mjs +1739 -0
- package/esm2022/src/management/data/ObjectReferenceBase.mjs +48 -0
- package/esm2022/src/management/data/ObjectReferencesCollection.mjs +27 -0
- package/{esm2020 → esm2022}/src/management/data/RecordUtils.mjs +360 -360
- package/esm2022/src/management/data/VectorType.mjs +612 -0
- package/esm2022/src/management/data/VectorTypeBase.mjs +88 -0
- package/{esm2020 → esm2022}/src/management/events/IActionManager.mjs +1 -1
- package/{esm2020 → esm2022}/src/management/events/IGuiEventsManager.mjs +1 -1
- package/esm2022/src/management/exp/ExpressionInterface.mjs +244 -0
- package/esm2022/src/management/exp/GuiExpressionEvaluator.mjs +305 -0
- package/esm2022/src/management/gui/ControlTable.mjs +118 -0
- package/esm2022/src/management/gui/DisplayConvertor.mjs +1649 -0
- package/esm2022/src/management/gui/FieldValidator.mjs +711 -0
- package/esm2022/src/management/gui/GuiControlPropertyAdapter.mjs +24 -0
- package/{esm2020 → esm2022}/src/management/gui/GuiFormPropertyAdapter.mjs +10 -10
- package/esm2022/src/management/gui/HebrewDate.mjs +278 -0
- package/esm2022/src/management/gui/Helps.mjs +237 -0
- package/esm2022/src/management/gui/MgControlBase.mjs +1869 -0
- package/esm2022/src/management/gui/MgFormBase.mjs +741 -0
- package/esm2022/src/management/gui/PIC.mjs +1185 -0
- package/{esm2020 → esm2022}/src/management/gui/PropDefaults.mjs +229 -229
- package/{esm2020 → esm2022}/src/management/gui/PropInterface.mjs +246 -245
- package/esm2022/src/management/gui/PropTable.mjs +221 -0
- package/esm2022/src/management/gui/Property.mjs +1362 -0
- package/esm2022/src/management/gui/ValidationDetails.mjs +248 -0
- package/{esm2020 → esm2022}/src/management/gui/ValidationDetailsBase.mjs +93 -93
- package/{esm2020 → esm2022}/src/management/gui/WrongFormatException.mjs +29 -29
- package/esm2022/src/management/tasks/GuiDataCollection.mjs +4 -0
- package/esm2022/src/management/tasks/GuiTaskBase.mjs +511 -0
- package/{esm2020 → esm2022}/src/management/tasks/IMGDataTable.mjs +1 -1
- package/{esm2020 → esm2022}/src/management/tasks/ITask.mjs +1 -1
- package/esm2022/src/management/tasks/MgTimer.mjs +21 -0
- package/esm2022/src/management/tasks/TaskDefinitionId.mjs +54 -0
- package/{esm2020 → esm2022}/src/management/tasks/TaskDefinitionIdTableSaxHandler.mjs +41 -41
- package/{esm2020 → esm2022}/src/util/MemoryUtil.mjs +34 -34
- package/esm2022/src/util/ObjectReference.mjs +36 -0
- package/esm2022/src/util/UsernamePasswordCredentials.mjs +52 -0
- package/{fesm2020 → fesm2022}/magic-xpa-gui.mjs +16086 -16095
- package/fesm2022/magic-xpa-gui.mjs.map +1 -0
- package/index.d.ts +70 -70
- package/package.json +6 -12
- package/src/Commands.d.ts +40 -40
- package/src/Events.d.ts +157 -155
- package/src/EventsProcessor.d.ts +13 -13
- package/src/FocusManager.d.ts +8 -8
- package/src/GuiConstants.d.ts +65 -65
- package/src/GuiEnums.d.ts +283 -282
- package/src/GuiEnvironment.d.ts +4 -4
- package/src/IFlowMonitorQueue.d.ts +3 -3
- package/src/Manager.d.ts +26 -26
- package/src/UIBridge.d.ts +16 -16
- package/src/env/IEnvironment.d.ts +31 -31
- package/src/gui/ControlBase.d.ts +4 -4
- package/src/gui/GuiMgControl.d.ts +38 -38
- package/src/gui/GuiMgForm.d.ts +3 -3
- package/src/gui/KeyboardItem.d.ts +18 -18
- package/src/gui/LastFocusedVal.d.ts +7 -7
- package/src/gui/MgValue.d.ts +15 -15
- package/src/gui/PropParentInterface.d.ts +13 -13
- package/src/gui/low/DialogHandler.d.ts +4 -4
- package/src/gui/low/GuiCommand.d.ts +37 -37
- package/src/gui/low/GuiCommandQueue.d.ts +13 -13
- package/src/gui/low/GuiInteractive.d.ts +55 -55
- package/src/gui/low/Style.d.ts +19 -19
- package/src/management/RuntimeContextBase.d.ts +23 -23
- package/src/management/data/BlobType.d.ts +29 -29
- package/src/management/data/DcValues.d.ts +33 -33
- package/src/management/data/DcValuesBuilderBase.d.ts +17 -17
- package/src/management/data/FieldDef.d.ts +53 -53
- package/src/management/data/FieldsTable.d.ts +16 -16
- package/src/management/data/GuiDataViewBase.d.ts +27 -27
- package/src/management/data/GuiFieldBase.d.ts +17 -17
- package/src/management/data/IRecord.d.ts +12 -12
- package/src/management/data/IReferencedObject.d.ts +5 -5
- package/src/management/data/NUM_TYPE.d.ts +103 -103
- package/src/management/data/ObjectReferenceBase.d.ts +16 -16
- package/src/management/data/ObjectReferencesCollection.d.ts +10 -10
- package/src/management/data/RecordUtils.d.ts +21 -21
- package/src/management/data/VectorType.d.ts +52 -52
- package/src/management/data/VectorTypeBase.d.ts +8 -8
- package/src/management/events/IActionManager.d.ts +7 -7
- package/src/management/events/IGuiEventsManager.d.ts +20 -20
- package/src/management/exp/ExpressionInterface.d.ts +242 -242
- package/src/management/exp/GuiExpressionEvaluator.d.ts +47 -47
- package/src/management/gui/ControlTable.d.ts +28 -28
- package/src/management/gui/DisplayConvertor.d.ts +103 -103
- package/src/management/gui/FieldValidator.d.ts +35 -35
- package/src/management/gui/GuiControlPropertyAdapter.d.ts +40 -40
- package/src/management/gui/GuiFormPropertyAdapter.d.ts +17 -17
- package/src/management/gui/HebrewDate.d.ts +46 -46
- package/src/management/gui/Helps.d.ts +51 -51
- package/src/management/gui/MgControlBase.d.ts +225 -223
- package/src/management/gui/MgFormBase.d.ts +160 -160
- package/src/management/gui/PIC.d.ts +108 -108
- package/src/management/gui/PropDefaults.d.ts +7 -7
- package/src/management/gui/PropInterface.d.ts +244 -243
- package/src/management/gui/PropTable.d.ts +33 -33
- package/src/management/gui/Property.d.ts +121 -121
- package/src/management/gui/ValidationDetails.d.ts +52 -52
- package/src/management/gui/ValidationDetailsBase.d.ts +14 -14
- package/src/management/gui/WrongFormatException.d.ts +9 -9
- package/src/management/tasks/GuiDataCollection.d.ts +4 -4
- package/src/management/tasks/GuiTaskBase.d.ts +150 -150
- package/src/management/tasks/IMGDataTable.d.ts +10 -10
- package/src/management/tasks/ITask.d.ts +6 -6
- package/src/management/tasks/MgTimer.d.ts +8 -8
- package/src/management/tasks/TaskDefinitionId.d.ts +16 -16
- package/src/management/tasks/TaskDefinitionIdTableSaxHandler.d.ts +7 -7
- package/src/util/MemoryUtil.d.ts +6 -6
- package/src/util/ObjectReference.d.ts +9 -9
- package/src/util/UsernamePasswordCredentials.d.ts +18 -18
- package/esm2020/src/Commands.mjs +0 -184
- package/esm2020/src/Events.mjs +0 -420
- package/esm2020/src/GuiConstants.mjs +0 -68
- package/esm2020/src/GuiEnvironment.mjs +0 -4
- package/esm2020/src/Manager.mjs +0 -91
- package/esm2020/src/UIBridge.mjs +0 -32
- package/esm2020/src/gui/GuiMgControl.mjs +0 -125
- package/esm2020/src/gui/KeyboardItem.mjs +0 -135
- package/esm2020/src/gui/LastFocusedVal.mjs +0 -11
- package/esm2020/src/gui/MgValue.mjs +0 -16
- package/esm2020/src/gui/low/GuiCommand.mjs +0 -66
- package/esm2020/src/gui/low/GuiCommandQueue.mjs +0 -35
- package/esm2020/src/gui/low/GuiInteractive.mjs +0 -176
- package/esm2020/src/gui/low/Style.mjs +0 -20
- package/esm2020/src/management/RuntimeContextBase.mjs +0 -43
- package/esm2020/src/management/data/BlobType.mjs +0 -281
- package/esm2020/src/management/data/DcValues.mjs +0 -214
- package/esm2020/src/management/data/FieldDef.mjs +0 -331
- package/esm2020/src/management/data/GuiDataViewBase.mjs +0 -90
- package/esm2020/src/management/data/GuiFieldBase.mjs +0 -82
- package/esm2020/src/management/data/NUM_TYPE.mjs +0 -1741
- package/esm2020/src/management/data/ObjectReferenceBase.mjs +0 -48
- package/esm2020/src/management/data/ObjectReferencesCollection.mjs +0 -29
- package/esm2020/src/management/data/VectorType.mjs +0 -612
- package/esm2020/src/management/data/VectorTypeBase.mjs +0 -88
- package/esm2020/src/management/exp/ExpressionInterface.mjs +0 -244
- package/esm2020/src/management/exp/GuiExpressionEvaluator.mjs +0 -307
- package/esm2020/src/management/gui/ControlTable.mjs +0 -118
- package/esm2020/src/management/gui/DisplayConvertor.mjs +0 -1679
- package/esm2020/src/management/gui/FieldValidator.mjs +0 -711
- package/esm2020/src/management/gui/GuiControlPropertyAdapter.mjs +0 -22
- package/esm2020/src/management/gui/HebrewDate.mjs +0 -278
- package/esm2020/src/management/gui/Helps.mjs +0 -237
- package/esm2020/src/management/gui/MgControlBase.mjs +0 -1858
- package/esm2020/src/management/gui/MgFormBase.mjs +0 -741
- package/esm2020/src/management/gui/PIC.mjs +0 -1185
- package/esm2020/src/management/gui/PropTable.mjs +0 -221
- package/esm2020/src/management/gui/Property.mjs +0 -1356
- package/esm2020/src/management/gui/ValidationDetails.mjs +0 -248
- package/esm2020/src/management/tasks/GuiDataCollection.mjs +0 -4
- package/esm2020/src/management/tasks/GuiTaskBase.mjs +0 -510
- package/esm2020/src/management/tasks/MgTimer.mjs +0 -21
- package/esm2020/src/management/tasks/TaskDefinitionId.mjs +0 -54
- package/esm2020/src/util/ObjectReference.mjs +0 -36
- package/esm2020/src/util/UsernamePasswordCredentials.mjs +0 -52
- package/fesm2015/magic-xpa-gui.mjs +0 -16391
- package/fesm2015/magic-xpa-gui.mjs.map +0 -1
- package/fesm2020/magic-xpa-gui.mjs.map +0 -1
|
@@ -1,121 +1,121 @@
|
|
|
1
|
-
import { UtilImeJpn, XmlParser } from '@magic-xpa/utils';
|
|
2
|
-
import { PropParentInterface } from '../../gui/PropParentInterface';
|
|
3
|
-
import { TaskDefinitionId } from '../tasks/TaskDefinitionId';
|
|
4
|
-
import { GuiTaskBase } from '../tasks/GuiTaskBase';
|
|
5
|
-
export declare class CustomValidatorProp {
|
|
6
|
-
_exp: number;
|
|
7
|
-
_errorMessageExp: number;
|
|
8
|
-
_errorMessage: string;
|
|
9
|
-
}
|
|
10
|
-
export declare class CustomValidator {
|
|
11
|
-
_valid: boolean;
|
|
12
|
-
_errorMessage: string;
|
|
13
|
-
constructor(valid: boolean, errMessage: string);
|
|
14
|
-
isValid(): boolean;
|
|
15
|
-
getErrMessage(): string;
|
|
16
|
-
}
|
|
17
|
-
export declare class Property {
|
|
18
|
-
private _id;
|
|
19
|
-
private _dataType;
|
|
20
|
-
private _val;
|
|
21
|
-
private _pic;
|
|
22
|
-
private _expId;
|
|
23
|
-
private _parentObj;
|
|
24
|
-
private _parentType;
|
|
25
|
-
private _prevValues;
|
|
26
|
-
private _orgValue;
|
|
27
|
-
private static _numericPropertyPic;
|
|
28
|
-
private _taskDefinitionId;
|
|
29
|
-
StudioValue: string;
|
|
30
|
-
private _expAlreadyComputedOnce;
|
|
31
|
-
private customProperties;
|
|
32
|
-
private customPropertiesValues;
|
|
33
|
-
private customValidatorProperties;
|
|
34
|
-
private customValidatorValues;
|
|
35
|
-
static UtilImeJpn: UtilImeJpn;
|
|
36
|
-
get TaskDefinitionId(): TaskDefinitionId;
|
|
37
|
-
constructor();
|
|
38
|
-
constructor(cId: number, cParentObj: PropParentInterface, parType: string);
|
|
39
|
-
constructor(cId: number, cParentObj: PropParentInterface, parType: string, val: string);
|
|
40
|
-
private constructor_0;
|
|
41
|
-
private constructor_1;
|
|
42
|
-
private constructor_2;
|
|
43
|
-
private setId;
|
|
44
|
-
fillData(parentRef: PropParentInterface, parType: string, parser: XmlParser): void;
|
|
45
|
-
private InitInnerObjects;
|
|
46
|
-
private initElements;
|
|
47
|
-
private InitCustomProperties;
|
|
48
|
-
private InitCustomValidator;
|
|
49
|
-
private InitCustomValidationProperties;
|
|
50
|
-
private SetFirstValueForCustomValidationProperties;
|
|
51
|
-
private GetArrayValuesForCustomValidationProperties;
|
|
52
|
-
private GetArrayValuesForCustomProperties;
|
|
53
|
-
private SetFirstValueForCustomProperties;
|
|
54
|
-
private InitTaskDefinitionId;
|
|
55
|
-
SetTaskDefinitionId(taskDefinitionId: TaskDefinitionId): void;
|
|
56
|
-
private setDataType;
|
|
57
|
-
private setControlAttributes;
|
|
58
|
-
getID(): number;
|
|
59
|
-
setValue(mgVal: string): void;
|
|
60
|
-
SetValue(val: number): void;
|
|
61
|
-
setOrgValue(): void;
|
|
62
|
-
GetTaskByParentObject(): GuiTaskBase;
|
|
63
|
-
RefreshDisplay(forceRefresh: boolean): Promise<void>;
|
|
64
|
-
private ShouldSkipRefreshControl;
|
|
65
|
-
private ShouldSkipRefreshForm;
|
|
66
|
-
private ShouldSkipRefreshTask;
|
|
67
|
-
private ShouldSkipRefresh;
|
|
68
|
-
private RefreshDisplayWithCurrentLine;
|
|
69
|
-
SkipWhenNoExpression(): boolean;
|
|
70
|
-
RefreshDisplayWithCurrLineAndCheckSkipRefresh(forceRefresh: boolean, currLine: number, checkSkipRefresh: boolean): Promise<void>;
|
|
71
|
-
private ShouldBeComputedOnce;
|
|
72
|
-
private IsComputedOnceOnServer;
|
|
73
|
-
private ComputeValue;
|
|
74
|
-
private updateResult;
|
|
75
|
-
private static updateTaskModeResult;
|
|
76
|
-
getValue(): Promise<string>;
|
|
77
|
-
getValueInt(): Promise<number>;
|
|
78
|
-
GetComputedValueInteger(): number;
|
|
79
|
-
getValueBoolean(): Promise<boolean>;
|
|
80
|
-
GetComputedValue(): string;
|
|
81
|
-
GetComputedValueBoolean(): boolean;
|
|
82
|
-
getPrevValue(line: number): string;
|
|
83
|
-
isExpression(): boolean;
|
|
84
|
-
GetExpressionId(): number;
|
|
85
|
-
private onImageFileName;
|
|
86
|
-
private onEnable;
|
|
87
|
-
private onVisible;
|
|
88
|
-
private OnControlName;
|
|
89
|
-
private onHint;
|
|
90
|
-
private onFormName;
|
|
91
|
-
private addCommandTypeText;
|
|
92
|
-
private onText;
|
|
93
|
-
private onModifiable;
|
|
94
|
-
private onTooltip;
|
|
95
|
-
private onDisplayList;
|
|
96
|
-
private onVisibleLayerList;
|
|
97
|
-
private onFormat;
|
|
98
|
-
private onLabel;
|
|
99
|
-
private getObjectByParentObj;
|
|
100
|
-
static isRepeatableInTable(): boolean;
|
|
101
|
-
private getLine;
|
|
102
|
-
getOrgValue(): string;
|
|
103
|
-
updatePrevValueArray(newSize: number): void;
|
|
104
|
-
clearPrevValueArray(): void;
|
|
105
|
-
ResetPrevValueArray(): void;
|
|
106
|
-
private setPrevArraySize;
|
|
107
|
-
private onPassword;
|
|
108
|
-
private computeCustomPropertiesValues;
|
|
109
|
-
private computeCustomValidators;
|
|
110
|
-
private onCustomProperties;
|
|
111
|
-
private onCustomValidators;
|
|
112
|
-
private onBindingLevel;
|
|
113
|
-
private onAutoCompleteMode;
|
|
114
|
-
private GetRetrunValueForCustomPropertyExpression;
|
|
115
|
-
RemovePrevValIndexAt(idx: number): void;
|
|
116
|
-
InsertPrevValAt(idx: number): void;
|
|
117
|
-
resetPrevValAt(idx: number): void;
|
|
118
|
-
toString(): string;
|
|
119
|
-
static getDefaultProp(propId: number, parentType: string, propParent: PropParentInterface): Property;
|
|
120
|
-
InsertPrevValueArray(count: number): void;
|
|
121
|
-
}
|
|
1
|
+
import { UtilImeJpn, XmlParser } from '@magic-xpa/utils';
|
|
2
|
+
import { PropParentInterface } from '../../gui/PropParentInterface';
|
|
3
|
+
import { TaskDefinitionId } from '../tasks/TaskDefinitionId';
|
|
4
|
+
import { GuiTaskBase } from '../tasks/GuiTaskBase';
|
|
5
|
+
export declare class CustomValidatorProp {
|
|
6
|
+
_exp: number;
|
|
7
|
+
_errorMessageExp: number;
|
|
8
|
+
_errorMessage: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class CustomValidator {
|
|
11
|
+
_valid: boolean;
|
|
12
|
+
_errorMessage: string;
|
|
13
|
+
constructor(valid: boolean, errMessage: string);
|
|
14
|
+
isValid(): boolean;
|
|
15
|
+
getErrMessage(): string;
|
|
16
|
+
}
|
|
17
|
+
export declare class Property {
|
|
18
|
+
private _id;
|
|
19
|
+
private _dataType;
|
|
20
|
+
private _val;
|
|
21
|
+
private _pic;
|
|
22
|
+
private _expId;
|
|
23
|
+
private _parentObj;
|
|
24
|
+
private _parentType;
|
|
25
|
+
private _prevValues;
|
|
26
|
+
private _orgValue;
|
|
27
|
+
private static _numericPropertyPic;
|
|
28
|
+
private _taskDefinitionId;
|
|
29
|
+
StudioValue: string;
|
|
30
|
+
private _expAlreadyComputedOnce;
|
|
31
|
+
private customProperties;
|
|
32
|
+
private customPropertiesValues;
|
|
33
|
+
private customValidatorProperties;
|
|
34
|
+
private customValidatorValues;
|
|
35
|
+
static UtilImeJpn: UtilImeJpn;
|
|
36
|
+
get TaskDefinitionId(): TaskDefinitionId;
|
|
37
|
+
constructor();
|
|
38
|
+
constructor(cId: number, cParentObj: PropParentInterface, parType: string);
|
|
39
|
+
constructor(cId: number, cParentObj: PropParentInterface, parType: string, val: string);
|
|
40
|
+
private constructor_0;
|
|
41
|
+
private constructor_1;
|
|
42
|
+
private constructor_2;
|
|
43
|
+
private setId;
|
|
44
|
+
fillData(parentRef: PropParentInterface, parType: string, parser: XmlParser): void;
|
|
45
|
+
private InitInnerObjects;
|
|
46
|
+
private initElements;
|
|
47
|
+
private InitCustomProperties;
|
|
48
|
+
private InitCustomValidator;
|
|
49
|
+
private InitCustomValidationProperties;
|
|
50
|
+
private SetFirstValueForCustomValidationProperties;
|
|
51
|
+
private GetArrayValuesForCustomValidationProperties;
|
|
52
|
+
private GetArrayValuesForCustomProperties;
|
|
53
|
+
private SetFirstValueForCustomProperties;
|
|
54
|
+
private InitTaskDefinitionId;
|
|
55
|
+
SetTaskDefinitionId(taskDefinitionId: TaskDefinitionId): void;
|
|
56
|
+
private setDataType;
|
|
57
|
+
private setControlAttributes;
|
|
58
|
+
getID(): number;
|
|
59
|
+
setValue(mgVal: string): void;
|
|
60
|
+
SetValue(val: number): void;
|
|
61
|
+
setOrgValue(): void;
|
|
62
|
+
GetTaskByParentObject(): GuiTaskBase;
|
|
63
|
+
RefreshDisplay(forceRefresh: boolean): Promise<void>;
|
|
64
|
+
private ShouldSkipRefreshControl;
|
|
65
|
+
private ShouldSkipRefreshForm;
|
|
66
|
+
private ShouldSkipRefreshTask;
|
|
67
|
+
private ShouldSkipRefresh;
|
|
68
|
+
private RefreshDisplayWithCurrentLine;
|
|
69
|
+
SkipWhenNoExpression(): boolean;
|
|
70
|
+
RefreshDisplayWithCurrLineAndCheckSkipRefresh(forceRefresh: boolean, currLine: number, checkSkipRefresh: boolean): Promise<void>;
|
|
71
|
+
private ShouldBeComputedOnce;
|
|
72
|
+
private IsComputedOnceOnServer;
|
|
73
|
+
private ComputeValue;
|
|
74
|
+
private updateResult;
|
|
75
|
+
private static updateTaskModeResult;
|
|
76
|
+
getValue(): Promise<string>;
|
|
77
|
+
getValueInt(): Promise<number>;
|
|
78
|
+
GetComputedValueInteger(): number;
|
|
79
|
+
getValueBoolean(): Promise<boolean>;
|
|
80
|
+
GetComputedValue(): string;
|
|
81
|
+
GetComputedValueBoolean(): boolean;
|
|
82
|
+
getPrevValue(line: number): string;
|
|
83
|
+
isExpression(): boolean;
|
|
84
|
+
GetExpressionId(): number;
|
|
85
|
+
private onImageFileName;
|
|
86
|
+
private onEnable;
|
|
87
|
+
private onVisible;
|
|
88
|
+
private OnControlName;
|
|
89
|
+
private onHint;
|
|
90
|
+
private onFormName;
|
|
91
|
+
private addCommandTypeText;
|
|
92
|
+
private onText;
|
|
93
|
+
private onModifiable;
|
|
94
|
+
private onTooltip;
|
|
95
|
+
private onDisplayList;
|
|
96
|
+
private onVisibleLayerList;
|
|
97
|
+
private onFormat;
|
|
98
|
+
private onLabel;
|
|
99
|
+
private getObjectByParentObj;
|
|
100
|
+
static isRepeatableInTable(): boolean;
|
|
101
|
+
private getLine;
|
|
102
|
+
getOrgValue(): string;
|
|
103
|
+
updatePrevValueArray(newSize: number): void;
|
|
104
|
+
clearPrevValueArray(): void;
|
|
105
|
+
ResetPrevValueArray(): void;
|
|
106
|
+
private setPrevArraySize;
|
|
107
|
+
private onPassword;
|
|
108
|
+
private computeCustomPropertiesValues;
|
|
109
|
+
private computeCustomValidators;
|
|
110
|
+
private onCustomProperties;
|
|
111
|
+
private onCustomValidators;
|
|
112
|
+
private onBindingLevel;
|
|
113
|
+
private onAutoCompleteMode;
|
|
114
|
+
private GetRetrunValueForCustomPropertyExpression;
|
|
115
|
+
RemovePrevValIndexAt(idx: number): void;
|
|
116
|
+
InsertPrevValAt(idx: number): void;
|
|
117
|
+
resetPrevValAt(idx: number): void;
|
|
118
|
+
toString(): string;
|
|
119
|
+
static getDefaultProp(propId: number, parentType: string, propParent: PropParentInterface): Property;
|
|
120
|
+
InsertPrevValueArray(count: number): void;
|
|
121
|
+
}
|
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
import { MgControlBase } from "./MgControlBase";
|
|
2
|
-
import { PIC } from "./PIC";
|
|
3
|
-
import { StorageAttribute } from "@magic-xpa/utils";
|
|
4
|
-
import { ValidationDetailsBase } from "./ValidationDetailsBase";
|
|
5
|
-
export declare class ValidationDetails extends ValidationDetailsBase {
|
|
6
|
-
private _control;
|
|
7
|
-
private _fieldValidator;
|
|
8
|
-
private _picData;
|
|
9
|
-
private _pictureEnable;
|
|
10
|
-
private _pictureReal;
|
|
11
|
-
private _isNull;
|
|
12
|
-
private _oldvalue;
|
|
13
|
-
private _val;
|
|
14
|
-
private _validationFailed;
|
|
15
|
-
private errMessage;
|
|
16
|
-
get ErrorMessage(): string;
|
|
17
|
-
set ErrorMessage(msg: string);
|
|
18
|
-
get ValidationFailed(): boolean;
|
|
19
|
-
constructor(oldvalue: any, val: any, range: string, pic: PIC, control: MgControlBase);
|
|
20
|
-
constructor(rangeStr: string);
|
|
21
|
-
constructor(vd: ValidationDetails);
|
|
22
|
-
constructor();
|
|
23
|
-
private constructor_0;
|
|
24
|
-
private constructor_1;
|
|
25
|
-
private constructor_2;
|
|
26
|
-
private constructor_3;
|
|
27
|
-
private getRealNumericPicture;
|
|
28
|
-
private setPictures;
|
|
29
|
-
setValue(val: any): void;
|
|
30
|
-
setOldValue(oldvalue: any): void;
|
|
31
|
-
setRange(range: string): void;
|
|
32
|
-
setValidationFailed(val: boolean): void;
|
|
33
|
-
setNull(isNull_: boolean): void;
|
|
34
|
-
getDispValue(): string;
|
|
35
|
-
getOldValue(): string;
|
|
36
|
-
getType(): StorageAttribute;
|
|
37
|
-
getPictureReal(): string;
|
|
38
|
-
getPictureEnable(): string;
|
|
39
|
-
getIsNegative(): boolean;
|
|
40
|
-
getIsPadFill(): boolean;
|
|
41
|
-
getPadFillChar(): string;
|
|
42
|
-
getIsZeroFill(): boolean;
|
|
43
|
-
getZeroFillChar(): string;
|
|
44
|
-
getNegativeSignPref(): string;
|
|
45
|
-
getRange(): string;
|
|
46
|
-
getControl(): MgControlBase;
|
|
47
|
-
getPIC(): PIC;
|
|
48
|
-
getIsNull(): boolean;
|
|
49
|
-
evaluate(): ValidationDetails;
|
|
50
|
-
private CloneDiscreteRangeValues;
|
|
51
|
-
private CloneContinuousRangeValues;
|
|
52
|
-
}
|
|
1
|
+
import { MgControlBase } from "./MgControlBase";
|
|
2
|
+
import { PIC } from "./PIC";
|
|
3
|
+
import { StorageAttribute } from "@magic-xpa/utils";
|
|
4
|
+
import { ValidationDetailsBase } from "./ValidationDetailsBase";
|
|
5
|
+
export declare class ValidationDetails extends ValidationDetailsBase {
|
|
6
|
+
private _control;
|
|
7
|
+
private _fieldValidator;
|
|
8
|
+
private _picData;
|
|
9
|
+
private _pictureEnable;
|
|
10
|
+
private _pictureReal;
|
|
11
|
+
private _isNull;
|
|
12
|
+
private _oldvalue;
|
|
13
|
+
private _val;
|
|
14
|
+
private _validationFailed;
|
|
15
|
+
private errMessage;
|
|
16
|
+
get ErrorMessage(): string;
|
|
17
|
+
set ErrorMessage(msg: string);
|
|
18
|
+
get ValidationFailed(): boolean;
|
|
19
|
+
constructor(oldvalue: any, val: any, range: string, pic: PIC, control: MgControlBase);
|
|
20
|
+
constructor(rangeStr: string);
|
|
21
|
+
constructor(vd: ValidationDetails);
|
|
22
|
+
constructor();
|
|
23
|
+
private constructor_0;
|
|
24
|
+
private constructor_1;
|
|
25
|
+
private constructor_2;
|
|
26
|
+
private constructor_3;
|
|
27
|
+
private getRealNumericPicture;
|
|
28
|
+
private setPictures;
|
|
29
|
+
setValue(val: any): void;
|
|
30
|
+
setOldValue(oldvalue: any): void;
|
|
31
|
+
setRange(range: string): void;
|
|
32
|
+
setValidationFailed(val: boolean): void;
|
|
33
|
+
setNull(isNull_: boolean): void;
|
|
34
|
+
getDispValue(): string;
|
|
35
|
+
getOldValue(): string;
|
|
36
|
+
getType(): StorageAttribute;
|
|
37
|
+
getPictureReal(): string;
|
|
38
|
+
getPictureEnable(): string;
|
|
39
|
+
getIsNegative(): boolean;
|
|
40
|
+
getIsPadFill(): boolean;
|
|
41
|
+
getPadFillChar(): string;
|
|
42
|
+
getIsZeroFill(): boolean;
|
|
43
|
+
getZeroFillChar(): string;
|
|
44
|
+
getNegativeSignPref(): string;
|
|
45
|
+
getRange(): string;
|
|
46
|
+
getControl(): MgControlBase;
|
|
47
|
+
getPIC(): PIC;
|
|
48
|
+
getIsNull(): boolean;
|
|
49
|
+
evaluate(): ValidationDetails;
|
|
50
|
+
private CloneDiscreteRangeValues;
|
|
51
|
+
private CloneContinuousRangeValues;
|
|
52
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { List } from "@magic-xpa/mscorelib";
|
|
2
|
-
export declare class ValidationDetailsBase {
|
|
3
|
-
protected _continuousRangeValues: List<string>;
|
|
4
|
-
protected _discreteRangeValues: List<string>;
|
|
5
|
-
protected _range: string;
|
|
6
|
-
constructor();
|
|
7
|
-
constructor(rangeStr: string);
|
|
8
|
-
protected fillRange(): void;
|
|
9
|
-
private rangeForms;
|
|
10
|
-
private deleteChar;
|
|
11
|
-
private findDelimeter;
|
|
12
|
-
getDiscreteRangeValues(): List<string>;
|
|
13
|
-
getContinuousRangeValues(): List<string>;
|
|
14
|
-
}
|
|
1
|
+
import { List } from "@magic-xpa/mscorelib";
|
|
2
|
+
export declare class ValidationDetailsBase {
|
|
3
|
+
protected _continuousRangeValues: List<string>;
|
|
4
|
+
protected _discreteRangeValues: List<string>;
|
|
5
|
+
protected _range: string;
|
|
6
|
+
constructor();
|
|
7
|
+
constructor(rangeStr: string);
|
|
8
|
+
protected fillRange(): void;
|
|
9
|
+
private rangeForms;
|
|
10
|
+
private deleteChar;
|
|
11
|
+
private findDelimeter;
|
|
12
|
+
getDiscreteRangeValues(): List<string>;
|
|
13
|
+
getContinuousRangeValues(): List<string>;
|
|
14
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { Exception } from "@magic-xpa/mscorelib";
|
|
2
|
-
export declare class WrongFormatException extends Exception {
|
|
3
|
-
private _type;
|
|
4
|
-
constructor(type?: string);
|
|
5
|
-
private initialize;
|
|
6
|
-
private constructor_0;
|
|
7
|
-
private constructor_1;
|
|
8
|
-
getType(): string;
|
|
9
|
-
}
|
|
1
|
+
import { Exception } from "@magic-xpa/mscorelib";
|
|
2
|
+
export declare class WrongFormatException extends Exception {
|
|
3
|
+
private _type;
|
|
4
|
+
constructor(type?: string);
|
|
5
|
+
private initialize;
|
|
6
|
+
private constructor_0;
|
|
7
|
+
private constructor_1;
|
|
8
|
+
getType(): string;
|
|
9
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IMGDataTable } from "./IMGDataTable";
|
|
2
|
-
export declare class GuiDataCollection {
|
|
3
|
-
static MGDataTable: IMGDataTable;
|
|
4
|
-
}
|
|
1
|
+
import { IMGDataTable } from "./IMGDataTable";
|
|
2
|
+
export declare class GuiDataCollection {
|
|
3
|
+
static MGDataTable: IMGDataTable;
|
|
4
|
+
}
|