@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.
@@ -34213,10 +34213,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34213
34213
 
34214
34214
  $div.hover(
34215
34215
  function (e) {
34216
- hover_in();
34216
+ // hover_in();
34217
+ func.UI.screen.hover_in(SESSION_ID, null, $container, paramsP, is_skeleton);
34217
34218
  },
34218
34219
  function (e) {
34219
- hover_out();
34220
+ func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
34221
+ // hover_out();
34220
34222
  },
34221
34223
  );
34222
34224
  }
@@ -34375,10 +34377,12 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34375
34377
 
34376
34378
  $div.hover(
34377
34379
  function (e) {
34378
- hover_in($div);
34380
+ // hover_in($div);
34381
+ func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
34379
34382
  },
34380
34383
  function (e) {
34381
- hover_out();
34384
+ func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
34385
+ // hover_out();
34382
34386
  },
34383
34387
  );
34384
34388