@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
|
@@ -32942,7 +32942,11 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
32942
32942
|
// continue;
|
|
32943
32943
|
// }
|
|
32944
32944
|
|
|
32945
|
-
if (_.isEmpty(nodeP.attributes
|
|
32945
|
+
if (_.isEmpty(nodeP.attributes)) {
|
|
32946
|
+
break;
|
|
32947
|
+
}
|
|
32948
|
+
|
|
32949
|
+
if (typeof nodeP.attributes[attr] === 'undefined') {
|
|
32946
32950
|
continue;
|
|
32947
32951
|
}
|
|
32948
32952
|
|
|
@@ -35092,7 +35096,7 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
35092
35096
|
}
|
|
35093
35097
|
if (typeof retP.value !== 'undefined') {
|
|
35094
35098
|
var_Arr[key].type = retP.type;
|
|
35095
|
-
var_Arr[key].value = retP.value;
|
|
35099
|
+
var_Arr[key].value = retP.value.replaceAll('"', '\\"'); // new Apr 6 2025 fixing "\"how much?\""
|
|
35096
35100
|
if ((val.value.indexOf('[') > -1) | (val.value.indexOf('.') > -1)) {
|
|
35097
35101
|
//get values from array '@var==="sss" && @var_B==="sss" && @obj.property===5 && @objA["value"]===123 | @objB["value"].property===1234'
|
|
35098
35102
|
var data = retP.prop;
|