@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.
@@ -13755,6 +13755,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
13755
13755
  }
13756
13756
  return await done($divP);
13757
13757
  };
13758
+
13758
13759
  // const iterate_child = async function ($divP, nodeP, parent_infoP, $root_container, before_record_function) {
13759
13760
  // if (!is_mobile && nodeP.busy) return;
13760
13761
  // nodeP.busy = true;
@@ -14427,17 +14428,16 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
14427
14428
  $div.hover(
14428
14429
  function (e) {
14429
14430
  hover_in($div, e);
14430
- // func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
14431
14431
  },
14432
14432
  function (e) {
14433
- // func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
14434
14433
  hover_out();
14435
14434
  },
14436
14435
  );
14437
-
14438
- $div.on('click contextmenu', function (e) {
14439
- hover_in($div, e);
14440
- });
14436
+ if (paramsP.paramsP === 'grid' || parent_infoP?.iterate_info) {
14437
+ $div.on('click contextmenu', function (e) {
14438
+ hover_in($div, e);
14439
+ });
14440
+ }
14441
14441
 
14442
14442
  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);
14443
14443
  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();
@@ -11482,6 +11482,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
11482
11482
  }
11483
11483
  return await done($divP);
11484
11484
  };
11485
+
11485
11486
  // const iterate_child = async function ($divP, nodeP, parent_infoP, $root_container, before_record_function) {
11486
11487
  // if (!is_mobile && nodeP.busy) return;
11487
11488
  // nodeP.busy = true;
@@ -12154,17 +12155,16 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
12154
12155
  $div.hover(
12155
12156
  function (e) {
12156
12157
  hover_in($div, e);
12157
- // func.UI.screen.hover_in(SESSION_ID, $div, $container, paramsP, is_skeleton);
12158
12158
  },
12159
12159
  function (e) {
12160
- // func.UI.screen.hover_out(SESSION_ID, $container, is_skeleton, paramsP);
12161
12160
  hover_out();
12162
12161
  },
12163
12162
  );
12164
-
12165
- $div.on('click contextmenu', function (e) {
12166
- hover_in($div, e);
12167
- });
12163
+ if (paramsP.paramsP === 'grid' || parent_infoP?.iterate_info) {
12164
+ $div.on('click contextmenu', function (e) {
12165
+ hover_in($div, e);
12166
+ });
12167
+ }
12168
12168
 
12169
12169
  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);
12170
12170
  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();