@xuda.io/runtime-bundle 1.0.767 → 1.0.769

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.
@@ -12622,7 +12622,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
12622
12622
  },
12623
12623
  },
12624
12624
  };
12625
- await func.datasource.update(SESSION_ID, datasource_changes, null, true);
12625
+ await func.datasource.update(SESSION_ID, datasource_changes, null, ['radio', 'checkbox'].includes(input_field_type) ? true : false);
12626
12626
  }
12627
12627
  }
12628
12628
  }
@@ -14672,7 +14672,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
14672
14672
  );
14673
14673
 
14674
14674
  let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, $div, true);
14675
- if (ret.abort) return await done();
14675
+ if (ret.abort || nodeP.tagName === 'svg') return await done();
14676
14676
  // check if iterator made to prevent children render
14677
14677
 
14678
14678
  const ret_iterate_child = await iterate_child($div, nodeP, parent_infoP, null, $root_container);
@@ -10332,7 +10332,7 @@ func.UI.screen.execute_xu_functions = async function (SESSION_ID, is_skeleton, $
10332
10332
  },
10333
10333
  },
10334
10334
  };
10335
- await func.datasource.update(SESSION_ID, datasource_changes, null, true);
10335
+ await func.datasource.update(SESSION_ID, datasource_changes, null, ['radio', 'checkbox'].includes(input_field_type) ? true : false);
10336
10336
  }
10337
10337
  }
10338
10338
  }
@@ -12382,7 +12382,7 @@ func.UI.screen.render_ui_tree = async function (SESSION_ID, $container, nodeP, p
12382
12382
  );
12383
12383
 
12384
12384
  let ret = await func.UI.screen.set_attributes_new(SESSION_ID, is_skeleton, $root_container, nodeP, $container, paramsP, parent_infoP, jobNoP, keyP, parent_nodeP, $div, true);
12385
- if (ret.abort) return await done();
12385
+ if (ret.abort || nodeP.tagName === 'svg') return await done();
12386
12386
  // check if iterator made to prevent children render
12387
12387
 
12388
12388
  const ret_iterate_child = await iterate_child($div, nodeP, parent_infoP, null, $root_container);