@xuda.io/runtime-bundle 1.0.632 → 1.0.634
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/js/xuda-runtime-bundle.js +6 -2
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +6 -2
- package/js/xuda-runtime-slim.min.es.js +6 -2
- package/js/xuda-runtime-slim.min.js +2 -2
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +1 -1
- package/js/xuda-worker-bundle.js +1 -1
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -10571,7 +10571,7 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
10571
10571
|
}
|
|
10572
10572
|
if (typeof retP.value !== 'undefined') {
|
|
10573
10573
|
var_Arr[key].type = retP.type;
|
|
10574
|
-
var_Arr[key].value = retP.value;
|
|
10574
|
+
var_Arr[key].value = retP.value.replaceAll('"', '\\"'); // new Apr 6 2025 fixing "\"how much?\""
|
|
10575
10575
|
if ((val.value.indexOf('[') > -1) | (val.value.indexOf('.') > -1)) {
|
|
10576
10576
|
//get values from array '@var==="sss" && @var_B==="sss" && @obj.property===5 && @objA["value"]===123 | @objB["value"].property===1234'
|
|
10577
10577
|
var data = retP.prop;
|
|
@@ -13252,7 +13252,11 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
13252
13252
|
// continue;
|
|
13253
13253
|
// }
|
|
13254
13254
|
|
|
13255
|
-
if (_.isEmpty(nodeP.attributes
|
|
13255
|
+
if (_.isEmpty(nodeP.attributes)) {
|
|
13256
|
+
break;
|
|
13257
|
+
}
|
|
13258
|
+
|
|
13259
|
+
if (typeof nodeP.attributes[attr] === 'undefined') {
|
|
13256
13260
|
continue;
|
|
13257
13261
|
}
|
|
13258
13262
|
|
|
@@ -10983,7 +10983,11 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
10983
10983
|
// continue;
|
|
10984
10984
|
// }
|
|
10985
10985
|
|
|
10986
|
-
if (_.isEmpty(nodeP.attributes
|
|
10986
|
+
if (_.isEmpty(nodeP.attributes)) {
|
|
10987
|
+
break;
|
|
10988
|
+
}
|
|
10989
|
+
|
|
10990
|
+
if (typeof nodeP.attributes[attr] === 'undefined') {
|
|
10987
10991
|
continue;
|
|
10988
10992
|
}
|
|
10989
10993
|
|
|
@@ -14458,7 +14462,7 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
14458
14462
|
}
|
|
14459
14463
|
if (typeof retP.value !== 'undefined') {
|
|
14460
14464
|
var_Arr[key].type = retP.type;
|
|
14461
|
-
var_Arr[key].value = retP.value;
|
|
14465
|
+
var_Arr[key].value = retP.value.replaceAll('"', '\\"'); // new Apr 6 2025 fixing "\"how much?\""
|
|
14462
14466
|
if ((val.value.indexOf('[') > -1) | (val.value.indexOf('.') > -1)) {
|
|
14463
14467
|
//get values from array '@var==="sss" && @var_B==="sss" && @obj.property===5 && @objA["value"]===123 | @objB["value"].property===1234'
|
|
14464
14468
|
var data = retP.prop;
|