@magic-xpa/engine 4.900.0-dev490.42 → 4.900.0-dev490.45
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/esm2020/src/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/rt/RecomputeTable.mjs +10 -2
- package/fesm2015/magic-xpa-engine.mjs +9 -1
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +9 -1
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -21949,6 +21949,14 @@ class RecomputeTable {
|
|
|
21949
21949
|
throw new ApplicationException("in RecomputeTable.fillData() invalid task id: ");
|
|
21950
21950
|
}
|
|
21951
21951
|
fillData_1(dataView, task, parser) {
|
|
21952
|
+
if (parser.getNextTag() == XMLConstants.MG_TAG_RECOMPUTE) {
|
|
21953
|
+
let currrentIndex = parser.getCurrIndex();
|
|
21954
|
+
let encoded = parser.ReadContentOfCurrentElement().trim();
|
|
21955
|
+
let decoded = Base64.decode(encoded.substr(0, encoded.length).trim());
|
|
21956
|
+
let newXmlData = parser.getXMLdata().replace(encoded.trim(), decoded);
|
|
21957
|
+
parser.setXMLdata(newXmlData);
|
|
21958
|
+
parser.setCurrIndex(currrentIndex);
|
|
21959
|
+
}
|
|
21952
21960
|
while (this.initInnerObjects(parser, parser.getNextTag(), dataView, task)) {
|
|
21953
21961
|
}
|
|
21954
21962
|
}
|
|
@@ -29517,7 +29525,7 @@ class CommandsTable {
|
|
|
29517
29525
|
}
|
|
29518
29526
|
}
|
|
29519
29527
|
|
|
29520
|
-
let CurrentClientVersion = '4.900.0-dev490.
|
|
29528
|
+
let CurrentClientVersion = '4.900.0-dev490.45';
|
|
29521
29529
|
|
|
29522
29530
|
class ClientManager {
|
|
29523
29531
|
constructor() {
|