@xuda.io/runtime-bundle 1.0.1073 → 1.0.1075
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
|
@@ -12654,7 +12654,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12654
12654
|
const init_render = async function () {
|
|
12655
12655
|
nodeP.xu_render_made = value;
|
|
12656
12656
|
if (!value) {
|
|
12657
|
-
return { has_xu_render_attribute: true, xu_render_in_process: true };
|
|
12657
|
+
return { has_xu_render_attribute: true, xu_render_in_process: true, abort: true };
|
|
12658
12658
|
}
|
|
12659
12659
|
return { has_xu_render_attribute: true };
|
|
12660
12660
|
};
|
|
@@ -12676,7 +12676,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12676
12676
|
|
|
12677
12677
|
$.each(new_$div.find('*'), (key, val) => {
|
|
12678
12678
|
const _xuAttributes = $(val)?.data()?.xuAttributes;
|
|
12679
|
-
if (found_parent_vars) return;
|
|
12679
|
+
if (found_parent_vars || !_xuAttributes) return;
|
|
12680
12680
|
for (const [attr_key, attr_val] of Object.entries(_xuAttributes)) {
|
|
12681
12681
|
if (found_parent_vars) break;
|
|
12682
12682
|
for (const [key, val] of Object.entries(parent_fields)) {
|
|
@@ -10379,7 +10379,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10379
10379
|
const init_render = async function () {
|
|
10380
10380
|
nodeP.xu_render_made = value;
|
|
10381
10381
|
if (!value) {
|
|
10382
|
-
return { has_xu_render_attribute: true, xu_render_in_process: true };
|
|
10382
|
+
return { has_xu_render_attribute: true, xu_render_in_process: true, abort: true };
|
|
10383
10383
|
}
|
|
10384
10384
|
return { has_xu_render_attribute: true };
|
|
10385
10385
|
};
|
|
@@ -10401,7 +10401,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10401
10401
|
|
|
10402
10402
|
$.each(new_$div.find('*'), (key, val) => {
|
|
10403
10403
|
const _xuAttributes = $(val)?.data()?.xuAttributes;
|
|
10404
|
-
if (found_parent_vars) return;
|
|
10404
|
+
if (found_parent_vars || !_xuAttributes) return;
|
|
10405
10405
|
for (const [attr_key, attr_val] of Object.entries(_xuAttributes)) {
|
|
10406
10406
|
if (found_parent_vars) break;
|
|
10407
10407
|
for (const [key, val] of Object.entries(parent_fields)) {
|