@xuda.io/runtime-bundle 1.0.1005 → 1.0.1007
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-slim.js
CHANGED
|
@@ -12621,7 +12621,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12621
12621
|
|
|
12622
12622
|
////////////
|
|
12623
12623
|
const cache_str = get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
|
|
12624
|
-
|
|
12624
|
+
const xu_ui_id = $elm.attr('xu-ui-id');
|
|
12625
12625
|
let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id]?.[cache_str]?.$container.clone(true);
|
|
12626
12626
|
|
|
12627
12627
|
/////////////
|
|
@@ -14888,7 +14888,7 @@ const get_xu_render_cache_str = function (SESSION_ID, dsSessionP) {
|
|
|
14888
14888
|
let str = '';
|
|
14889
14889
|
|
|
14890
14890
|
for (const [key, val] of Object.entries(data)) {
|
|
14891
|
-
str += val;
|
|
14891
|
+
str += typeof val !== 'undefined' ? JSON.stringify(val) : '';
|
|
14892
14892
|
}
|
|
14893
14893
|
|
|
14894
14894
|
if (typeof _ds.parentDataSourceNo !== 'undefined') {
|
|
@@ -10346,7 +10346,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10346
10346
|
|
|
10347
10347
|
////////////
|
|
10348
10348
|
const cache_str = get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
|
|
10349
|
-
|
|
10349
|
+
const xu_ui_id = $elm.attr('xu-ui-id');
|
|
10350
10350
|
let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id]?.[cache_str]?.$container.clone(true);
|
|
10351
10351
|
|
|
10352
10352
|
/////////////
|
|
@@ -12613,7 +12613,7 @@ const get_xu_render_cache_str = function (SESSION_ID, dsSessionP) {
|
|
|
12613
12613
|
let str = '';
|
|
12614
12614
|
|
|
12615
12615
|
for (const [key, val] of Object.entries(data)) {
|
|
12616
|
-
str += val;
|
|
12616
|
+
str += typeof val !== 'undefined' ? JSON.stringify(val) : '';
|
|
12617
12617
|
}
|
|
12618
12618
|
|
|
12619
12619
|
if (typeof _ds.parentDataSourceNo !== 'undefined') {
|