@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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -8746,11 +8746,13 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
8746
8746
|
const { nodeP, $div, parent_infoP, $root_container, jobNoP, is_skeleton, paramsP, $container } = queue_obj?.paramsP || {};
|
|
8747
8747
|
if (nodeP?.children?.length) {
|
|
8748
8748
|
func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
8749
|
-
|
|
8750
|
-
|
|
8751
|
-
|
|
8749
|
+
setTimeout(async () => {
|
|
8750
|
+
for await (const [key, val] of Object.entries(nodeP.children)) {
|
|
8751
|
+
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);
|
|
8752
|
+
}
|
|
8753
|
+
return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
|
|
8754
|
+
}, 1000);
|
|
8752
8755
|
}
|
|
8753
|
-
return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
|
|
8754
8756
|
},
|
|
8755
8757
|
};
|
|
8756
8758
|
|
|
@@ -14544,10 +14546,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14544
14546
|
|
|
14545
14547
|
$div.hover(
|
|
14546
14548
|
function (e) {
|
|
14547
|
-
hover_in();
|
|
14549
|
+
// hover_in();
|
|
14550
|
+
func.UI.screen.hover_in(SESSION_ID, null, $container, paramsP, is_skeleton);
|
|
14548
14551
|
},
|
|
14549
14552
|
function (e) {
|
|
14550
|
-
hover_out();
|
|
14553
|
+
func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
|
|
14554
|
+
// hover_out();
|
|
14551
14555
|
},
|
|
14552
14556
|
);
|
|
14553
14557
|
}
|
|
@@ -14706,10 +14710,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
14706
14710
|
|
|
14707
14711
|
$div.hover(
|
|
14708
14712
|
function (e) {
|
|
14709
|
-
hover_in($div);
|
|
14713
|
+
// hover_in($div);
|
|
14714
|
+
func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
14710
14715
|
},
|
|
14711
14716
|
function (e) {
|
|
14712
|
-
hover_out();
|
|
14717
|
+
func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
|
|
14718
|
+
// hover_out();
|
|
14713
14719
|
},
|
|
14714
14720
|
);
|
|
14715
14721
|
|
|
@@ -8747,11 +8747,13 @@ func.UI.worker.execute = async function (SESSION_ID, queue_obj) {
|
|
|
8747
8747
|
const { nodeP, $div, parent_infoP, $root_container, jobNoP, is_skeleton, paramsP, $container } = queue_obj?.paramsP || {};
|
|
8748
8748
|
if (nodeP?.children?.length) {
|
|
8749
8749
|
func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
8750
|
-
|
|
8751
|
-
|
|
8752
|
-
|
|
8750
|
+
setTimeout(async () => {
|
|
8751
|
+
for await (const [key, val] of Object.entries(nodeP.children)) {
|
|
8752
|
+
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);
|
|
8753
|
+
}
|
|
8754
|
+
return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
|
|
8755
|
+
}, 1000);
|
|
8753
8756
|
}
|
|
8754
|
-
return func.UI.worker.delete_job(SESSION_ID, queue_obj.job_num);
|
|
8755
8757
|
},
|
|
8756
8758
|
};
|
|
8757
8759
|
|
|
@@ -12252,10 +12254,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12252
12254
|
|
|
12253
12255
|
$div.hover(
|
|
12254
12256
|
function (e) {
|
|
12255
|
-
hover_in();
|
|
12257
|
+
// hover_in();
|
|
12258
|
+
func.UI.screen.hover_in(SESSION_ID, null, $container, paramsP, is_skeleton);
|
|
12256
12259
|
},
|
|
12257
12260
|
function (e) {
|
|
12258
|
-
hover_out();
|
|
12261
|
+
func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
|
|
12262
|
+
// hover_out();
|
|
12259
12263
|
},
|
|
12260
12264
|
);
|
|
12261
12265
|
}
|
|
@@ -12414,10 +12418,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
|
|
|
12414
12418
|
|
|
12415
12419
|
$div.hover(
|
|
12416
12420
|
function (e) {
|
|
12417
|
-
hover_in($div);
|
|
12421
|
+
// hover_in($div);
|
|
12422
|
+
func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
|
|
12418
12423
|
},
|
|
12419
12424
|
function (e) {
|
|
12420
|
-
hover_out();
|
|
12425
|
+
func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
|
|
12426
|
+
// hover_out();
|
|
12421
12427
|
},
|
|
12422
12428
|
);
|
|
12423
12429
|
|