@xuda.io/runtime-bundle 1.0.513 → 1.0.514

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.
@@ -32260,6 +32260,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32260
32260
  let ret_panel = await func.UI.screen.init(SESSION_ID, prog_id, paramsP.screenId, _ds, $elm, null, _ds.currentRecordId, null, true, param_obj, 'initXu_panel', undefined, refreshed_ds);
32261
32261
  ret = { $new_div: ret_panel };
32262
32262
  $container.data().xuData.xuPanelProps = $elm.data().xuAttributes;
32263
+ $container.data().xuData.xuPanelData = ret_panel.data();
32263
32264
  return ret;
32264
32265
  }
32265
32266
 
@@ -32334,7 +32335,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32334
32335
  return ret;
32335
32336
  },
32336
32337
  'xu-ref': async function ($elm, val) {
32337
- let ret = await common_fx['xu-ref']($container, val);
32338
+ let ret = await common_fx['xu-ref']($container, val, $elm.xuPanelData.xuData.paramsP.dsSession);
32338
32339
  return ret;
32339
32340
  },
32340
32341
  },
@@ -32394,8 +32395,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32394
32395
  };
32395
32396
 
32396
32397
  const common_fx = {
32397
- 'xu-ref': async function ($elm, val) {
32398
- func.UI.update_xu_ref(SESSION_ID, paramsP.dsSessionP, val.value, $elm);
32398
+ 'xu-ref': async function ($elm, val, dsSession) {
32399
+ func.UI.update_xu_ref(SESSION_ID, dsSession || paramsP.dsSessionP, val.value, $elm);
32399
32400
 
32400
32401
  // Select the node that will be observed for mutations
32401
32402
  const targetNode = $elm[0];