@xuda.io/runtime-bundle 1.0.1079 → 1.0.1080
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.
|
@@ -32337,12 +32337,16 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
32337
32337
|
|
|
32338
32338
|
const new_render = async function () {
|
|
32339
32339
|
var value = await func.common.get_cast_val(SESSION_ID, 'common fx', 'xu-render', 'bool', val.value);
|
|
32340
|
+
const has_xu_render_attribute = $elm.data()?.xuData?.attr_exp_info?.['xu-render'] ? true : false;
|
|
32340
32341
|
const init_render = async function () {
|
|
32341
32342
|
nodeP.xu_render_made = value;
|
|
32342
32343
|
if (!value) {
|
|
32343
|
-
|
|
32344
|
+
if (has_xu_render_attribute) {
|
|
32345
|
+
return { has_xu_render_attribute, xu_render_in_process: true, abort: true };
|
|
32346
|
+
}
|
|
32347
|
+
return { abort: true };
|
|
32344
32348
|
}
|
|
32345
|
-
return { has_xu_render_attribute
|
|
32349
|
+
return { has_xu_render_attribute };
|
|
32346
32350
|
};
|
|
32347
32351
|
|
|
32348
32352
|
const post_render = async function () {
|