@xuda.io/runtime-bundle 1.0.383 → 1.0.384

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.
@@ -31967,7 +31967,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
31967
31967
  const _ds = func.utils.clean_returned_datasource(SESSION_ID, paramsP.dsSessionP);
31968
31968
 
31969
31969
  const row_idx = func.common.find_ROWID_idx(_ds, _ds.currentRecordId);
31970
- const data = _.clone(_ds?.data_feed?.rows?.[row_idx]) || {};
31970
+ const data = _ds?.data_feed?.rows?.[row_idx] || {};
31971
31971
 
31972
31972
  const props = _ds.in_parameters || {};
31973
31973
  const attributes = $elm?.data()?.xuData?.properties || {};
@@ -31976,6 +31976,10 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
31976
31976
  // _ds_0.data_system['SYS_GLOBAL_OBJ_REFS'][val.value] = { $el: $elm, ds: _ds, data, attributes, props };
31977
31977
  _ds_0.data_system['SYS_GLOBAL_OBJ_REFS'][val.value] = { ds: _ds, data, attributes, props, xu_ui_id };
31978
31978
 
31979
+ const proxy1 = new Proxy(_session.DS_GLB[_ds.currentRecordId], (e) => {
31980
+ debugger;
31981
+ });
31982
+
31979
31983
  return {};
31980
31984
  },
31981
31985
  'xu-bind': async function ($elm, val) {
@@ -34999,7 +35003,7 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
34999
35003
  res[key] = 0;
35000
35004
  }
35001
35005
  });
35002
- var join = function (arrP) {
35006
+ const join = function (arrP) {
35003
35007
  return arrP.join('');
35004
35008
  };
35005
35009
  var exp = undefined;