@xuda.io/runtime-bundle 1.0.320 → 1.0.322

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.
@@ -32749,7 +32749,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
32749
32749
  evt[val.event_modifiers]();
32750
32750
  }
32751
32751
 
32752
- func.events.add_to_queue(SESSION_ID, 'element event', val2.id, e.type, val2.data.action, val2.data.name, null, $elm.attr('xu-ui-id'), null, evt, null, null, null, paramsP.dsSessionP, null, null, null, e.type, val2.data.name, null, null, val2, null, null, null, null, null, null);
32752
+ func.events.add_to_queue(SESSION_ID, 'element event', val2.id, evt.type, val2.data.action, val2.data.name, null, $elm.attr('xu-ui-id'), null, evt, null, null, null, paramsP.dsSessionP, null, null, null, evt.type, val2.data.name, null, null, val2, null, null, null, null, null, null);
32753
32753
  }
32754
32754
  }
32755
32755
  }
@@ -36837,9 +36837,9 @@ func.events.execute = async function (
36837
36837
  SESSION_ID,
36838
36838
  jobNoP,
36839
36839
  dsSession,
36840
- `(async function(el) {
36840
+ `(async function(el,evt) {
36841
36841
  ${refIdP.value}
36842
- })(document.querySelector(\`[xu-ui-id=${elementP}]\`))`,
36842
+ })(document.querySelector(\`[xu-ui-id=${elementP}]\`),${evt})`,
36843
36843
  );
36844
36844
  await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
36845
36845
 
@@ -36852,9 +36852,9 @@ func.events.execute = async function (
36852
36852
  SESSION_ID,
36853
36853
  jobNoP,
36854
36854
  dsSession,
36855
- `(async function(el) {
36855
+ `(async function(el,evt) {
36856
36856
  ${refIdP.value}
36857
- })(document.querySelector(\`[xu-ui-id=${elementP}]\`))`,
36857
+ })(document.querySelector(\`[xu-ui-id=${elementP}]\`),${evt})`,
36858
36858
  true,
36859
36859
  );
36860
36860
  await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);