@xuda.io/runtime-bundle 1.0.634 → 1.0.636
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 +7 -2
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +7 -2
- package/js/xuda-runtime-slim.min.es.js +7 -2
- package/js/xuda-runtime-slim.min.js +2 -2
- package/js/xuda-server-bundle.min.mjs +2 -2
- package/js/xuda-server-bundle.mjs +6 -1
- package/js/xuda-worker-bundle.js +6 -1
- package/js/xuda-worker-bundle.min.js +2 -2
- package/js/xuda_common-bundle.js +1 -0
- package/js/xuda_common-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -23600,6 +23600,7 @@ var PROJECT_OBJ = {};
|
|
|
23600
23600
|
|
|
23601
23601
|
var APP_OBJ = {};
|
|
23602
23602
|
var SESSION_ID = null;
|
|
23603
|
+
var EXP_BUSY = false;
|
|
23603
23604
|
|
|
23604
23605
|
glb.PROTECTED_VARS = ['_NULL', '_THIS', '_FOR_KEY', '_FOR_VAL', '_ROWNO', '_ROWID', '_ROWDOC', '_KEY', '_VAL'];
|
|
23605
23606
|
|
|
@@ -33654,7 +33655,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
33654
33655
|
};
|
|
33655
33656
|
|
|
33656
33657
|
const hover_in = function ($div) {
|
|
33657
|
-
if (is_skeleton) return;
|
|
33658
|
+
if (is_skeleton || EXP_BUSY) return;
|
|
33658
33659
|
CLIENT_ACTIVITY_TS = Date.now();
|
|
33659
33660
|
if (_$($container)?.data()?.xuData?.debug_info) _$($container).data().xuData.debug_info.hover_item = $div.attr('xu-ui-id');
|
|
33660
33661
|
if (!_ds) return;
|
|
@@ -34944,6 +34945,10 @@ func.UI.component.init_xu_nav = function ($container, $nav) {
|
|
|
34944
34945
|
func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, rowIdP, sourceActionP, secondPassP, calling_fieldIdP, fieldsP, debug_infoP, iterate_info, js_script_callback, jobNo, api_output_type) {
|
|
34945
34946
|
class xu_class {
|
|
34946
34947
|
async get() {
|
|
34948
|
+
if (typeof EXP_BUSY !== 'undefined') {
|
|
34949
|
+
EXP_BUSY = true;
|
|
34950
|
+
}
|
|
34951
|
+
|
|
34947
34952
|
var ret;
|
|
34948
34953
|
var fields = {};
|
|
34949
34954
|
var error;
|
|
@@ -35096,7 +35101,7 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
35096
35101
|
}
|
|
35097
35102
|
if (typeof retP.value !== 'undefined') {
|
|
35098
35103
|
var_Arr[key].type = retP.type;
|
|
35099
|
-
var_Arr[key].value = retP.value.replaceAll('"', '\\"'); // new Apr 6 2025 fixing "\"how much?\""
|
|
35104
|
+
var_Arr[key].value = typeof retP.value === 'string' ? retP.value.replaceAll('"', '\\"') : retP.value; // new Apr 6 2025 fixing "\"how much?\""
|
|
35100
35105
|
if ((val.value.indexOf('[') > -1) | (val.value.indexOf('.') > -1)) {
|
|
35101
35106
|
//get values from array '@var==="sss" && @var_B==="sss" && @obj.property===5 && @objA["value"]===123 | @objB["value"].property===1234'
|
|
35102
35107
|
var data = retP.prop;
|