@xuda.io/runtime-bundle 1.0.1092 → 1.0.1093

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.
@@ -34567,7 +34567,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34567
34567
  // $container.find(`[xu-ui-id="${xu_ui_id}"]`).remove();
34568
34568
  return $div;
34569
34569
  } else {
34570
- $container.append(temp_$container.children());
34570
+ temp_$div.replaceWith($div);
34571
34571
  return $div;
34572
34572
  }
34573
34573
  } else {
@@ -34581,12 +34581,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34581
34581
  if (!element || element === 'script') return await done();
34582
34582
  let str = '';
34583
34583
 
34584
- var $div = await func.UI.screen.create_container(SESSION_ID, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, prop, null, null, element, null, str);
34584
+ var temp_$div = await func.UI.screen.create_container(SESSION_ID, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, prop, null, null, element, null, str);
34585
34585
 
34586
34586
  $div.css('display', 'none');
34587
34587
 
34588
34588
  let temp_$container = $('<tmp>').data('xuData', $container.data().xuData);
34589
- let temp_$div = $div.clone(true);
34589
+ let $div = temp_$div.clone(true);
34590
34590
 
34591
34591
  $div.hover(
34592
34592
  function (e) {
@@ -34602,7 +34602,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34602
34602
  });
34603
34603
  }
34604
34604
 
34605
- let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, temp_$container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, temp_$div, true);
34605
+ let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, temp_$container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, $div, true);
34606
34606
  if (ret.abort || nodeP.tagName === 'svg' || !_.isEmpty(nodeP?.attributes?.['xu-text']) || !_.isEmpty(nodeP?.attributes?.['xu-html']) || !_.isEmpty(nodeP?.attributes?.['xu-exp:xu-text']) || !_.isEmpty(nodeP?.attributes?.['xu-exp:xu-html'])) {
34607
34607
  return await done(ret);
34608
34608
  }
@@ -34701,9 +34701,9 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34701
34701
  } else {
34702
34702
  if (ret.xu_render_background_processing) {
34703
34703
  // let temp_$div = $div.clone(true);
34704
- iterate_child(temp_$div, nodeP, parent_infoP, $root_container);
34704
+ iterate_child($div, nodeP, parent_infoP, $root_container);
34705
34705
  } else {
34706
- await iterate_child(temp_$div, nodeP, parent_infoP, $root_container);
34706
+ await iterate_child($div, nodeP, parent_infoP, $root_container);
34707
34707
  }
34708
34708
  }
34709
34709