@xuda.io/runtime-bundle 1.0.373 → 1.0.375
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 +8 -4
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +8 -4
- package/js/xuda-runtime-slim.min.es.js +8 -4
- 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 -2
- package/js/xuda-worker-bundle.js +1 -2
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -28202,6 +28202,11 @@ func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0
|
|
|
28202
28202
|
}
|
|
28203
28203
|
};
|
|
28204
28204
|
func.UI.refs_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0]) {
|
|
28205
|
+
if (!_.isEmpty(SCREEN_BLOCKER_OBJ)) {
|
|
28206
|
+
// let dom to finish build
|
|
28207
|
+
return;
|
|
28208
|
+
}
|
|
28209
|
+
|
|
28205
28210
|
let _session = SESSION_OBJ[SESSION_ID];
|
|
28206
28211
|
const _data_system = _session?.DS_GLB?.[0]?.data_system;
|
|
28207
28212
|
|
|
@@ -31962,8 +31967,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
31962
31967
|
const props = _ds.in_parameters || {};
|
|
31963
31968
|
const attributes = $elm?.data()?.xuData?.properties || {};
|
|
31964
31969
|
|
|
31965
|
-
|
|
31966
|
-
_ds_0.data_system['SYS_GLOBAL_OBJ_REFS'][val.value] = { $el: $elm, data, attributes, props };
|
|
31970
|
+
_ds_0.data_system['SYS_GLOBAL_OBJ_REFS'][val.value] = { $el: $elm, ds: _ds, data, attributes, props };
|
|
31971
|
+
// _ds_0.data_system['SYS_GLOBAL_OBJ_REFS'][val.value] = { $el: $elm, data, attributes, props };
|
|
31967
31972
|
|
|
31968
31973
|
return {};
|
|
31969
31974
|
},
|
|
@@ -34911,8 +34916,7 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
34911
34916
|
fields[val.fieldId] = var_Arr[key].value;
|
|
34912
34917
|
|
|
34913
34918
|
const ret = await func.datasource.get_value(SESSION_ID, val.fieldId, dsSessionP, rowIdP); // find field in dataSources
|
|
34914
|
-
|
|
34915
|
-
debugger;
|
|
34919
|
+
|
|
34916
34920
|
await replace_value_in_string(ret.ret, ret.fieldIdP);
|
|
34917
34921
|
}
|
|
34918
34922
|
}
|