@xuda.io/runtime-bundle 1.0.625 → 1.0.627

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.
@@ -34247,20 +34247,22 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34247
34247
  var $wrapper = $('<div>');
34248
34248
  $div = func.UI.screen.create_container(SESSION_ID, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, prop, null, null, null, $wrapper, '');
34249
34249
 
34250
- let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, $div.clone(true), true, undefined, refreshed_ds);
34251
- if (ret.abort) {
34252
- // // program null
34253
- // if (ret.program_null) {
34254
- // return render_screen_type($div);
34255
- // }
34250
+ // let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, $div.clone(true), true, undefined, refreshed_ds);
34251
+ // if (ret.abort) {
34252
+ // // render N
34253
+ // return (ret.$new_div = $('<template>').append($div));
34254
+ // }
34256
34255
 
34257
- // render N
34258
- return (ret.$new_div = $('<template>').append($div));
34256
+ // let ret_done = await done(ret.$new_div);
34259
34257
 
34260
- // ret.$new_div = $("<template>").append($div);
34258
+ // return ret_done;
34259
+
34260
+ ////// render default children tree
34261
+ if (nodeP.children.length) {
34262
+ const default_children_ret = await func.UI.screen.render_ui_tree(SESSION_ID, $container, nodeP.children[0], parent_infoP, paramsP, jobNoP, null, 0, null, nodeP, null, $root_container);
34263
+ debugger;
34264
+ await done(default_children_ret);
34261
34265
  }
34262
- let ret_done = await done(ret.$new_div);
34263
- return ret_done;
34264
34266
  },
34265
34267
  };
34266
34268