@xuda.io/runtime-bundle 1.0.253 → 1.0.255

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.
@@ -14401,11 +14401,12 @@ func.UI.screen.execute_xu_functions = async function (
14401
14401
  const iterate_info = $elm?.data()?.xuData?.iterate_info
14402
14402
  const reference_source_obj = iterate_info?.reference_source_obj
14403
14403
 
14404
- if (reference_source_obj) {
14405
- view_field_id = (reference_source_obj.fieldIdP || "") + val.value;
14406
- }
14407
14404
 
14408
- if (["_FOR_VAL", "_FOR_KEY"].includes(view_field_id)) {
14405
+
14406
+ if (["_FOR_VAL", "_FOR_KEY"].includes(val.value)) {
14407
+ if (reference_source_obj) {
14408
+ view_field_id = (reference_source_obj.fieldIdP || "") + val.value;
14409
+ }
14409
14410
  is_dynamic_field = true
14410
14411
  field_prop = _ds.dynamic_fields[view_field_id]
14411
14412
  } else {
@@ -14721,6 +14722,7 @@ func.UI.screen.execute_xu_functions = async function (
14721
14722
 
14722
14723
  let iterator_key = custom_iterator_key
14723
14724
  let iterator_val = custom_iterator_val
14725
+ let is_key_dynamic_field, is_val_dynamic_field
14724
14726
 
14725
14727
  // custom FOR_VAL name or namespaced default name
14726
14728
  if (!custom_iterator_key) {
@@ -11811,11 +11811,12 @@ func.UI.screen.execute_xu_functions = async function (
11811
11811
  const iterate_info = $elm?.data()?.xuData?.iterate_info
11812
11812
  const reference_source_obj = iterate_info?.reference_source_obj
11813
11813
 
11814
- if (reference_source_obj) {
11815
- view_field_id = (reference_source_obj.fieldIdP || "") + val.value;
11816
- }
11817
11814
 
11818
- if (["_FOR_VAL", "_FOR_KEY"].includes(view_field_id)) {
11815
+
11816
+ if (["_FOR_VAL", "_FOR_KEY"].includes(val.value)) {
11817
+ if (reference_source_obj) {
11818
+ view_field_id = (reference_source_obj.fieldIdP || "") + val.value;
11819
+ }
11819
11820
  is_dynamic_field = true
11820
11821
  field_prop = _ds.dynamic_fields[view_field_id]
11821
11822
  } else {
@@ -12131,6 +12132,7 @@ func.UI.screen.execute_xu_functions = async function (
12131
12132
 
12132
12133
  let iterator_key = custom_iterator_key
12133
12134
  let iterator_val = custom_iterator_val
12135
+ let is_key_dynamic_field, is_val_dynamic_field
12134
12136
 
12135
12137
  // custom FOR_VAL name or namespaced default name
12136
12138
  if (!custom_iterator_key) {