@xuda.io/runtime-bundle 1.0.776 → 1.0.778
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-slim.js
CHANGED
|
@@ -8758,6 +8758,7 @@ func.UI.worker.find_job_index = function (SESSION_ID, jobNoP) {
|
|
|
8758
8758
|
};
|
|
8759
8759
|
|
|
8760
8760
|
func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0], re_check) {
|
|
8761
|
+
return;
|
|
8761
8762
|
let _session = SESSION_OBJ[SESSION_ID];
|
|
8762
8763
|
|
|
8763
8764
|
const _data_system = _session?.DS_GLB?.[0]?.data_system;
|
|
@@ -8811,6 +8812,7 @@ func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0
|
|
|
8811
8812
|
}
|
|
8812
8813
|
};
|
|
8813
8814
|
func.UI.refs_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0]) {
|
|
8815
|
+
return;
|
|
8814
8816
|
if (!_.isEmpty(SCREEN_BLOCKER_OBJ)) {
|
|
8815
8817
|
// let dom to finish build
|
|
8816
8818
|
return;
|
|
@@ -12605,7 +12607,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
12605
12607
|
const arr_idx = Number($elm?.data()?.xuData?.iterate_info._key);
|
|
12606
12608
|
// let new_arr = _.cloneDeep(reference_source_obj.ret.value);
|
|
12607
12609
|
const dataset_arr = await func.datasource.get_value(SESSION_ID, reference_source_obj.fieldIdP, _dsP, reference_source_obj.currentRecordId);
|
|
12608
|
-
let new_arr = _.cloneDeep(dataset_arr);
|
|
12610
|
+
let new_arr = _.cloneDeep(dataset_arr.ret.value);
|
|
12609
12611
|
// if (field_prop.props.fieldType === 'object' && !val_is_reference_field) {
|
|
12610
12612
|
if (field_prop.props.fieldType === 'object' && val_is_reference_field) {
|
|
12611
12613
|
let obj_item = new_arr[arr_idx];
|
|
@@ -8759,6 +8759,7 @@ func.UI.worker.find_job_index = function (SESSION_ID, jobNoP) {
|
|
|
8759
8759
|
};
|
|
8760
8760
|
|
|
8761
8761
|
func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0], re_check) {
|
|
8762
|
+
return;
|
|
8762
8763
|
let _session = SESSION_OBJ[SESSION_ID];
|
|
8763
8764
|
|
|
8764
8765
|
const _data_system = _session?.DS_GLB?.[0]?.data_system;
|
|
@@ -8812,6 +8813,7 @@ func.UI.ds_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0
|
|
|
8812
8813
|
}
|
|
8813
8814
|
};
|
|
8814
8815
|
func.UI.refs_garbage_collector = function (SESSION_ID = Object.keys(SESSION_OBJ)[0]) {
|
|
8816
|
+
return;
|
|
8815
8817
|
if (!_.isEmpty(SCREEN_BLOCKER_OBJ)) {
|
|
8816
8818
|
// let dom to finish build
|
|
8817
8819
|
return;
|
|
@@ -10315,7 +10317,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10315
10317
|
const arr_idx = Number($elm?.data()?.xuData?.iterate_info._key);
|
|
10316
10318
|
// let new_arr = _.cloneDeep(reference_source_obj.ret.value);
|
|
10317
10319
|
const dataset_arr = await func.datasource.get_value(SESSION_ID, reference_source_obj.fieldIdP, _dsP, reference_source_obj.currentRecordId);
|
|
10318
|
-
let new_arr = _.cloneDeep(dataset_arr);
|
|
10320
|
+
let new_arr = _.cloneDeep(dataset_arr.ret.value);
|
|
10319
10321
|
// if (field_prop.props.fieldType === 'object' && !val_is_reference_field) {
|
|
10320
10322
|
if (field_prop.props.fieldType === 'object' && val_is_reference_field) {
|
|
10321
10323
|
let obj_item = new_arr[arr_idx];
|