@xuda.io/runtime-bundle 1.0.615 → 1.0.616

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.
@@ -31584,7 +31584,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31584
31584
  }
31585
31585
 
31586
31586
  /////////// xu-for for non displayed elements ////////////
31587
- const iterate_field_in_progUi = async function (progUi, field_id) {
31587
+ const iterate_field_in_progUi = async function (progUi, field_id, panel_val) {
31588
31588
  let found;
31589
31589
  const iterate_progUi = async function (node, node_id) {
31590
31590
  for (let item of node) {
@@ -31616,7 +31616,7 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31616
31616
  await func.UI.worker.add_to_queue(SESSION_ID, 'gui event', 'execute_xu_for', obj, new_job, _elem_val.$elm, _elem_val.$elm.data().xuData.paramsP.dsSessionP);
31617
31617
 
31618
31618
  if (_session.engine_mode === 'live_preview') {
31619
- console.info('node execute_xu_for', obj);
31619
+ console.info('node execute_xu_for', obj, panel_val);
31620
31620
  }
31621
31621
 
31622
31622
  break;
@@ -31646,10 +31646,10 @@ func.UI.screen.refresh_xu_attributes = async function (SESSION_ID, fields_arr, j
31646
31646
  await iterate_field_in_progUi(progUi, field_id);
31647
31647
  }
31648
31648
  }
31649
- // // run panels
31650
- // for await (const [panel_wrapper_element_ui_id, panel_val] of Object.entries(panels_obj)) {
31651
- // await iterate_field_in_progUi(panel_val.progUi, field_id);
31652
- // }
31649
+ // run panels
31650
+ for await (const [panel_wrapper_element_ui_id, panel_val] of Object.entries(panels_obj)) {
31651
+ await iterate_field_in_progUi(panel_val.progUi, field_id, panel_val);
31652
+ }
31653
31653
  }
31654
31654
 
31655
31655
  func.events.delete_job(SESSION_ID, jobNoP);