@xuda.io/runtime-bundle 1.0.647 → 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.
package/js/xuda-runtime-slim.js
CHANGED
|
@@ -13274,6 +13274,10 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
13274
13274
|
// continue;
|
|
13275
13275
|
// }
|
|
13276
13276
|
|
|
13277
|
+
if (!nodeP?.attributes?.hasOwnProperty(attr) && !nodeP?.attributes?.hasOwnProperty(`xu-exp:${attr}`)) {
|
|
13278
|
+
continue;
|
|
13279
|
+
}
|
|
13280
|
+
|
|
13277
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
|
}
|
|
@@ -10996,6 +10996,10 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
|
|
|
10996
10996
|
// continue;
|
|
10997
10997
|
// }
|
|
10998
10998
|
|
|
10999
|
+
if (!nodeP?.attributes?.hasOwnProperty(attr) && !nodeP?.attributes?.hasOwnProperty(`xu-exp:${attr}`)) {
|
|
11000
|
+
continue;
|
|
11001
|
+
}
|
|
11002
|
+
|
|
10999
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
|
}
|