@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/bundles/magic-xpa-gui.umd.js +12 -1
- package/bundles/magic-xpa-gui.umd.js.map +1 -1
- package/bundles/magic-xpa-gui.umd.min.js +1 -1
- package/bundles/magic-xpa-gui.umd.min.js.map +1 -1
- package/esm2015/src/Commands.js +5 -1
- package/esm2015/src/gui/low/GuiInteractive.js +7 -1
- package/esm2015/src/management/exp/ExpressionInterface.js +2 -1
- package/fesm2015/magic-xpa-gui.js +12 -1
- package/fesm2015/magic-xpa-gui.js.map +1 -1
- package/package.json +2 -2
- package/src/Commands.d.ts +1 -0
- package/src/gui/low/GuiInteractive.d.ts +3 -1
- package/src/management/exp/ExpressionInterface.d.ts +1 -0
|
@@ -882,6 +882,7 @@
|
|
|
882
882
|
InteractiveCommandType[InteractiveCommandType["GET_IS_ROW_EDITING"] = 64] = "GET_IS_ROW_EDITING";
|
|
883
883
|
InteractiveCommandType[InteractiveCommandType["GET_MAX_ROWS_IN_PAGINATED_TABLE"] = 65] = "GET_MAX_ROWS_IN_PAGINATED_TABLE";
|
|
884
884
|
InteractiveCommandType[InteractiveCommandType["CALL_JS"] = 66] = "CALL_JS";
|
|
885
|
+
InteractiveCommandType[InteractiveCommandType["GET_LAST_ROUTE"] = 67] = "GET_LAST_ROUTE";
|
|
885
886
|
})(exports.InteractiveCommandType || (exports.InteractiveCommandType = {}));
|
|
886
887
|
var GuiInteractiveBase = /** @class */ (function () {
|
|
887
888
|
function GuiInteractiveBase() {
|
|
@@ -1131,6 +1132,11 @@
|
|
|
1131
1132
|
this.Invoke();
|
|
1132
1133
|
return this._intVal1;
|
|
1133
1134
|
};
|
|
1135
|
+
GuiInteractiveBase.prototype.getLastRoute = function () {
|
|
1136
|
+
this._commandType = exports.InteractiveCommandType.GET_LAST_ROUTE;
|
|
1137
|
+
this.Invoke();
|
|
1138
|
+
return this.resultString;
|
|
1139
|
+
};
|
|
1134
1140
|
GuiInteractiveBase.prototype.GetHiddenRowsCountInTable = function (control) {
|
|
1135
1141
|
this._commandType = exports.InteractiveCommandType.GET_HIDDEN_ROWS_COUNT_IN_TABLE;
|
|
1136
1142
|
this._obj2 = control;
|
|
@@ -2037,6 +2043,10 @@
|
|
|
2037
2043
|
var maxRows = guiInteractive.getMaxRowsInPaginatedTable(control);
|
|
2038
2044
|
return (maxRows);
|
|
2039
2045
|
};
|
|
2046
|
+
Commands.getLastRoute = function () {
|
|
2047
|
+
var guiInteractive = new GuiInteractive();
|
|
2048
|
+
return guiInteractive.getLastRoute();
|
|
2049
|
+
};
|
|
2040
2050
|
Commands.addBoolWithLine = function (commandType, obj, line, bool) {
|
|
2041
2051
|
var guiCommand = new GuiCommand(obj, commandType);
|
|
2042
2052
|
guiCommand.Bool1 = bool;
|
|
@@ -18068,7 +18078,8 @@
|
|
|
18068
18078
|
ExpressionInterface.EXP_OP_IS_LOGGED_IN = 690;
|
|
18069
18079
|
ExpressionInterface.EXP_OP_SET_COOKIE = 701;
|
|
18070
18080
|
ExpressionInterface.EXP_OP_GET_COOKIE = 702;
|
|
18071
|
-
ExpressionInterface.EXP_OP_DELETE_COOKIE = 703;
|
|
18081
|
+
ExpressionInterface.EXP_OP_DELETE_COOKIE = 703;
|
|
18082
|
+
ExpressionInterface.EXP_OP_ROUTEGET = 705;
|
|
18072
18083
|
|
|
18073
18084
|
var GuiExpressionEvaluator = /** @class */ (function () {
|
|
18074
18085
|
function GuiExpressionEvaluator() {
|