@xuda.io/runtime-bundle 1.0.810 → 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.
@@ -14546,10 +14546,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
14546
14546
 
14547
14547
  $div.hover(
14548
14548
  function (e) {
14549
- hover_in();
14549
+ // hover_in();
14550
+ func.UI.screen.hover_in(SESSION_ID, null, $container, paramsP, is_skeleton);
14550
14551
  },
14551
14552
  function (e) {
14552
- hover_out();
14553
+ func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
14554
+ // hover_out();
14553
14555
  },
14554
14556
  );
14555
14557
  }
@@ -14708,10 +14710,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
14708
14710
 
14709
14711
  $div.hover(
14710
14712
  function (e) {
14711
- hover_in($div);
14713
+ // hover_in($div);
14714
+ func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
14712
14715
  },
14713
14716
  function (e) {
14714
- hover_out();
14717
+ func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
14718
+ // hover_out();
14715
14719
  },
14716
14720
  );
14717
14721
 
@@ -12254,10 +12254,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
12254
12254
 
12255
12255
  $div.hover(
12256
12256
  function (e) {
12257
- hover_in();
12257
+ // hover_in();
12258
+ func.UI.screen.hover_in(SESSION_ID, null, $container, paramsP, is_skeleton);
12258
12259
  },
12259
12260
  function (e) {
12260
- hover_out();
12261
+ func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
12262
+ // hover_out();
12261
12263
  },
12262
12264
  );
12263
12265
  }
@@ -12416,10 +12418,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
12416
12418
 
12417
12419
  $div.hover(
12418
12420
  function (e) {
12419
- hover_in($div);
12421
+ // hover_in($div);
12422
+ func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
12420
12423
  },
12421
12424
  function (e) {
12422
- hover_out();
12425
+ func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
12426
+ // hover_out();
12423
12427
  },
12424
12428
  );
12425
12429