@xuda.io/runtime-bundle 1.0.620 → 1.0.622
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
|
@@ -12295,6 +12295,11 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12295
12295
|
return ret;
|
|
12296
12296
|
}
|
|
12297
12297
|
|
|
12298
|
+
////// render default children tree
|
|
12299
|
+
if (nodeP.children.length) {
|
|
12300
|
+
const default_children_ret = await func.UI.screen.render_ui_tree(SESSION_ID, $container, nodeP.children[0], parent_infoP, paramsP, jobNoP, null, 0, null, nodeP, null, $root_container);
|
|
12301
|
+
}
|
|
12302
|
+
|
|
12298
12303
|
if (!val.value) {
|
|
12299
12304
|
val.value = '_empty_panel_program';
|
|
12300
12305
|
}
|
|
@@ -12971,6 +12976,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12971
12976
|
return {};
|
|
12972
12977
|
}
|
|
12973
12978
|
if (!$elm.data().xuData) return;
|
|
12979
|
+
|
|
12974
12980
|
$elm.data().xuData.debug_info.attribute_stat[new_val.key] = new_val.value;
|
|
12975
12981
|
|
|
12976
12982
|
// IGNORE UNDEFINED or NULL ATTRIBUTES
|
|
@@ -10026,6 +10026,11 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10026
10026
|
return ret;
|
|
10027
10027
|
}
|
|
10028
10028
|
|
|
10029
|
+
////// render default children tree
|
|
10030
|
+
if (nodeP.children.length) {
|
|
10031
|
+
const default_children_ret = await func.UI.screen.render_ui_tree(SESSION_ID, $container, nodeP.children[0], parent_infoP, paramsP, jobNoP, null, 0, null, nodeP, null, $root_container);
|
|
10032
|
+
}
|
|
10033
|
+
|
|
10029
10034
|
if (!val.value) {
|
|
10030
10035
|
val.value = '_empty_panel_program';
|
|
10031
10036
|
}
|
|
@@ -10702,6 +10707,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10702
10707
|
return {};
|
|
10703
10708
|
}
|
|
10704
10709
|
if (!$elm.data().xuData) return;
|
|
10710
|
+
|
|
10705
10711
|
$elm.data().xuData.debug_info.attribute_stat[new_val.key] = new_val.value;
|
|
10706
10712
|
|
|
10707
10713
|
// IGNORE UNDEFINED or NULL ATTRIBUTES
|