@xuda.io/runtime-bundle 1.0.583 → 1.0.584

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.
@@ -12050,7 +12050,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
12050
12050
 
12051
12051
  if (found) {
12052
12052
  refresh_reason = `field ${field_id} in progDataSource parameter_in changed`;
12053
- refresh_details = progDataSource_str;
12053
+ refresh_details = panel_val?.prog_doc?.progDataSource;
12054
12054
 
12055
12055
  break;
12056
12056
  }
@@ -12073,7 +12073,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
12073
12073
  found = progDataSource_str?.includes('@' + field_id);
12074
12074
  if (found) {
12075
12075
  refresh_reason = `field ${field_id} in progDataSource changed`;
12076
- refresh_details = progDataSource_str;
12076
+ refresh_details = panel_val?.prog_doc?.progDataSource;
12077
12077
 
12078
12078
  break;
12079
12079
  }
@@ -12100,7 +12100,8 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
12100
12100
  const _session = SESSION_OBJ[SESSION_ID];
12101
12101
  if (_session.engine_mode === 'live_preview') {
12102
12102
  console.info('========= refresh info ==============');
12103
- console.info('reason:', refresh_reason, refresh_details);
12103
+ console.info('reason:', refresh_reason);
12104
+ console.info('details::', refresh_details);
12104
12105
  console.info('ds:', panel_val._ds);
12105
12106
  console.info('=====================================');
12106
12107
  }
@@ -9782,7 +9782,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
9782
9782
 
9783
9783
  if (found) {
9784
9784
  refresh_reason = `field ${field_id} in progDataSource parameter_in changed`;
9785
- refresh_details = progDataSource_str;
9785
+ refresh_details = panel_val?.prog_doc?.progDataSource;
9786
9786
 
9787
9787
  break;
9788
9788
  }
@@ -9805,7 +9805,7 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
9805
9805
  found = progDataSource_str?.includes('@' + field_id);
9806
9806
  if (found) {
9807
9807
  refresh_reason = `field ${field_id} in progDataSource changed`;
9808
- refresh_details = progDataSource_str;
9808
+ refresh_details = panel_val?.prog_doc?.progDataSource;
9809
9809
 
9810
9810
  break;
9811
9811
  }
@@ -9832,7 +9832,8 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
9832
9832
  const _session = SESSION_OBJ[SESSION_ID];
9833
9833
  if (_session.engine_mode === 'live_preview') {
9834
9834
  console.info('========= refresh info ==============');
9835
- console.info('reason:', refresh_reason, refresh_details);
9835
+ console.info('reason:', refresh_reason);
9836
+ console.info('details::', refresh_details);
9836
9837
  console.info('ds:', panel_val._ds);
9837
9838
  console.info('=====================================');
9838
9839
  }