@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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -13097,6 +13097,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
13097
13097
|
let properties = _.clone(plugin_index_resources.properties);
|
|
13098
13098
|
for await (let [prop_name, prop_val] of Object.entries(properties)) {
|
|
13099
13099
|
prop_val.value = value?.attributes?.[prop_name];
|
|
13100
|
+
if (value?.attributes?.[`xu-exp:${prop_name}`]) {
|
|
13101
|
+
const res = await func.expression.get(SESSION_ID, `xu-exp:${prop_name}`, paramsP.dsSessionP, 'UI Attr EXP');
|
|
13102
|
+
prop_val.value = res.result;
|
|
13103
|
+
}
|
|
13100
13104
|
}
|
|
13101
13105
|
|
|
13102
13106
|
const plugin_runtime_src = await func.utils.get_plugin_npm_cdn(SESSION_ID, plugin_name, `${_plugin.manifest['runtime.mjs'].dist ? 'dist/' : ''}runtime.mjs`);
|
|
@@ -10807,6 +10807,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10807
10807
|
let properties = _.clone(plugin_index_resources.properties);
|
|
10808
10808
|
for await (let [prop_name, prop_val] of Object.entries(properties)) {
|
|
10809
10809
|
prop_val.value = value?.attributes?.[prop_name];
|
|
10810
|
+
if (value?.attributes?.[`xu-exp:${prop_name}`]) {
|
|
10811
|
+
const res = await func.expression.get(SESSION_ID, `xu-exp:${prop_name}`, paramsP.dsSessionP, 'UI Attr EXP');
|
|
10812
|
+
prop_val.value = res.result;
|
|
10813
|
+
}
|
|
10810
10814
|
}
|
|
10811
10815
|
|
|
10812
10816
|
const plugin_runtime_src = await func.utils.get_plugin_npm_cdn(SESSION_ID, plugin_name, `${_plugin.manifest['runtime.mjs'].dist ? 'dist/' : ''}runtime.mjs`);
|