@xuda.io/runtime-bundle 1.0.809 → 1.0.811
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.
|
@@ -27836,11 +27836,13 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
27836
27836
|
const { nodeP, $div, parent_infoP, $root_container, jobNoP, is_skeleton, paramsP, $container } = queue_obj?.paramsP || {};
|
|
27837
27837
|
if (nodeP?.children?.length) {
|
|
27838
27838
|
func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
27839
|
-
|
|
27840
|
-
|
|
27841
|
-
|
|
27839
|
+
setTimeout(async () => {
|
|
27840
|
+
for await (const [key, val] of Object.entries(nodeP.children)) {
|
|
27841
|
+
const ret = await func.UI.screen.render_ui_tree(SESSION_ID, $div, nodeP.children[key], parent_infoP, paramsP, jobNoP, is_skeleton, Number(key), null, nodeP, null, $root_container);
|
|
27842
|
+
}
|
|
27843
|
+
return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
|
|
27844
|
+
}, 1000);
|
|
27842
27845
|
}
|
|
27843
|
-
return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
|
|
27844
27846
|
},
|
|
27845
27847
|
};
|
|
27846
27848
|
|
|
@@ -34211,10 +34213,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
34211
34213
|
|
|
34212
34214
|
$div.hover(
|
|
34213
34215
|
function (e) {
|
|
34214
|
-
hover_in();
|
|
34216
|
+
// hover_in();
|
|
34217
|
+
func.UI.screen.hover_in(SESSION_ID, null, $container, paramsP, is_skeleton);
|
|
34215
34218
|
},
|
|
34216
34219
|
function (e) {
|
|
34217
|
-
hover_out();
|
|
34220
|
+
func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
|
|
34221
|
+
// hover_out();
|
|
34218
34222
|
},
|
|
34219
34223
|
);
|
|
34220
34224
|
}
|
|
@@ -34373,10 +34377,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
34373
34377
|
|
|
34374
34378
|
$div.hover(
|
|
34375
34379
|
function (e) {
|
|
34376
|
-
hover_in($div);
|
|
34380
|
+
// hover_in($div);
|
|
34381
|
+
func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
34377
34382
|
},
|
|
34378
34383
|
function (e) {
|
|
34379
|
-
hover_out();
|
|
34384
|
+
func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
|
|
34385
|
+
// hover_out();
|
|
34380
34386
|
},
|
|
34381
34387
|
);
|
|
34382
34388
|
|