Skip to content

v3.0.0

Compare
Choose a tag to compare
@megamaddu megamaddu released this 06 Nov 19:29
b99fc56

Major changes

  • Add an additional constraint to component to disallow the children prop, as it can cause runtime bugs when React chooses to wrap or unwrap arrays. This is easily mitigated in most cases by simply using another prop name, like content.

Minor changes

  • Add unsafeComponent which is identical to component except for allowing unsafe usage of the children prop. If you do need to use this, you will likely also need a little FFI and an opaque children type to use with that FFI. Perhaps this library will support those types in the future, but this seems like a pretty uncommon edge case at the moment. For more info, see the React docs on interacting with the children prop.