@xuda.io/runtime-bundle 1.0.987 → 1.0.989

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.
@@ -30957,6 +30957,7 @@ func.UI.screen.init = async function (SESSION_ID, prog_id, sourceScreenP, callin
30957
30957
  ui_engine: UI_FRAMEWORK_INSTALLED,
30958
30958
  })
30959
30959
  .addClass('xu_embed_container')
30960
+ .css({ display: 'contents' })
30960
30961
  .data({
30961
30962
  xuData: {
30962
30963
  paramsP: params,
@@ -32132,7 +32133,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32132
32133
  var value = await func.common.get_cast_val(SESSION_ID, 'common fx', 'xu-render', 'bool', val.value);
32133
32134
  const init_render = function () {
32134
32135
  if (!value) {
32135
- var cloned_$div = $elm.clone(true);
32136
+ var cloned_$div = $elm.clone(true, true);
32136
32137
 
32137
32138
  let $xurender = $('<xurender>')
32138
32139
  // .attr('xu-ui-id', nodeP.id + '_' + $elm.data().xuData.recordid)
@@ -32190,7 +32191,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32190
32191
  // original_data_obj.$root_container,
32191
32192
  // );
32192
32193
 
32193
- const new_$div = original_data_obj.$container.clone(true);
32194
+ const new_$div = original_data_obj.$container.clone(true, true);
32194
32195
 
32195
32196
  new_$div.data().xuData.original_data_obj = original_data_obj;
32196
32197
  new_$div.data().xuData.xurender_node = $elm.clone(true);