@xuda.io/runtime-bundle 1.0.737 → 1.0.738

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.
@@ -32766,6 +32766,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32766
32766
  let properties = _.clone(plugin_index_resources.properties);
32767
32767
  for await (let [prop_name, prop_val] of Object.entries(properties)) {
32768
32768
  prop_val.value = value?.attributes?.[prop_name];
32769
+ if (value?.attributes?.[`xu-exp:${prop_name}`]) {
32770
+ const res = await func.expression.get(SESSION_ID, `xu-exp:${prop_name}`, paramsP.dsSessionP, 'UI Attr EXP');
32771
+ prop_val.value = res.result;
32772
+ }
32769
32773
  }
32770
32774
 
32771
32775
  const plugin_runtime_src = await func.utils.get_plugin_npm_cdn(SESSION_ID, plugin_name, `${_plugin.manifest['runtime.mjs'].dist ? 'dist/' : ''}runtime.mjs`);