@xuda.io/runtime-bundle 1.0.264 → 1.0.266

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.
@@ -25191,7 +25191,7 @@ glb.run_xu_before = [
25191
25191
  // "xu-ui-plugin",
25192
25192
  // "programParameters",
25193
25193
  ];
25194
- glb.run_xu_after = ["xu-class", "xu-script", "xu-ui-plugin"];
25194
+ glb.run_xu_after = ["xu-bind", "xu-class", "xu-script", "xu-ui-plugin"];
25195
25195
  glb.attr_abbreviations_arr = [
25196
25196
  "xu-click",
25197
25197
  "xu-dblclick",
@@ -34062,7 +34062,9 @@ func.UI.screen.execute_xu_functions = async function (
34062
34062
  return {};
34063
34063
  },
34064
34064
  "xu-for": async function ($elm, data) {
34065
- if (parent_infoP?.iterate_info || !data.value) return {};
34065
+ // exit if call from rendered xu-for item to prevent infante loop (parent_infoP?.iterate_info indicate call from rendered item)
34066
+ if (parent_infoP?.iterate_info) return {};
34067
+ if (!data.value) return {};
34066
34068
  try {
34067
34069
  // data.value (xu-for) can store actual values such as an array, a CSV, or a field_id that references a specific field within the dataset, initialized with values for the iteration.
34068
34070
  let arr = data.value;