@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.
- package/js/xuda-runtime-bundle.js +5 -5
- package/js/xuda-runtime-bundle.min.js +3 -3
- package/js/xuda-runtime-slim.js +5 -5
- package/js/xuda-runtime-slim.min.es.js +5 -5
- package/js/xuda-runtime-slim.min.js +3 -3
- package/js/xuda-server-bundle.min.mjs +3 -3
- package/js/xuda-server-bundle.mjs +4 -4
- package/js/xuda-worker-bundle.js +4 -4
- package/js/xuda-worker-bundle.min.js +3 -3
- package/package.json +1 -1
|
@@ -7168,9 +7168,9 @@ func.events.execute = async function (
|
|
|
7168
7168
|
SESSION_ID,
|
|
7169
7169
|
jobNoP,
|
|
7170
7170
|
dsSession,
|
|
7171
|
-
`(async function(el) {
|
|
7171
|
+
`(async function(el,evt) {
|
|
7172
7172
|
${refIdP.value}
|
|
7173
|
-
})(document.querySelector(\`[xu-ui-id=${elementP}]\`))`,
|
|
7173
|
+
})(document.querySelector(\`[xu-ui-id=${elementP}]\`),${evt})`,
|
|
7174
7174
|
);
|
|
7175
7175
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
7176
7176
|
|
|
@@ -7183,9 +7183,9 @@ func.events.execute = async function (
|
|
|
7183
7183
|
SESSION_ID,
|
|
7184
7184
|
jobNoP,
|
|
7185
7185
|
dsSession,
|
|
7186
|
-
`(async function(el) {
|
|
7186
|
+
`(async function(el,evt) {
|
|
7187
7187
|
${refIdP.value}
|
|
7188
|
-
})(document.querySelector(\`[xu-ui-id=${elementP}]\`))`,
|
|
7188
|
+
})(document.querySelector(\`[xu-ui-id=${elementP}]\`),${evt})`,
|
|
7189
7189
|
true,
|
|
7190
7190
|
);
|
|
7191
7191
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -7168,9 +7168,9 @@ func.events.execute = async function (
|
|
|
7168
7168
|
SESSION_ID,
|
|
7169
7169
|
jobNoP,
|
|
7170
7170
|
dsSession,
|
|
7171
|
-
`(async function(el) {
|
|
7171
|
+
`(async function(el,evt) {
|
|
7172
7172
|
${refIdP.value}
|
|
7173
|
-
})(document.querySelector(\`[xu-ui-id=${elementP}]\`))`,
|
|
7173
|
+
})(document.querySelector(\`[xu-ui-id=${elementP}]\`),${evt})`,
|
|
7174
7174
|
);
|
|
7175
7175
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
7176
7176
|
|
|
@@ -7183,9 +7183,9 @@ func.events.execute = async function (
|
|
|
7183
7183
|
SESSION_ID,
|
|
7184
7184
|
jobNoP,
|
|
7185
7185
|
dsSession,
|
|
7186
|
-
`(async function(el) {
|
|
7186
|
+
`(async function(el,evt) {
|
|
7187
7187
|
${refIdP.value}
|
|
7188
|
-
})(document.querySelector(\`[xu-ui-id=${elementP}]\`))`,
|
|
7188
|
+
})(document.querySelector(\`[xu-ui-id=${elementP}]\`),${evt})`,
|
|
7189
7189
|
true,
|
|
7190
7190
|
);
|
|
7191
7191
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|