@xuda.io/runtime-bundle 1.0.384 → 1.0.386
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
|
@@ -11944,8 +11944,11 @@ 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[
|
|
11948
|
-
|
|
11947
|
+
const proxy1 = new Proxy(_session.DS_GLB[paramsP.dsSessionP], {
|
|
11948
|
+
get(target, prop, receiver) {
|
|
11949
|
+
debugger;
|
|
11950
|
+
return 'world';
|
|
11951
|
+
},
|
|
11949
11952
|
});
|
|
11950
11953
|
|
|
11951
11954
|
return {};
|
|
@@ -10017,8 +10017,11 @@ 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[
|
|
10021
|
-
|
|
10020
|
+
const proxy1 = new Proxy(_session.DS_GLB[paramsP.dsSessionP], {
|
|
10021
|
+
get(target, prop, receiver) {
|
|
10022
|
+
debugger;
|
|
10023
|
+
return 'world';
|
|
10024
|
+
},
|
|
10022
10025
|
});
|
|
10023
10026
|
|
|
10024
10027
|
return {};
|