@xuda.io/runtime-bundle 1.0.703 → 1.0.705
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 -4
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +5 -4
- package/js/xuda-runtime-slim.min.es.js +5 -4
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +3 -2
- package/js/xuda-worker-bundle.js +3 -2
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -3068,7 +3068,7 @@ func.datasource.create = async function (
|
|
|
3068
3068
|
args.rowIdP,
|
|
3069
3069
|
args.jobNoP,
|
|
3070
3070
|
args.calling_trigger_prop,
|
|
3071
|
-
|
|
3071
|
+
args.parameters_raw_obj,
|
|
3072
3072
|
null,
|
|
3073
3073
|
null,
|
|
3074
3074
|
args.calling_jobP,
|
|
@@ -3109,7 +3109,7 @@ func.datasource.create = async function (
|
|
|
3109
3109
|
return done(SESSION_ID, jsonP.dsSession, true);
|
|
3110
3110
|
});
|
|
3111
3111
|
};
|
|
3112
|
-
func.datasource.prepare = async function (SESSION_ID, prog_id, dataSourceNoP, parentDataSourceNoP, containerIdP, rowIdP, jobNoP, calling_trigger_prop,
|
|
3112
|
+
func.datasource.prepare = async function (SESSION_ID, prog_id, dataSourceNoP, parentDataSourceNoP, containerIdP, rowIdP, jobNoP, calling_trigger_prop, parameters_raw_obj, NA_isInitP, callingSourceP, calling_jobP, NA_screen_dsP, is_panelP, parameters_obj_inP, static_refreshP, run_atP, worker_id) {
|
|
3113
3113
|
const set_parameters = async function () {
|
|
3114
3114
|
var _session = SESSION_OBJ[SESSION_ID];
|
|
3115
3115
|
const get_Out_parameters = async function (fieldIdP, located_field_param_idxP, param_row_idP) {
|
|
@@ -3238,6 +3238,7 @@ func.datasource.prepare = async function (SESSION_ID, prog_id, dataSourceNoP, pa
|
|
|
3238
3238
|
static_refreshP,
|
|
3239
3239
|
run_atP,
|
|
3240
3240
|
worker_id,
|
|
3241
|
+
parameters_raw_obj,
|
|
3241
3242
|
};
|
|
3242
3243
|
|
|
3243
3244
|
var dataSourceSession = null;
|
|
@@ -12201,7 +12202,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12201
12202
|
async function render_panel() {
|
|
12202
12203
|
const prog_id = val.value?.prog || val.value;
|
|
12203
12204
|
const params_obj = await get_params_obj_new(SESSION_ID, prog_id, nodeP, paramsP.dsSessionP);
|
|
12204
|
-
let ret_panel = await func.UI.screen.init(SESSION_ID, prog_id, paramsP.screenId, _ds, $elm, null, _ds.currentRecordId, null, true, params_obj.
|
|
12205
|
+
let ret_panel = await func.UI.screen.init(SESSION_ID, prog_id, paramsP.screenId, _ds, $elm, null, _ds.currentRecordId, null, true, params_obj.params_res, 'initXu_panel', undefined, prog_id !== _ds.prog_id ? null : refreshed_ds, params_obj.params_raw);
|
|
12205
12206
|
ret = { $new_div: ret_panel };
|
|
12206
12207
|
$container.data().xuData.xuPanelProps = $elm.data().xuAttributes;
|
|
12207
12208
|
$container.data().xuData.xuPanelData = ret_panel.data();
|
|
@@ -12251,7 +12252,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12251
12252
|
var $wrapper = $('<div>');
|
|
12252
12253
|
var $div = func.UI.screen.create_container(SESSION_ID, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, nodeP.attributes, null, null, null, $wrapper, '');
|
|
12253
12254
|
const params_obj = await get_params_obj_new(SESSION_ID, program, nodeP, paramsP.dsSessionP);
|
|
12254
|
-
let ret_init = await func.UI.screen.init(SESSION_ID, program, paramsP.screenId, _ds, $div, null, _ds.currentRecordId, jobNoP, true, params_obj.
|
|
12255
|
+
let ret_init = await func.UI.screen.init(SESSION_ID, program, paramsP.screenId, _ds, $div, null, _ds.currentRecordId, jobNoP, true, params_obj.params_res, 'alterXu_panel', undefined, undefined, params_obj.params_raw);
|
|
12255
12256
|
ret = {
|
|
12256
12257
|
$new_div: ret_init,
|
|
12257
12258
|
abort: true,
|
|
@@ -3069,7 +3069,7 @@ func.datasource.create = async function (
|
|
|
3069
3069
|
args.rowIdP,
|
|
3070
3070
|
args.jobNoP,
|
|
3071
3071
|
args.calling_trigger_prop,
|
|
3072
|
-
|
|
3072
|
+
args.parameters_raw_obj,
|
|
3073
3073
|
null,
|
|
3074
3074
|
null,
|
|
3075
3075
|
args.calling_jobP,
|
|
@@ -3110,7 +3110,7 @@ func.datasource.create = async function (
|
|
|
3110
3110
|
return done(SESSION_ID, jsonP.dsSession, true);
|
|
3111
3111
|
});
|
|
3112
3112
|
};
|
|
3113
|
-
func.datasource.prepare = async function (SESSION_ID, prog_id, dataSourceNoP, parentDataSourceNoP, containerIdP, rowIdP, jobNoP, calling_trigger_prop,
|
|
3113
|
+
func.datasource.prepare = async function (SESSION_ID, prog_id, dataSourceNoP, parentDataSourceNoP, containerIdP, rowIdP, jobNoP, calling_trigger_prop, parameters_raw_obj, NA_isInitP, callingSourceP, calling_jobP, NA_screen_dsP, is_panelP, parameters_obj_inP, static_refreshP, run_atP, worker_id) {
|
|
3114
3114
|
const set_parameters = async function () {
|
|
3115
3115
|
var _session = SESSION_OBJ[SESSION_ID];
|
|
3116
3116
|
const get_Out_parameters = async function (fieldIdP, located_field_param_idxP, param_row_idP) {
|
|
@@ -3239,6 +3239,7 @@ func.datasource.prepare = async function (SESSION_ID, prog_id, dataSourceNoP, pa
|
|
|
3239
3239
|
static_refreshP,
|
|
3240
3240
|
run_atP,
|
|
3241
3241
|
worker_id,
|
|
3242
|
+
parameters_raw_obj,
|
|
3242
3243
|
};
|
|
3243
3244
|
|
|
3244
3245
|
var dataSourceSession = null;
|
|
@@ -9923,7 +9924,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
9923
9924
|
async function render_panel() {
|
|
9924
9925
|
const prog_id = val.value?.prog || val.value;
|
|
9925
9926
|
const params_obj = await get_params_obj_new(SESSION_ID, prog_id, nodeP, paramsP.dsSessionP);
|
|
9926
|
-
let ret_panel = await func.UI.screen.init(SESSION_ID, prog_id, paramsP.screenId, _ds, $elm, null, _ds.currentRecordId, null, true, params_obj.
|
|
9927
|
+
let ret_panel = await func.UI.screen.init(SESSION_ID, prog_id, paramsP.screenId, _ds, $elm, null, _ds.currentRecordId, null, true, params_obj.params_res, 'initXu_panel', undefined, prog_id !== _ds.prog_id ? null : refreshed_ds, params_obj.params_raw);
|
|
9927
9928
|
ret = { $new_div: ret_panel };
|
|
9928
9929
|
$container.data().xuData.xuPanelProps = $elm.data().xuAttributes;
|
|
9929
9930
|
$container.data().xuData.xuPanelData = ret_panel.data();
|
|
@@ -9973,7 +9974,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
9973
9974
|
var $wrapper = $('<div>');
|
|
9974
9975
|
var $div = func.UI.screen.create_container(SESSION_ID, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, nodeP.attributes, null, null, null, $wrapper, '');
|
|
9975
9976
|
const params_obj = await get_params_obj_new(SESSION_ID, program, nodeP, paramsP.dsSessionP);
|
|
9976
|
-
let ret_init = await func.UI.screen.init(SESSION_ID, program, paramsP.screenId, _ds, $div, null, _ds.currentRecordId, jobNoP, true, params_obj.
|
|
9977
|
+
let ret_init = await func.UI.screen.init(SESSION_ID, program, paramsP.screenId, _ds, $div, null, _ds.currentRecordId, jobNoP, true, params_obj.params_res, 'alterXu_panel', undefined, undefined, params_obj.params_raw);
|
|
9977
9978
|
ret = {
|
|
9978
9979
|
$new_div: ret_init,
|
|
9979
9980
|
abort: true,
|