@xuda.io/runtime-bundle 1.0.522 → 1.0.524

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.
@@ -32083,11 +32083,14 @@ func.UI.screen.refresh_screen = async function (SESSION_ID, fields_changed_arr,
32083
32083
  const ts = Date.now();
32084
32084
  // remove old panel content
32085
32085
  $.each(panel_val.ids, async function (key, val) {
32086
- $("[xu-ui-id='" + val + "']").attr('xu-ui-id', val + ts);
32086
+ $("[xu-ui-id='" + val + "']")
32087
+ .attr('xu-ui-id', val + ts)
32088
+ .css('filter', 'blur(1px)');
32087
32089
  });
32088
32090
 
32089
32091
  let refreshed_ds;
32090
32092
  // check if ds exist and deleted by garbage collector
32093
+ const _session = SESSION_OBJ[SESSION_ID];
32091
32094
  if (_session.DS_GLB[panel_val._ds.dsSession]) {
32092
32095
  refreshed_ds = panel_val._ds.dsSession;
32093
32096
  }