@xuda.io/runtime-bundle 1.0.1075 → 1.0.1076
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.
|
@@ -32349,7 +32349,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32349
32349
|
nodeP.xu_render_made = value;
|
|
32350
32350
|
if (value) {
|
|
32351
32351
|
try {
|
|
32352
|
-
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData
|
|
32352
|
+
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData?.attr_exp_info?.['xu-render']?.fields || {}));
|
|
32353
32353
|
const xu_ui_id = $elm.attr('xu-ui-id');
|
|
32354
32354
|
let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id + xu_render_cache_id]?.$div.clone(true);
|
|
32355
32355
|
let found_parent_vars = false;
|
|
@@ -32413,7 +32413,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32413
32413
|
// if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
|
|
32414
32414
|
// UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
|
|
32415
32415
|
// }
|
|
32416
|
-
const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData
|
|
32416
|
+
const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData?.attr_exp_info?.['xu-render']?.fields || {}));
|
|
32417
32417
|
UI_WORKER_OBJ.xu_render_cache[xu_ui_id + cache_str] = { $div: $elm.clone(true) };
|
|
32418
32418
|
$elm.remove();
|
|
32419
32419
|
func.events.delete_job(SESSION_ID, jobNoP);
|
|
@@ -34433,7 +34433,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
34433
34433
|
// UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
|
|
34434
34434
|
// }
|
|
34435
34435
|
|
|
34436
|
-
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($div.data()?.xuData
|
|
34436
|
+
const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($div.data()?.xuData?.attr_exp_info?.['xu-render']?.fields || {}));
|
|
34437
34437
|
UI_WORKER_OBJ.xu_render_cache[xu_ui_id + xu_render_cache_id] = { $div: $div.clone(true), paramsP };
|
|
34438
34438
|
nodeP.xu_render_xu_ui_id = xu_ui_id;
|
|
34439
34439
|
nodeP.xu_render_cache_id = xu_render_cache_id;
|