@magic-xpa/gui 4.900.0-dev490.21 → 4.900.0-dev490.211
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/Commands.mjs +2 -4
- package/esm2020/src/Manager.mjs +2 -2
- package/esm2020/src/management/gui/DisplayConvertor.mjs +6 -15
- package/esm2020/src/management/gui/FieldValidator.mjs +2 -2
- package/esm2020/src/management/gui/Helps.mjs +10 -3
- package/esm2020/src/management/gui/MgControlBase.mjs +20 -24
- package/esm2020/src/management/gui/Property.mjs +2 -2
- package/esm2020/src/management/tasks/GuiTaskBase.mjs +18 -6
- package/fesm2015/magic-xpa-gui.mjs +52 -49
- package/fesm2015/magic-xpa-gui.mjs.map +1 -1
- package/fesm2020/magic-xpa-gui.mjs +52 -49
- package/fesm2020/magic-xpa-gui.mjs.map +1 -1
- package/package.json +2 -2
- package/src/Commands.d.ts +1 -1
- package/src/management/gui/MgControlBase.d.ts +0 -2
- package/src/management/tasks/GuiTaskBase.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-xpa/gui",
|
|
3
|
-
"version": "4.900.0-dev490.
|
|
3
|
+
"version": "4.900.0-dev490.211",
|
|
4
4
|
"license": "SEE LICENSE IN EULA.pdf",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"timers": "^0.1.1",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"tslib": "^2.3.0"
|
|
9
9
|
},
|
|
10
10
|
"peerDependencies": {
|
|
11
|
-
"@magic-xpa/utils": "4.900.0-dev490.
|
|
11
|
+
"@magic-xpa/utils": "4.900.0-dev490.211",
|
|
12
12
|
"rxjs": "^6.3.3"
|
|
13
13
|
},
|
|
14
14
|
"module": "fesm2015/magic-xpa-gui.mjs",
|
package/src/Commands.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export declare class Commands {
|
|
|
22
22
|
static addBoolWithLine(commandType: CommandType, obj: any, line: number, bool: boolean): void;
|
|
23
23
|
static addNoParameters(commandType: CommandType, obj: any): void;
|
|
24
24
|
static addWithNumber(commandType: CommandType, obj: any, num: number): void;
|
|
25
|
-
static addValueWithLine(commandType: CommandType, obj: any, line: number, value: any
|
|
25
|
+
static addValueWithLine(commandType: CommandType, obj: any, line: number, value: any): void;
|
|
26
26
|
static addOperationWithLine(commandType: CommandType, obj: any, line: number, operation: string, value: any): void;
|
|
27
27
|
static addOpensubform(commandType: CommandType, obj: Object, calledTaskTag: string, subformControlName: string, formName: string, inputControls: string, routerPath: string, routerParams: List<any>, inDefaultRouterOutlet: boolean): void;
|
|
28
28
|
static addClosesubform(commandType: CommandType, obj: Object, calledTaskTag: string, subformControlName: string, formName: string): void;
|
|
@@ -29,7 +29,6 @@ export declare abstract class MgControlBase extends GuiControlPropertyAdapter im
|
|
|
29
29
|
private _firstRefreshProperties;
|
|
30
30
|
private _form;
|
|
31
31
|
private _hasValidItmAndDispVal;
|
|
32
|
-
private _id;
|
|
33
32
|
private _controlIsn;
|
|
34
33
|
private _linkedParentDitIdx;
|
|
35
34
|
_orgChoiceDisps: List<string[]>;
|
|
@@ -58,7 +57,6 @@ export declare abstract class MgControlBase extends GuiControlPropertyAdapter im
|
|
|
58
57
|
private _isModal;
|
|
59
58
|
protected set Form(value: MgFormBase);
|
|
60
59
|
protected get Form(): MgFormBase;
|
|
61
|
-
get Id(): number;
|
|
62
60
|
get ControlIsn(): number;
|
|
63
61
|
RefreshOnVisible: boolean;
|
|
64
62
|
InControl: boolean;
|
|
@@ -26,6 +26,7 @@ export declare abstract class GuiTaskBase implements ITask, PropParentInterface
|
|
|
26
26
|
_currParkedFld: GuiFieldBase;
|
|
27
27
|
private isInRecompute;
|
|
28
28
|
CurrentEditingControl: MgControlBase;
|
|
29
|
+
private shouldResumeSubformLayout;
|
|
29
30
|
ApplicationGuid: string;
|
|
30
31
|
ProgramIsn: number;
|
|
31
32
|
TaskIsn: number;
|
|
@@ -107,6 +108,7 @@ export declare abstract class GuiTaskBase implements ITask, PropParentInterface
|
|
|
107
108
|
getFieldDef(parent: number, fldIdx: number): FieldDef;
|
|
108
109
|
private getField_0;
|
|
109
110
|
InitForm(): Promise<void>;
|
|
111
|
+
ResumeSubformLayout(): void;
|
|
110
112
|
GetLastParkedCtrlName(depth: number): string;
|
|
111
113
|
getForm(): MgFormBase;
|
|
112
114
|
SetForm(value: MgFormBase): MgFormBase;
|