@xuda.io/runtime-bundle 1.0.921 → 1.0.922

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.
@@ -34096,6 +34096,10 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34096
34096
  },
34097
34097
  );
34098
34098
 
34099
+ $div.on('click contextmenu', function (e) {
34100
+ hover_in($div, e);
34101
+ });
34102
+
34099
34103
  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);
34100
34104
  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();
34101
34105
  // check if iterator made to prevent children render
@@ -34161,14 +34165,14 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
34161
34165
  return;
34162
34166
  }
34163
34167
 
34164
- if (UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')]) {
34165
- $div[0].style.removeProperty('height');
34166
- $div.removeClass('skeleton');
34167
- $div.html(UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')]);
34168
- } else {
34169
- hover_in($div);
34170
- ui_job_id = func.UI.worker.add_to_queue(SESSION_ID, 'gui event', 'render_viewport', { $div, nodeP, parent_infoP, $root_container, paramsP, jobNoP, is_skeleton, keyP, refreshed_ds, parent_nodeP, check_existP, $container }, null, null, paramsP.dsSessionP);
34171
- }
34168
+ // if (UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')]) {
34169
+ // $div[0].style.removeProperty('height');
34170
+ // $div.removeClass('skeleton');
34171
+ // $div.html(UI_WORKER_OBJ.cache[$div.attr('xu-ui-id')]);
34172
+ // } else {
34173
+ hover_in($div);
34174
+ ui_job_id = func.UI.worker.add_to_queue(SESSION_ID, 'gui event', 'render_viewport', { $div, nodeP, parent_infoP, $root_container, paramsP, jobNoP, is_skeleton, keyP, refreshed_ds, parent_nodeP, check_existP, $container }, null, null, paramsP.dsSessionP);
34175
+ // }
34172
34176
  observer_outViewport.observe($div[0]);
34173
34177
  });
34174
34178