@xuda.io/runtime-bundle 1.0.1074 → 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.
@@ -32338,7 +32338,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32338
32338
  const init_render = async function () {
32339
32339
  nodeP.xu_render_made = value;
32340
32340
  if (!value) {
32341
- return { has_xu_render_attribute: true, xu_render_in_process: true };
32341
+ return { has_xu_render_attribute: true, xu_render_in_process: true, abort: true };
32342
32342
  }
32343
32343
  return { has_xu_render_attribute: true };
32344
32344
  };
@@ -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.attr_exp_info?.['xu-render']?.fields || {}));
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.attr_exp_info?.['xu-render']?.fields || {}));
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.attr_exp_info?.['xu-render']?.fields || {}));
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;