@magic-xpa/gui 4.1100.0-dev4110.261 → 4.1100.0-dev4110.267
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/esm2022/src/Commands.mjs +3 -3
- package/esm2022/src/GuiEnums.mjs +2 -1
- package/esm2022/src/Manager.mjs +2 -2
- package/esm2022/src/gui/low/GuiInteractive.mjs +3 -2
- package/esm2022/src/management/gui/MgControlBase.mjs +12 -2
- package/fesm2022/magic-xpa-gui.mjs +17 -5
- package/fesm2022/magic-xpa-gui.mjs.map +1 -1
- package/package.json +2 -2
- package/src/Commands.d.ts +1 -1
- package/src/GuiEnums.d.ts +2 -1
- package/src/gui/low/GuiInteractive.d.ts +1 -1
- package/src/management/gui/MgControlBase.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@magic-xpa/gui",
|
|
3
|
-
"version": "4.1100.0-dev4110.
|
|
3
|
+
"version": "4.1100.0-dev4110.267",
|
|
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.1100.0-dev4110.
|
|
11
|
+
"@magic-xpa/utils": "4.1100.0-dev4110.267",
|
|
12
12
|
"rxjs": "^6.3.3"
|
|
13
13
|
},
|
|
14
14
|
"module": "fesm2022/magic-xpa-gui.mjs",
|
package/src/Commands.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export declare class Commands {
|
|
|
10
10
|
static openOverlayForm(obj: Object, formName: string, handlerTaskTag: string, calledTaskTag: string, inputControls: string, isDialog: boolean): Promise<void>;
|
|
11
11
|
static setTitle(topMostForm: GuiMgForm, title: string): void;
|
|
12
12
|
static setGetSuggestedValueOfChoiceControlOnTagData(ctrl: GuiMgControl, line: number, retSuggestedValue: boolean): void;
|
|
13
|
-
static getValue(obj: any, line: number): string;
|
|
13
|
+
static getValue(obj: any, line: number, isThreeStateCheckBox: boolean): string;
|
|
14
14
|
static getTopIndex(tablecontrol: GuiMgControl): number;
|
|
15
15
|
static getIsRowEditing(tablecontrol: any, rowIndex: number, isLineMode: boolean): boolean;
|
|
16
16
|
static setEditText(control: GuiMgControl, line: number, text: string): boolean;
|
package/src/GuiEnums.d.ts
CHANGED
|
@@ -236,7 +236,8 @@ export declare enum HtmlProperties {
|
|
|
236
236
|
MustInput = "mustInput",
|
|
237
237
|
SelectedLayer = "SelectedLayer",
|
|
238
238
|
BindingLevel = "bindingLevel",
|
|
239
|
-
ZoomButtonTooltip = "ZoomButtonTooltip"
|
|
239
|
+
ZoomButtonTooltip = "ZoomButtonTooltip",
|
|
240
|
+
CheckBoxIndeterminate = "CheckBoxIndeterminate"
|
|
240
241
|
}
|
|
241
242
|
export declare enum MenuStyle {
|
|
242
243
|
MENU_STYLE_PULLDOWN = 1,
|
|
@@ -34,7 +34,7 @@ export declare abstract class GuiInteractiveBase {
|
|
|
34
34
|
resultString: string;
|
|
35
35
|
constructor();
|
|
36
36
|
setGetSuggestedValueOfChoiceControlOnTagData(ctrl: GuiMgControl, line: number, retSuggestedValue: boolean): void;
|
|
37
|
-
getValue(obj: any, line: number): string;
|
|
37
|
+
getValue(obj: any, line: number, isThreeStateCheckBox: boolean): string;
|
|
38
38
|
getTopIndex(tablecontrol: GuiMgControl): number;
|
|
39
39
|
getIsRowEditing(tablecontrol: GuiMgControl, line: number, isLineMode: boolean): boolean;
|
|
40
40
|
messageBox(title: string, msg: string, style: number): number;
|
|
@@ -137,6 +137,8 @@ export declare abstract class MgControlBase extends GuiControlPropertyAdapter im
|
|
|
137
137
|
private setRadioChecked;
|
|
138
138
|
setControlToFocus(): void;
|
|
139
139
|
private setCheckBoxValue;
|
|
140
|
+
setAsThreeState(): void;
|
|
141
|
+
isThreeStateCheckBox(): boolean;
|
|
140
142
|
private refreshAndSetItemListByDataSource;
|
|
141
143
|
setDcRef(dcId: number): void;
|
|
142
144
|
setImageList(url: string): void;
|