@xuda.io/runtime-bundle 1.0.566 → 1.0.568
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
|
@@ -12338,11 +12338,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12338
12338
|
}
|
|
12339
12339
|
return alter_program();
|
|
12340
12340
|
},
|
|
12341
|
-
|
|
12341
|
+
|
|
12342
12342
|
'xu-render': async function ($elm, val) {
|
|
12343
|
-
// if (val.value) {
|
|
12344
|
-
// return {};
|
|
12345
|
-
// }
|
|
12346
12343
|
let ret = await common_fx['xu-render']($elm, val, true);
|
|
12347
12344
|
return ret;
|
|
12348
12345
|
},
|
|
@@ -12353,16 +12350,17 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12353
12350
|
},
|
|
12354
12351
|
[`xu-teleport`]: {
|
|
12355
12352
|
to: async function ($elm, val) {
|
|
12356
|
-
|
|
12357
|
-
|
|
12353
|
+
const ret = await func.UI.screen.render_ui_tree(SESSION_ID, $(val.value), nodeP, parent_infoP, paramsP, jobNoP, is_skeleton, Number(keyP), null, nodeP, null, $root_container);
|
|
12354
|
+
|
|
12355
|
+
return { abort: true };
|
|
12358
12356
|
},
|
|
12359
12357
|
'xu-render': async function ($elm, val) {
|
|
12360
|
-
|
|
12361
|
-
return
|
|
12358
|
+
let ret = await common_fx['xu-render']($elm, val, true);
|
|
12359
|
+
return ret;
|
|
12362
12360
|
},
|
|
12363
12361
|
'xu-show': async function ($elm, val) {
|
|
12364
|
-
|
|
12365
|
-
return
|
|
12362
|
+
let ret = await common_fx['xu-show']($elm, val, true);
|
|
12363
|
+
return ret;
|
|
12366
12364
|
},
|
|
12367
12365
|
},
|
|
12368
12366
|
};
|
|
@@ -10070,11 +10070,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10070
10070
|
}
|
|
10071
10071
|
return alter_program();
|
|
10072
10072
|
},
|
|
10073
|
-
|
|
10073
|
+
|
|
10074
10074
|
'xu-render': async function ($elm, val) {
|
|
10075
|
-
// if (val.value) {
|
|
10076
|
-
// return {};
|
|
10077
|
-
// }
|
|
10078
10075
|
let ret = await common_fx['xu-render']($elm, val, true);
|
|
10079
10076
|
return ret;
|
|
10080
10077
|
},
|
|
@@ -10085,16 +10082,17 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10085
10082
|
},
|
|
10086
10083
|
[`xu-teleport`]: {
|
|
10087
10084
|
to: async function ($elm, val) {
|
|
10088
|
-
|
|
10089
|
-
|
|
10085
|
+
const ret = await func.UI.screen.render_ui_tree(SESSION_ID, $(val.value), nodeP, parent_infoP, paramsP, jobNoP, is_skeleton, Number(keyP), null, nodeP, null, $root_container);
|
|
10086
|
+
|
|
10087
|
+
return { abort: true };
|
|
10090
10088
|
},
|
|
10091
10089
|
'xu-render': async function ($elm, val) {
|
|
10092
|
-
|
|
10093
|
-
return
|
|
10090
|
+
let ret = await common_fx['xu-render']($elm, val, true);
|
|
10091
|
+
return ret;
|
|
10094
10092
|
},
|
|
10095
10093
|
'xu-show': async function ($elm, val) {
|
|
10096
|
-
|
|
10097
|
-
return
|
|
10094
|
+
let ret = await common_fx['xu-show']($elm, val, true);
|
|
10095
|
+
return ret;
|
|
10098
10096
|
},
|
|
10099
10097
|
},
|
|
10100
10098
|
};
|