@magic-xpa/gui 4.1000.0-dev4100.302 → 4.1000.0-dev4100.305

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.302",
3
+ "version": "4.1000.0-dev4100.305",
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.302",
11
+ "@magic-xpa/utils": "4.1000.0-dev4100.305",
12
12
  "rxjs": "^6.3.3"
13
13
  },
14
14
  "module": "fesm2015/magic-xpa-gui.mjs",
package/src/GuiEnums.d.ts CHANGED
@@ -216,7 +216,8 @@ export declare enum CommandType {
216
216
  PROP_SET_BINDING_LEVEL = 154,
217
217
  SHOW_SPINNER = 155,
218
218
  SHOW_HTML_ERROR = 156,
219
- SET_WC_IDLE = 157
219
+ SET_WC_IDLE = 157,
220
+ SET_CHUNK_SIZE = 158
220
221
  }
221
222
  export declare enum HtmlProperties {
222
223
  Visible = "visible",
@@ -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;