@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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -12653,12 +12653,16 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12653
12653
|
|
|
12654
12654
|
const new_render = async function () {
|
|
12655
12655
|
var value = await func.common.get_cast_val(SESSION_ID, 'common fx', 'xu-render', 'bool', val.value);
|
|
12656
|
+
const has_xu_render_attribute = $elm.data()?.xuData?.attr_exp_info?.['xu-render'] ? true : false;
|
|
12656
12657
|
const init_render = async function () {
|
|
12657
12658
|
nodeP.xu_render_made = value;
|
|
12658
12659
|
if (!value) {
|
|
12659
|
-
|
|
12660
|
+
if (has_xu_render_attribute) {
|
|
12661
|
+
return { has_xu_render_attribute, xu_render_in_process: true, abort: true };
|
|
12662
|
+
}
|
|
12663
|
+
return { abort: true };
|
|
12660
12664
|
}
|
|
12661
|
-
return { has_xu_render_attribute
|
|
12665
|
+
return { has_xu_render_attribute };
|
|
12662
12666
|
};
|
|
12663
12667
|
|
|
12664
12668
|
const post_render = async function () {
|
|
@@ -10378,12 +10378,16 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10378
10378
|
|
|
10379
10379
|
const new_render = async function () {
|
|
10380
10380
|
var value = await func.common.get_cast_val(SESSION_ID, 'common fx', 'xu-render', 'bool', val.value);
|
|
10381
|
+
const has_xu_render_attribute = $elm.data()?.xuData?.attr_exp_info?.['xu-render'] ? true : false;
|
|
10381
10382
|
const init_render = async function () {
|
|
10382
10383
|
nodeP.xu_render_made = value;
|
|
10383
10384
|
if (!value) {
|
|
10384
|
-
|
|
10385
|
+
if (has_xu_render_attribute) {
|
|
10386
|
+
return { has_xu_render_attribute, xu_render_in_process: true, abort: true };
|
|
10387
|
+
}
|
|
10388
|
+
return { abort: true };
|
|
10385
10389
|
}
|
|
10386
|
-
return { has_xu_render_attribute
|
|
10390
|
+
return { has_xu_render_attribute };
|
|
10387
10391
|
};
|
|
10388
10392
|
|
|
10389
10393
|
const post_render = async function () {
|