@jsenv/navi 0.27.68 → 0.27.69

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.
@@ -22924,6 +22924,10 @@ const useUIStateController = (
22924
22924
  if (el) {
22925
22925
  el.__uiStateController__ = controller;
22926
22926
  }
22927
+ // Re-register so the radio registry stays in sync when props.ref changes
22928
+ // identity (e.g. across a Suspense boundary). The render-phase call in
22929
+ // control_hooks.jsx handles the initial mount; this call handles re-runs.
22930
+ onUIStateControllerCreated(controller);
22927
22931
  return () => {
22928
22932
  if (el && el.__uiStateController__ === controller) {
22929
22933
  delete el.__uiStateController__;