@magic-xpa/gui 4.800.0-dev480.188 → 4.800.0-dev480.196

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.800.0-dev480.188",
3
+ "version": "4.800.0-dev480.196",
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.0.0"
9
9
  },
10
10
  "peerDependencies": {
11
- "@magic-xpa/utils": "4.800.0-dev480.188",
11
+ "@magic-xpa/utils": "4.800.0-dev480.196",
12
12
  "rxjs": "^6.3.3"
13
13
  },
14
14
  "main": "bundles/magic-xpa-gui.umd.js",
package/src/Commands.d.ts CHANGED
@@ -21,6 +21,7 @@ export declare class Commands {
21
21
  static addRefreshPage(navigateToRootRoute: boolean, initialUrl: string): void;
22
22
  static getRowsInPage(control: GuiMgControl): number;
23
23
  static getMaxRowsInPaginatedTable(control: GuiMgControl): number;
24
+ static getLastRoute(): string;
24
25
  static addBoolWithLine(commandType: CommandType, obj: any, line: number, bool: boolean): void;
25
26
  static addNoParameters(commandType: CommandType, obj: any): void;
26
27
  static addWithNumber(commandType: CommandType, obj: any, num: number): void;
@@ -70,7 +70,8 @@ export declare enum InteractiveCommandType {
70
70
  GET_HASINDENT = 63,
71
71
  GET_IS_ROW_EDITING = 64,
72
72
  GET_MAX_ROWS_IN_PAGINATED_TABLE = 65,
73
- CALL_JS = 66
73
+ CALL_JS = 66,
74
+ GET_LAST_ROUTE = 67
74
75
  }
75
76
  export declare abstract class GuiInteractiveBase {
76
77
  _commandType: InteractiveCommandType;
@@ -121,6 +122,7 @@ export declare abstract class GuiInteractiveBase {
121
122
  disposeAllForms(): void;
122
123
  getRowsInPage(control: GuiMgControl): number;
123
124
  getMaxRowsInPaginatedTable(control: GuiMgControl): number;
125
+ getLastRoute(): string;
124
126
  GetHiddenRowsCountInTable(control: GuiMgControl): number;
125
127
  getLastWindowState(guiMgForm: GuiMgForm): number;
126
128
  getLinkedParentIdx(frameset: GuiMgControl): number;
@@ -236,5 +236,6 @@ export declare class ExpressionInterface {
236
236
  static EXP_OP_SET_COOKIE: number;
237
237
  static EXP_OP_GET_COOKIE: number;
238
238
  static EXP_OP_DELETE_COOKIE: number;
239
+ static EXP_OP_ROUTEGET: number;
239
240
  constructor();
240
241
  }