@xuda.io/runtime-bundle 1.0.1064 → 1.0.1066

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);
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
 
@@ -32393,7 +32393,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32393
32393
  if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
32394
32394
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
32395
32395
  }
32396
- const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
32396
+ const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData.attr_exp_info?.['xu-render']?.fields || {}));
32397
32397
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id][cache_str] = { $div: $elm.clone(true) };
32398
32398
  $elm.remove();
32399
32399
  func.events.delete_job(SESSION_ID, jobNoP);
@@ -34412,7 +34412,8 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34412
34412
  if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
34413
34413
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
34414
34414
  }
34415
- const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
34415
+
34416
+ 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 || {}));
34416
34417
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id][xu_render_cache_id] = { $div: $div.clone(true), paramsP };
34417
34418
  nodeP.xu_render_xu_ui_id = xu_ui_id;
34418
34419
  nodeP.xu_render_cache_id = xu_render_cache_id;