@xuda.io/runtime-bundle 1.0.1115 → 1.0.1117

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.
package/css/mobile.css CHANGED
@@ -1059,5 +1059,5 @@ xu-nav {
1059
1059
  margin: 18px auto;
1060
1060
  }
1061
1061
  .display_none {
1062
- display: none;
1062
+ display: none !important;
1063
1063
  }
@@ -32459,7 +32459,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32459
32459
  // UI_WORKER_OBJ.xu_render_cache[xu_ui_id] = {};
32460
32460
  // }
32461
32461
  const cache_str = await get_xu_render_cache_str(SESSION_ID, paramsP.dsSessionP, Object.keys($elm.data()?.xuData?.attr_exp_info?.['xu-render']?.fields || {}));
32462
- UI_WORKER_OBJ.xu_render_cache[xu_ui_id + cache_str] = { $div: $elm.clone(true) };
32462
+ const _$div = $elm.clone(true);
32463
+ UI_WORKER_OBJ.xu_render_cache[xu_ui_id + cache_str] = { $div: _$div, data: _$div.data(), paramsP };
32463
32464
  $elm.remove();
32464
32465
  func.events.delete_job(SESSION_ID, jobNoP);
32465
32466
  };