@magic-xpa/gui 4.1000.0-dev4100.43 → 4.1000.0-dev4100.431

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magic-xpa/gui",
3
- "version": "4.1000.0-dev4100.43",
3
+ "version": "4.1000.0-dev4100.431",
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.1000.0-dev4100.43",
11
+ "@magic-xpa/utils": "4.1000.0-dev4100.431",
12
12
  "rxjs": "^6.3.3"
13
13
  },
14
14
  "module": "fesm2015/magic-xpa-gui.mjs",
@@ -16,13 +16,13 @@
16
16
  "esm2020": "esm2020/magic-xpa-gui.mjs",
17
17
  "fesm2020": "fesm2020/magic-xpa-gui.mjs",
18
18
  "fesm2015": "fesm2015/magic-xpa-gui.mjs",
19
- "typings": "magic-xpa-gui.d.ts",
19
+ "typings": "index.d.ts",
20
20
  "exports": {
21
21
  "./package.json": {
22
22
  "default": "./package.json"
23
23
  },
24
24
  ".": {
25
- "types": "./magic-xpa-gui.d.ts",
25
+ "types": "./index.d.ts",
26
26
  "esm2020": "./esm2020/magic-xpa-gui.mjs",
27
27
  "es2020": "./fesm2020/magic-xpa-gui.mjs",
28
28
  "es2015": "./fesm2015/magic-xpa-gui.mjs",
package/src/Commands.d.ts CHANGED
@@ -9,7 +9,7 @@ export declare class Commands {
9
9
  static messageBox(title: string, msg: string, style: number): Promise<number>;
10
10
  static setTitle(topMostForm: GuiMgForm, title: string): void;
11
11
  static setGetSuggestedValueOfChoiceControlOnTagData(ctrl: GuiMgControl, line: number, retSuggestedValue: boolean): void;
12
- static getValue(obj: any, line: number): string;
12
+ static getValue(obj: any, line: number, isThreeStateCheckBox: boolean): string;
13
13
  static getTopIndex(tablecontrol: GuiMgControl): number;
14
14
  static getIsRowEditing(tablecontrol: any, rowIndex: number, isLineMode: boolean): boolean;
15
15
  static setEditText(control: GuiMgControl, line: number, text: string): boolean;
package/src/GuiEnums.d.ts CHANGED
@@ -215,7 +215,9 @@ export declare enum CommandType {
215
215
  CALL_JS = 153,
216
216
  PROP_SET_BINDING_LEVEL = 154,
217
217
  SHOW_SPINNER = 155,
218
- SHOW_HTML_ERROR = 156
218
+ SHOW_HTML_ERROR = 156,
219
+ SET_WC_IDLE = 157,
220
+ SET_CHUNK_SIZE = 158
219
221
  }
220
222
  export declare enum HtmlProperties {
221
223
  Visible = "visible",
@@ -234,7 +236,8 @@ export declare enum HtmlProperties {
234
236
  MustInput = "mustInput",
235
237
  SelectedLayer = "SelectedLayer",
236
238
  BindingLevel = "bindingLevel",
237
- ZoomButtonTooltip = "ZoomButtonTooltip"
239
+ ZoomButtonTooltip = "ZoomButtonTooltip",
240
+ CheckBoxIndeterminate = "CheckBoxIndeterminate"
238
241
  }
239
242
  export declare enum MenuStyle {
240
243
  MENU_STYLE_PULLDOWN = 1,
@@ -33,7 +33,7 @@ export declare abstract class GuiInteractiveBase {
33
33
  resultString: string;
34
34
  constructor();
35
35
  setGetSuggestedValueOfChoiceControlOnTagData(ctrl: GuiMgControl, line: number, retSuggestedValue: boolean): void;
36
- getValue(obj: any, line: number): string;
36
+ getValue(obj: any, line: number, isThreeStateCheckBox: boolean): string;
37
37
  getTopIndex(tablecontrol: GuiMgControl): number;
38
38
  getIsRowEditing(tablecontrol: GuiMgControl, line: number, isLineMode: boolean): boolean;
39
39
  messageBox(title: string, msg: string, style: number): number;
@@ -14,6 +14,7 @@ export declare abstract class GuiDataViewBase {
14
14
  private _emptyChoiceForVectors;
15
15
  abstract Init(): void;
16
16
  abstract fillHeaderData(parser: XmlParser): void;
17
+ abstract getChunkSize(): number;
17
18
  getField(id: number): FieldDef;
18
19
  isEmptyDataview(): boolean;
19
20
  setEmptyDataview(emptyDataview: boolean): void;
@@ -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;
@@ -186,7 +188,6 @@ export declare abstract class MgControlBase extends GuiControlPropertyAdapter im
186
188
  ShouldComputeAndRefreshOnClosedForm(): boolean;
187
189
  refreshProperties(onlyRepeatableProps: boolean): Promise<void>;
188
190
  refreshTabForLayerList(line: number): Promise<void>;
189
- refreshAndSetItemsListForRadioButton(line: number, execComputeChoice: boolean): Promise<void>;
190
191
  refreshAndSetItemsList(line: number, execComputeChoice: boolean): Promise<void>;
191
192
  refreshDispRange(execComputeChoice: boolean): Promise<string[]>;
192
193
  refreshItmRange(execComputeChoice: boolean): Promise<string[]>;
@@ -1,2 +0,0 @@
1
- /// <amd-module name="@magic-xpa/gui" />
2
- export * from './index';