@xuda.io/runtime-bundle 1.0.374 → 1.0.376
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 -0
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +6 -0
- package/js/xuda-runtime-slim.min.es.js +6 -0
- 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 -0
- package/js/xuda-worker-bundle.js +1 -0
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -9022,6 +9022,11 @@ func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0
|
|
|
9022
9022
|
}
|
|
9023
9023
|
};
|
|
9024
9024
|
func.UI.refs_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0]) {
|
|
9025
|
+
if (!_.isEmpty(SCREEN_BLOCKER_OBJ)) {
|
|
9026
|
+
// let dom to finish build
|
|
9027
|
+
return;
|
|
9028
|
+
}
|
|
9029
|
+
|
|
9025
9030
|
let _session = SESSION_OBJ[SESSION_ID];
|
|
9026
9031
|
const _data_system = _session?.DS_GLB?.[0]?.data_system;
|
|
9027
9032
|
|
|
@@ -10580,6 +10585,7 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
10580
10585
|
var var_error_found;
|
|
10581
10586
|
// merge arr values
|
|
10582
10587
|
_.forEach(var_Arr, function (val, key) {
|
|
10588
|
+
debugger;
|
|
10583
10589
|
if (sourceP === 'UI Property EXP') {
|
|
10584
10590
|
let ret = func.utils.get_drive_url(SESSION_ID, val.value, true);
|
|
10585
10591
|
if (ret.changed) {
|
|
@@ -9023,6 +9023,11 @@ func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0
|
|
|
9023
9023
|
}
|
|
9024
9024
|
};
|
|
9025
9025
|
func.UI.refs_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0]) {
|
|
9026
|
+
if (!_.isEmpty(SCREEN_BLOCKER_OBJ)) {
|
|
9027
|
+
// let dom to finish build
|
|
9028
|
+
return;
|
|
9029
|
+
}
|
|
9030
|
+
|
|
9026
9031
|
let _session = SESSION_OBJ[SESSION_ID];
|
|
9027
9032
|
const _data_system = _session?.DS_GLB?.[0]?.data_system;
|
|
9028
9033
|
|
|
@@ -14287,6 +14292,7 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
14287
14292
|
var var_error_found;
|
|
14288
14293
|
// merge arr values
|
|
14289
14294
|
_.forEach(var_Arr, function (val, key) {
|
|
14295
|
+
debugger;
|
|
14290
14296
|
if (sourceP === 'UI Property EXP') {
|
|
14291
14297
|
let ret = func.utils.get_drive_url(SESSION_ID, val.value, true);
|
|
14292
14298
|
if (ret.changed) {
|