@xuda.io/runtime-bundle 1.0.646 → 1.0.648

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.
@@ -13274,7 +13274,11 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
13274
13274
  // continue;
13275
13275
  // }
13276
13276
 
13277
- if (!nodeP.attributes[`xu-exp:${attr}`] && nodeP?.attributes?.hasOwnProperty('xu-render') && typeof func.UI.screen.fix_val_defaults(attr, nodeP.attributes[attr]) === 'undefined') {
13277
+ if (!nodeP?.attributes?.hasOwnProperty(attr) && !nodeP?.attributes?.hasOwnProperty(`xu-exp:${attr}`)) {
13278
+ continue;
13279
+ }
13280
+
13281
+ if (!nodeP.attributes[`xu-exp:${attr}`] && nodeP?.attributes?.hasOwnProperty(attr) && typeof func.UI.screen.fix_val_defaults(attr, nodeP.attributes[attr]) === 'undefined') {
13278
13282
  continue;
13279
13283
  }
13280
13284
 
@@ -10996,7 +10996,11 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
10996
10996
  // continue;
10997
10997
  // }
10998
10998
 
10999
- if (!nodeP.attributes[`xu-exp:${attr}`] && nodeP?.attributes?.hasOwnProperty('xu-render') && typeof func.UI.screen.fix_val_defaults(attr, nodeP.attributes[attr]) === 'undefined') {
10999
+ if (!nodeP?.attributes?.hasOwnProperty(attr) && !nodeP?.attributes?.hasOwnProperty(`xu-exp:${attr}`)) {
11000
+ continue;
11001
+ }
11002
+
11003
+ if (!nodeP.attributes[`xu-exp:${attr}`] && nodeP?.attributes?.hasOwnProperty(attr) && typeof func.UI.screen.fix_val_defaults(attr, nodeP.attributes[attr]) === 'undefined') {
11000
11004
  continue;
11001
11005
  }
11002
11006