@xuda.io/runtime-bundle 1.0.564 → 1.0.566
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.
|
@@ -32045,6 +32045,15 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32045
32045
|
[`xu-teleport`]: {
|
|
32046
32046
|
to: async function ($elm, val) {
|
|
32047
32047
|
debugger;
|
|
32048
|
+
return {};
|
|
32049
|
+
},
|
|
32050
|
+
'xu-render': async function ($elm, val) {
|
|
32051
|
+
debugger;
|
|
32052
|
+
return {};
|
|
32053
|
+
},
|
|
32054
|
+
'xu-show': async function ($elm, val) {
|
|
32055
|
+
debugger;
|
|
32056
|
+
return {};
|
|
32048
32057
|
},
|
|
32049
32058
|
},
|
|
32050
32059
|
};
|
|
@@ -32923,7 +32932,8 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
32923
32932
|
|
|
32924
32933
|
const new_key = key.split(':')[0]; // break expression
|
|
32925
32934
|
if (
|
|
32926
|
-
nodeP.tagName !== 'xu-panel' &&
|
|
32935
|
+
nodeP.tagName !== 'xu-panel' &&
|
|
32936
|
+
nodeP.tagName !== 'xu-teleport' && // nodeP.tagName.substr(0, 3) !== "xu-" &&
|
|
32927
32937
|
(new_key.substr(0, 2) !== 'xu' || new_key.substr(2, 1) !== '-')
|
|
32928
32938
|
) {
|
|
32929
32939
|
// handle common html attributes
|