@xuda.io/runtime-bundle 1.0.422 → 1.0.424

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.
@@ -8644,13 +8644,12 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
8644
8644
  let exp_ret = await func.expression.get(SESSION_ID, exp, $xu_embed_container?.data()?.xuData?.paramsP?.dsSessionP, 'UI Attr EXP');
8645
8645
  prog_id = func.UI.screen.fix_val_defaults('program', exp_ret.result);
8646
8646
  }
8647
-
8648
- if (!ignore_disableAutoRefresh && _ds.tree_obj.disableAutoRefresh) {
8647
+ let prog_obj = await func.utils.DOCS_OBJ.get(SESSION_ID, prog_id);
8648
+ if (!ignore_disableAutoRefresh && prog_obj.properties.disableAutoRefresh) {
8649
8649
  continue;
8650
8650
  }
8651
8651
 
8652
- const parent_element_ui_id = $div.data().xuPanelData.parent_element_ui_id;
8653
- if (!panels_obj[parent_element_ui_id]) {
8652
+ if (!panels_obj[$div.attr('xu-ui-id')]) {
8654
8653
  panels_obj[$div.attr('xu-ui-id')] = {
8655
8654
  prog_id,
8656
8655
  panelXuAttributes,
@@ -8645,13 +8645,12 @@ func.UI.utils.get_panels_wrapper_from_dom = async function (SESSION_ID, $xu_embe
8645
8645
  let exp_ret = await func.expression.get(SESSION_ID, exp, $xu_embed_container?.data()?.xuData?.paramsP?.dsSessionP, 'UI Attr EXP');
8646
8646
  prog_id = func.UI.screen.fix_val_defaults('program', exp_ret.result);
8647
8647
  }
8648
-
8649
- if (!ignore_disableAutoRefresh && _ds.tree_obj.disableAutoRefresh) {
8648
+ let prog_obj = await func.utils.DOCS_OBJ.get(SESSION_ID, prog_id);
8649
+ if (!ignore_disableAutoRefresh && prog_obj.properties.disableAutoRefresh) {
8650
8650
  continue;
8651
8651
  }
8652
8652
 
8653
- const parent_element_ui_id = $div.data().xuPanelData.parent_element_ui_id;
8654
- if (!panels_obj[parent_element_ui_id]) {
8653
+ if (!panels_obj[$div.attr('xu-ui-id')]) {
8655
8654
  panels_obj[$div.attr('xu-ui-id')] = {
8656
8655
  prog_id,
8657
8656
  panelXuAttributes,