@xuda.io/runtime-bundle 1.0.1061 → 1.0.1062

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.
@@ -27818,6 +27818,10 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
27818
27818
 
27819
27819
  var $elm = func.UI.utils.find_in_element_data('xuData', $(SESSION_OBJ[SESSION_ID].root_element), 'xu_id', queue_obj.paramsP.elem_key);
27820
27820
 
27821
+ if (glb.new_xu_render) {
27822
+ $elm = $(`[xu-ui-id="${queue_obj.paramsP.elem_key}"]`);
27823
+ }
27824
+
27821
27825
  if (!$elm.length) {
27822
27826
  return done();
27823
27827
  }
@@ -34611,7 +34615,7 @@ func.UI.screen.refresh_document_changes_for_realtime_update = async function (SE
34611
34615
  }
34612
34616
  };
34613
34617
 
34614
- const get_xu_render_cache_str = async function (SESSION_ID, dsSessionP) {
34618
+ const get_xu_render_cache_str = async function (SESSION_ID, dsSessionP, exclude_vars = []) {
34615
34619
  var _session = SESSION_OBJ[SESSION_ID];
34616
34620
  var _ds = _session.DS_GLB[dsSessionP];
34617
34621
 
@@ -34621,6 +34625,7 @@ const get_xu_render_cache_str = async function (SESSION_ID, dsSessionP) {
34621
34625
  let str = '';
34622
34626
 
34623
34627
  for (const [key, val] of Object.entries(data)) {
34628
+ if (exclude_vars.includes(key)) continue;
34624
34629
  str += typeof val !== 'undefined' ? JSON.stringify(val) : '';
34625
34630
  }
34626
34631