@xuda.io/runtime-bundle 1.0.1416 → 1.0.1418

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.
@@ -9658,7 +9658,7 @@ func.runtime.ui.generate_xu_ui_id = async function (SESSION_ID, nodeP, $containe
9658
9658
  return hashed_ui_id;
9659
9659
  };
9660
9660
  func.runtime.ui.create_container = async function (options) {
9661
- const _paramsP = structuredClone(options.paramsP);
9661
+ const _paramsP = JSON.parse(JSON.stringify(options.paramsP));
9662
9662
  const _ds = SESSION_OBJ[options.SESSION_ID].DS_GLB[_paramsP.dsSessionP];
9663
9663
  const $appendTo = func.runtime.ui.get_append_target(options.$container, options.$appendToP);
9664
9664
  if (!$appendTo) return null;
@@ -9584,7 +9584,7 @@ func.runtime.ui.generate_xu_ui_id = async function (SESSION_ID, nodeP, $containe
9584
9584
  return hashed_ui_id;
9585
9585
  };
9586
9586
  func.runtime.ui.create_container = async function (options) {
9587
- const _paramsP = structuredClone(options.paramsP);
9587
+ const _paramsP = JSON.parse(JSON.stringify(options.paramsP));
9588
9588
  const _ds = SESSION_OBJ[options.SESSION_ID].DS_GLB[_paramsP.dsSessionP];
9589
9589
  const $appendTo = func.runtime.ui.get_append_target(options.$container, options.$appendToP);
9590
9590
  if (!$appendTo) return null;