@xuda.io/runtime-bundle 1.0.1065 → 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.
@@ -12665,7 +12665,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
12665
12665
  nodeP.xu_render_made = value;
12666
12666
  if (value) {
12667
12667
  try {
12668
- const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
12668
+ 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 || {}));
12669
12669
  const xu_ui_id = $elm.attr('xu-ui-id');
12670
12670
  let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id]?.[xu_render_cache_id]?.$div.clone(true);
12671
12671
 
@@ -12709,7 +12709,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
12709
12709
  if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
12710
12710
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
12711
12711
  }
12712
- const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
12712
+ const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData.attr_exp_info?.['xu-render']?.fields || {}));
12713
12713
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id][cache_str] = { $div: $elm.clone(true) };
12714
12714
  $elm.remove();
12715
12715
  func.events.delete_job(SESSION_ID, jobNoP);
@@ -10390,7 +10390,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10390
10390
  nodeP.xu_render_made = value;
10391
10391
  if (value) {
10392
10392
  try {
10393
- const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
10393
+ 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 || {}));
10394
10394
  const xu_ui_id = $elm.attr('xu-ui-id');
10395
10395
  let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id]?.[xu_render_cache_id]?.$div.clone(true);
10396
10396
 
@@ -10434,7 +10434,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10434
10434
  if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
10435
10435
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
10436
10436
  }
10437
- const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
10437
+ const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData.attr_exp_info?.['xu-render']?.fields || {}));
10438
10438
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id][cache_str] = { $div: $elm.clone(true) };
10439
10439
  $elm.remove();
10440
10440
  func.events.delete_job(SESSION_ID, jobNoP);