@xuda.io/runtime-bundle 1.0.1055 → 1.0.1056
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
|
@@ -12658,10 +12658,11 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12658
12658
|
let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id]?.[xu_render_cache_id]?.$div.clone(true);
|
|
12659
12659
|
|
|
12660
12660
|
if (!new_$div) {
|
|
12661
|
-
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][xu_render_cache_id] = {
|
|
12661
|
+
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][xu_render_cache_id] = {};
|
|
12662
12662
|
nodeP.xu_render_xu_ui_id = xu_ui_id;
|
|
12663
12663
|
nodeP.xu_render_cache_id = xu_render_cache_id;
|
|
12664
12664
|
new_$div = await func.UI.screen.render_ui_tree(SESSION_ID, $container, nodeP, parent_infoP, paramsP, jobNoP, null, keyP, null, parent_nodeP, null, $root_container);
|
|
12665
|
+
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][xu_render_cache_id].$div = new_$div.clone(true);
|
|
12665
12666
|
}
|
|
12666
12667
|
// append order handling
|
|
12667
12668
|
|
|
@@ -10383,10 +10383,11 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10383
10383
|
let new_$div = UI_WORKER_OBJ?.xu_render_cache?.[xu_ui_id]?.[xu_render_cache_id]?.$div.clone(true);
|
|
10384
10384
|
|
|
10385
10385
|
if (!new_$div) {
|
|
10386
|
-
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][xu_render_cache_id] = {
|
|
10386
|
+
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][xu_render_cache_id] = {};
|
|
10387
10387
|
nodeP.xu_render_xu_ui_id = xu_ui_id;
|
|
10388
10388
|
nodeP.xu_render_cache_id = xu_render_cache_id;
|
|
10389
10389
|
new_$div = await func.UI.screen.render_ui_tree(SESSION_ID, $container, nodeP, parent_infoP, paramsP, jobNoP, null, keyP, null, parent_nodeP, null, $root_container);
|
|
10390
|
+
UI_WORKER_OBJ.xu_render_cache[xu_ui_id][xu_render_cache_id].$div = new_$div.clone(true);
|
|
10390
10391
|
}
|
|
10391
10392
|
// append order handling
|
|
10392
10393
|
|