@xuda.io/runtime-bundle 1.0.960 → 1.0.961

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.
@@ -33441,6 +33441,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
33441
33441
  }
33442
33442
  return await done($divP);
33443
33443
  };
33444
+
33444
33445
  // const iterate_child = async function ($divP, nodeP, parent_infoP, $root_container, before_record_function) {
33445
33446
  // if (!is_mobile && nodeP.busy) return;
33446
33447
  // nodeP.busy = true;
@@ -34113,17 +34114,16 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34113
34114
  $div.hover(
34114
34115
  function (e) {
34115
34116
  hover_in($div, e);
34116
- // func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
34117
34117
  },
34118
34118
  function (e) {
34119
- // func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
34120
34119
  hover_out();
34121
34120
  },
34122
34121
  );
34123
-
34124
- $div.on('click contextmenu', function (e) {
34125
- hover_in($div, e);
34126
- });
34122
+ if (paramsP.paramsP === 'grid' || parent_infoP?.iterate_info) {
34123
+ $div.on('click contextmenu', function (e) {
34124
+ hover_in($div, e);
34125
+ });
34126
+ }
34127
34127
 
34128
34128
  let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, $div, true);
34129
34129
  if (ret.abort || nodeP.tagName === 'svg' || !_.isEmpty(nodeP?.attributes?.['xu-text']) || !_.isEmpty(nodeP?.attributes?.['xu-html']) || !_.isEmpty(nodeP?.attributes?.['xu-exp:xu-text']) || !_.isEmpty(nodeP?.attributes?.['xu-exp:xu-html'])) return await done();