@xuda.io/runtime-bundle 1.0.268 → 1.0.269

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.
@@ -15776,7 +15776,7 @@ func.UI.screen.create_container = function (
15776
15776
  console.error(e);
15777
15777
  }
15778
15778
 
15779
- if (parent_infoP && parent_infoP.iterate_info) {
15779
+ if (parent_infoP?.iterate_info) {
15780
15780
  $div.data().xuData.iterate_info = parent_infoP.iterate_info;
15781
15781
  }
15782
15782
 
@@ -16226,18 +16226,7 @@ func.UI.screen.render_ui_tree = async function (
16226
16226
  if (!nodeP || !nodeP.children) {
16227
16227
  return await done($divP);
16228
16228
  }
16229
- // TBD
16230
- // if (!is_mobile || (is_mobile && paramsP.udfTypeP !== "grid")) {
16231
- // if (
16232
- // $divP.children().length &&
16233
- // !$($divP.children()[0]).hasClass("udf_label") &&
16234
- // !parent_infoP &&
16235
- // !$divP.find("ion-refresher").length
16236
- // ) {
16237
- // await done($divP);
16238
- // return;
16239
- // }
16240
- // }
16229
+
16241
16230
 
16242
16231
  if (before_record_function) {
16243
16232
  await before_record_function();
@@ -16248,7 +16237,7 @@ func.UI.screen.render_ui_tree = async function (
16248
16237
  SESSION_ID,
16249
16238
  $divP,
16250
16239
  nodeP.children[key],
16251
- null,
16240
+ parent_infoP,
16252
16241
  paramsP,
16253
16242
  jobNoP,
16254
16243
  is_skeleton,
@@ -13186,7 +13186,7 @@ func.UI.screen.create_container = function (
13186
13186
  console.error(e);
13187
13187
  }
13188
13188
 
13189
- if (parent_infoP && parent_infoP.iterate_info) {
13189
+ if (parent_infoP?.iterate_info) {
13190
13190
  $div.data().xuData.iterate_info = parent_infoP.iterate_info;
13191
13191
  }
13192
13192
 
@@ -13636,18 +13636,7 @@ func.UI.screen.render_ui_tree = async function (
13636
13636
  if (!nodeP || !nodeP.children) {
13637
13637
  return await done($divP);
13638
13638
  }
13639
- // TBD
13640
- // if (!is_mobile || (is_mobile && paramsP.udfTypeP !== "grid")) {
13641
- // if (
13642
- // $divP.children().length &&
13643
- // !$($divP.children()[0]).hasClass("udf_label") &&
13644
- // !parent_infoP &&
13645
- // !$divP.find("ion-refresher").length
13646
- // ) {
13647
- // await done($divP);
13648
- // return;
13649
- // }
13650
- // }
13639
+
13651
13640
 
13652
13641
  if (before_record_function) {
13653
13642
  await before_record_function();
@@ -13658,7 +13647,7 @@ func.UI.screen.render_ui_tree = async function (
13658
13647
  SESSION_ID,
13659
13648
  $divP,
13660
13649
  nodeP.children[key],
13661
- null,
13650
+ parent_infoP,
13662
13651
  paramsP,
13663
13652
  jobNoP,
13664
13653
  is_skeleton,