@xuda.io/runtime-bundle 1.0.465 → 1.0.466
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
|
@@ -12053,6 +12053,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12053
12053
|
let ret = await common_fx['xu-render']($elm, val);
|
|
12054
12054
|
return ret;
|
|
12055
12055
|
},
|
|
12056
|
+
'xu-ref': async function ($elm, val) {
|
|
12057
|
+
let ret = await common_fx['xu-ref']($elm, val);
|
|
12058
|
+
return ret;
|
|
12059
|
+
},
|
|
12056
12060
|
},
|
|
12057
12061
|
};
|
|
12058
12062
|
|
|
@@ -10126,6 +10126,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10126
10126
|
let ret = await common_fx['xu-render']($elm, val);
|
|
10127
10127
|
return ret;
|
|
10128
10128
|
},
|
|
10129
|
+
'xu-ref': async function ($elm, val) {
|
|
10130
|
+
let ret = await common_fx['xu-ref']($elm, val);
|
|
10131
|
+
return ret;
|
|
10132
|
+
},
|
|
10129
10133
|
},
|
|
10130
10134
|
};
|
|
10131
10135
|
|