@xuda.io/runtime-bundle 1.0.386 → 1.0.388
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.
|
@@ -31976,11 +31976,27 @@ 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[paramsP.dsSessionP], {
|
|
31980
|
-
|
|
31981
|
-
|
|
31982
|
-
|
|
31983
|
-
|
|
31979
|
+
// const proxy1 = new Proxy(_session.DS_GLB[paramsP.dsSessionP], {
|
|
31980
|
+
// get(target, prop, receiver) {
|
|
31981
|
+
// debugger;
|
|
31982
|
+
// return 'world';
|
|
31983
|
+
// },
|
|
31984
|
+
// });
|
|
31985
|
+
|
|
31986
|
+
// Object.observe(_session.DS_GLB[paramsP.dsSessionP], function (changes) {
|
|
31987
|
+
// console.log(changes);
|
|
31988
|
+
// });
|
|
31989
|
+
|
|
31990
|
+
// create a new instance of `MutationObserver` named `observer`,
|
|
31991
|
+
// passing it a callback function
|
|
31992
|
+
const observer = new MutationObserver(() => {
|
|
31993
|
+
console.log('callback that runs when observer is triggered');
|
|
31994
|
+
});
|
|
31995
|
+
|
|
31996
|
+
// call `observe()`, passing it the element to observe, and the options object
|
|
31997
|
+
observer.observe(_session.DS_GLB[paramsP.dsSessionP], {
|
|
31998
|
+
subtree: true,
|
|
31999
|
+
childList: true,
|
|
31984
32000
|
});
|
|
31985
32001
|
|
|
31986
32002
|
return {};
|