@xuda.io/runtime-bundle 1.0.650 → 1.0.652

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.
@@ -32981,7 +32981,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
32981
32981
  {
32982
32982
  key: attr,
32983
32983
  // value: _value,
32984
- value: (await get_xuExp(attr)) || nodeP.attributes[attr],
32984
+ value: (await get_xuExp(attr)) || func.UI.screen.fix_val_defaults(attr, nodeP.attributes[attr]),
32985
32985
  },
32986
32986
  is_init,
32987
32987
  );
@@ -33043,7 +33043,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
33043
33043
  $elm,
33044
33044
  {
33045
33045
  key: key,
33046
- value: (await get_xuExp(new_key)) || val,
33046
+ value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(key, val),
33047
33047
  },
33048
33048
  is_init,
33049
33049
  refreshed_ds,
@@ -33067,7 +33067,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
33067
33067
  $elm,
33068
33068
  {
33069
33069
  key: key,
33070
- value: (await get_xuExp(new_key)) || val,
33070
+ value: (await get_xuExp(new_key)) || func.UI.screen.fix_val_defaults(key, val),
33071
33071
  },
33072
33072
  is_init,
33073
33073
  refreshed_ds,
@@ -33137,7 +33137,7 @@ func.UI.screen.set_attributes_new = async function (SESSION_ID, is_skeleton, $ro
33137
33137
  $elm,
33138
33138
  {
33139
33139
  key: attr,
33140
- value: (await get_xuExp(attr)) || nodeP.attributes[attr],
33140
+ value: (await get_xuExp(attr)) || func.UI.screen.fix_val_defaults(attr, nodeP.attributes[attr]),
33141
33141
  },
33142
33142
  is_init,
33143
33143
  refreshed_ds,