@xuda.io/runtime-bundle 1.0.1063 → 1.0.1065

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.
@@ -13187,7 +13187,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
13187
13187
 
13188
13188
  let _xuData = $elm.data().xuData;
13189
13189
  if (!_xuData.attr_exp_info) {
13190
- attr_exp_info = {};
13190
+ _xuData.attr_exp_info = {};
13191
13191
  }
13192
13192
 
13193
13193
  const attr = `xu-exp:${attrib}`;
@@ -14728,7 +14728,8 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
14728
14728
  if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
14729
14729
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
14730
14730
  }
14731
- const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
14731
+
14732
+ 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 || {}));
14732
14733
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id][xu_render_cache_id] = { $div: $div.clone(true), paramsP };
14733
14734
  nodeP.xu_render_xu_ui_id = xu_ui_id;
14734
14735
  nodeP.xu_render_cache_id = xu_render_cache_id;
@@ -10912,7 +10912,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
10912
10912
 
10913
10913
  let _xuData = $elm.data().xuData;
10914
10914
  if (!_xuData.attr_exp_info) {
10915
- attr_exp_info = {};
10915
+ _xuData.attr_exp_info = {};
10916
10916
  }
10917
10917
 
10918
10918
  const attr = `xu-exp:${attrib}`;
@@ -12453,7 +12453,8 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
12453
12453
  if (!UI_WORKER_OBJ.xu_render_cache[xu_ui_id]) {
12454
12454
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
12455
12455
  }
12456
- const xu_render_cache_id = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP);
12456
+
12457
+ 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 || {}));
12457
12458
  UI_WORKER_OBJ.xu_render_cache[xu_ui_id][xu_render_cache_id] = { $div: $div.clone(true), paramsP };
12458
12459
  nodeP.xu_render_xu_ui_id = xu_ui_id;
12459
12460
  nodeP.xu_render_cache_id = xu_render_cache_id;