@xuda.io/runtime-bundle 1.0.780 → 1.0.781
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 +4 -4
- package/js/xuda-runtime-bundle.min.js +3 -3
- package/js/xuda-runtime-slim.js +4 -4
- package/js/xuda-runtime-slim.min.es.js +4 -4
- 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
|
@@ -6909,14 +6909,14 @@ func.events.execute = async function (
|
|
|
6909
6909
|
|
|
6910
6910
|
call_native_javascript: async function () {
|
|
6911
6911
|
const module = await func.common.get_module(SESSION_ID, 'xuda-event-javascript-module.mjs');
|
|
6912
|
-
const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, false, $
|
|
6912
|
+
const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, false, $div);
|
|
6913
6913
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
6914
6914
|
|
|
6915
6915
|
return result;
|
|
6916
6916
|
},
|
|
6917
6917
|
call_evaluate_javascript: async function () {
|
|
6918
6918
|
const module = await func.common.get_module(SESSION_ID, 'xuda-event-javascript-module.mjs');
|
|
6919
|
-
const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, true, $
|
|
6919
|
+
const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, true, $div);
|
|
6920
6920
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
6921
6921
|
|
|
6922
6922
|
return result;
|
|
@@ -6935,7 +6935,7 @@ func.events.execute = async function (
|
|
|
6935
6935
|
null,
|
|
6936
6936
|
null,
|
|
6937
6937
|
evt,
|
|
6938
|
-
$
|
|
6938
|
+
$div,
|
|
6939
6939
|
);
|
|
6940
6940
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
6941
6941
|
|
|
@@ -6955,7 +6955,7 @@ func.events.execute = async function (
|
|
|
6955
6955
|
null,
|
|
6956
6956
|
null,
|
|
6957
6957
|
evt,
|
|
6958
|
-
$
|
|
6958
|
+
$div,
|
|
6959
6959
|
);
|
|
6960
6960
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
6961
6961
|
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -6909,14 +6909,14 @@ func.events.execute = async function (
|
|
|
6909
6909
|
|
|
6910
6910
|
call_native_javascript: async function () {
|
|
6911
6911
|
const module = await func.common.get_module(SESSION_ID, 'xuda-event-javascript-module.mjs');
|
|
6912
|
-
const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, false, $
|
|
6912
|
+
const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, false, $div);
|
|
6913
6913
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
6914
6914
|
|
|
6915
6915
|
return result;
|
|
6916
6916
|
},
|
|
6917
6917
|
call_evaluate_javascript: async function () {
|
|
6918
6918
|
const module = await func.common.get_module(SESSION_ID, 'xuda-event-javascript-module.mjs');
|
|
6919
|
-
const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, true, $
|
|
6919
|
+
const result = await module.call_javascript(SESSION_ID, jobNoP, refIdP, dsSession, true, $div);
|
|
6920
6920
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
6921
6921
|
|
|
6922
6922
|
return result;
|
|
@@ -6935,7 +6935,7 @@ func.events.execute = async function (
|
|
|
6935
6935
|
null,
|
|
6936
6936
|
null,
|
|
6937
6937
|
evt,
|
|
6938
|
-
$
|
|
6938
|
+
$div,
|
|
6939
6939
|
);
|
|
6940
6940
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
6941
6941
|
|
|
@@ -6955,7 +6955,7 @@ func.events.execute = async function (
|
|
|
6955
6955
|
null,
|
|
6956
6956
|
null,
|
|
6957
6957
|
evt,
|
|
6958
|
-
$
|
|
6958
|
+
$div,
|
|
6959
6959
|
);
|
|
6960
6960
|
await func.datasource.set_outputField(SESSION_ID, dsSessionP, result, args);
|
|
6961
6961
|
|