@xuda.io/runtime-bundle 1.0.403 → 1.0.404
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
|
@@ -11961,6 +11961,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
11961
11961
|
|
|
11962
11962
|
// Callback function to execute when mutations are observed
|
|
11963
11963
|
const callback = (mutationList, observer) => {
|
|
11964
|
+
func.UI.screen.refresh_xu_attributes(SESSION_ID, [val.value]);
|
|
11965
|
+
return;
|
|
11964
11966
|
for (const mutation of mutationList) {
|
|
11965
11967
|
if (mutation.type === 'childList') {
|
|
11966
11968
|
console.log('A child node has been added or removed.');
|
|
@@ -10034,6 +10034,8 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
|
|
|
10034
10034
|
|
|
10035
10035
|
// Callback function to execute when mutations are observed
|
|
10036
10036
|
const callback = (mutationList, observer) => {
|
|
10037
|
+
func.UI.screen.refresh_xu_attributes(SESSION_ID, [val.value]);
|
|
10038
|
+
return;
|
|
10037
10039
|
for (const mutation of mutationList) {
|
|
10038
10040
|
if (mutation.type === 'childList') {
|
|
10039
10041
|
console.log('A child node has been added or removed.');
|