Minor Changes
-
Use
React.useSyncExternalStore
foruseModelState
hook implementation (34f01a3
)The
React.useSyncExternalStore
hook was introduced in React 18 and is designed for external sources of truth, like the anywidgetmodel
. It ensures a shared source within the component tree, and consistent behavior during concurrent rendering, avoiding subtle bugs present inuseEffect
-based patterns.This is marked as a breaking change to signal the internal shift in behavior, though in practice it should be considered an improvement. Most users should not notice any difference, aside from more consistent updates.
-
Mirror
React.useState
API inuseModelState
hook (34f01a3
)Aligns the
useModelState
hook more closely with theReact.useState
API by allowing a callback function in the state setter.
Patch Changes
- Add generic type parameter to
useModel
hook (34f01a3
)