@xuda.io/runtime-bundle 1.0.1091 → 1.0.1092
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
|
@@ -14880,18 +14880,16 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14880
14880
|
nodeP.xu_render_xu_ui_id = xu_ui_id;
|
|
14881
14881
|
nodeP.xu_render_cache_id = xu_render_cache_id;
|
|
14882
14882
|
if (ret.xu_render_background_processing) {
|
|
14883
|
-
$container.find(`[xu-ui-id="${xu_ui_id}"]`).remove();
|
|
14883
|
+
// $container.find(`[xu-ui-id="${xu_ui_id}"]`).remove();
|
|
14884
14884
|
return $div;
|
|
14885
|
-
}
|
|
14886
|
-
|
|
14887
|
-
|
|
14888
|
-
|
|
14889
|
-
|
|
14890
|
-
return $div;
|
|
14885
|
+
} else {
|
|
14886
|
+
$container.append(temp_$container.children());
|
|
14887
|
+
return $div;
|
|
14888
|
+
}
|
|
14891
14889
|
} else {
|
|
14892
14890
|
// $container.append(temp_$container.children());
|
|
14893
14891
|
if (ret.has_xu_render_attribute) {
|
|
14894
|
-
$container.find(`[xu-ui-id="${xu_ui_id}"]`).remove();
|
|
14892
|
+
// $container.find(`[xu-ui-id="${xu_ui_id}"]`).remove();
|
|
14895
14893
|
}
|
|
14896
14894
|
return $div;
|
|
14897
14895
|
}
|
|
@@ -15019,9 +15017,9 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
15019
15017
|
} else {
|
|
15020
15018
|
if (ret.xu_render_background_processing) {
|
|
15021
15019
|
// let temp_$div = $div.clone(true);
|
|
15022
|
-
iterate_child($div, nodeP, parent_infoP, $root_container);
|
|
15020
|
+
iterate_child(temp_$div, nodeP, parent_infoP, $root_container);
|
|
15023
15021
|
} else {
|
|
15024
|
-
await iterate_child($div, nodeP, parent_infoP, $root_container);
|
|
15022
|
+
await iterate_child(temp_$div, nodeP, parent_infoP, $root_container);
|
|
15025
15023
|
}
|
|
15026
15024
|
}
|
|
15027
15025
|
|
|
@@ -12605,18 +12605,16 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12605
12605
|
nodeP.xu_render_xu_ui_id = xu_ui_id;
|
|
12606
12606
|
nodeP.xu_render_cache_id = xu_render_cache_id;
|
|
12607
12607
|
if (ret.xu_render_background_processing) {
|
|
12608
|
-
$container.find(`[xu-ui-id="${xu_ui_id}"]`).remove();
|
|
12608
|
+
// $container.find(`[xu-ui-id="${xu_ui_id}"]`).remove();
|
|
12609
12609
|
return $div;
|
|
12610
|
-
}
|
|
12611
|
-
|
|
12612
|
-
|
|
12613
|
-
|
|
12614
|
-
|
|
12615
|
-
return $div;
|
|
12610
|
+
} else {
|
|
12611
|
+
$container.append(temp_$container.children());
|
|
12612
|
+
return $div;
|
|
12613
|
+
}
|
|
12616
12614
|
} else {
|
|
12617
12615
|
// $container.append(temp_$container.children());
|
|
12618
12616
|
if (ret.has_xu_render_attribute) {
|
|
12619
|
-
$container.find(`[xu-ui-id="${xu_ui_id}"]`).remove();
|
|
12617
|
+
// $container.find(`[xu-ui-id="${xu_ui_id}"]`).remove();
|
|
12620
12618
|
}
|
|
12621
12619
|
return $div;
|
|
12622
12620
|
}
|
|
@@ -12744,9 +12742,9 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12744
12742
|
} else {
|
|
12745
12743
|
if (ret.xu_render_background_processing) {
|
|
12746
12744
|
// let temp_$div = $div.clone(true);
|
|
12747
|
-
iterate_child($div, nodeP, parent_infoP, $root_container);
|
|
12745
|
+
iterate_child(temp_$div, nodeP, parent_infoP, $root_container);
|
|
12748
12746
|
} else {
|
|
12749
|
-
await iterate_child($div, nodeP, parent_infoP, $root_container);
|
|
12747
|
+
await iterate_child(temp_$div, nodeP, parent_infoP, $root_container);
|
|
12750
12748
|
}
|
|
12751
12749
|
}
|
|
12752
12750
|
|