@xuda.io/runtime-bundle 1.0.383 → 1.0.385

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.
@@ -10656,7 +10656,7 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
10656
10656
  res[key] = 0;
10657
10657
  }
10658
10658
  });
10659
- var join = function (arrP) {
10659
+ const join = function (arrP) {
10660
10660
  return arrP.join('');
10661
10661
  };
10662
10662
  var exp = undefined;
@@ -11935,7 +11935,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
11935
11935
  const _ds = func.utils.clean_returned_datasource(SESSION_ID, paramsP.dsSessionP);
11936
11936
 
11937
11937
  const row_idx = func.common.find_ROWID_idx(_ds, _ds.currentRecordId);
11938
- const data = _.clone(_ds?.data_feed?.rows?.[row_idx]) || {};
11938
+ const data = _ds?.data_feed?.rows?.[row_idx] || {};
11939
11939
 
11940
11940
  const props = _ds.in_parameters || {};
11941
11941
  const attributes = $elm?.data()?.xuData?.properties || {};
@@ -11944,6 +11944,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
11944
11944
  // _ds_0.data_system['SYS_GLOBAL_OBJ_REFS'][val.value] = { $el: $elm, ds: _ds, data, attributes, props };
11945
11945
  _ds_0.data_system['SYS_GLOBAL_OBJ_REFS'][val.value] = { ds: _ds, data, attributes, props, xu_ui_id };
11946
11946
 
11947
+ const proxy1 = new Proxy(_session.DS_GLB[paramsP.dsSessionP], (e) => {
11948
+ debugger;
11949
+ });
11950
+
11947
11951
  return {};
11948
11952
  },
11949
11953
  'xu-bind': async function ($elm, val) {
@@ -10008,7 +10008,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10008
10008
  const _ds = func.utils.clean_returned_datasource(SESSION_ID, paramsP.dsSessionP);
10009
10009
 
10010
10010
  const row_idx = func.common.find_ROWID_idx(_ds, _ds.currentRecordId);
10011
- const data = _.clone(_ds?.data_feed?.rows?.[row_idx]) || {};
10011
+ const data = _ds?.data_feed?.rows?.[row_idx] || {};
10012
10012
 
10013
10013
  const props = _ds.in_parameters || {};
10014
10014
  const attributes = $elm?.data()?.xuData?.properties || {};
@@ -10017,6 +10017,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10017
10017
  // _ds_0.data_system['SYS_GLOBAL_OBJ_REFS'][val.value] = { $el: $elm, ds: _ds, data, attributes, props };
10018
10018
  _ds_0.data_system['SYS_GLOBAL_OBJ_REFS'][val.value] = { ds: _ds, data, attributes, props, xu_ui_id };
10019
10019
 
10020
+ const proxy1 = new Proxy(_session.DS_GLB[paramsP.dsSessionP], (e) => {
10021
+ debugger;
10022
+ });
10023
+
10020
10024
  return {};
10021
10025
  },
10022
10026
  'xu-bind': async function ($elm, val) {
@@ -14364,7 +14368,7 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
14364
14368
  res[key] = 0;
14365
14369
  }
14366
14370
  });
14367
- var join = function (arrP) {
14371
+ const join = function (arrP) {
14368
14372
  return arrP.join('');
14369
14373
  };
14370
14374
  var exp = undefined;