jaredLunde / react-hook

↩ Strongly typed, concurrent mode-safe React hooks
https://npmjs.com/org/react-hook
MIT License
1.44k stars 97 forks source link

[resize-observer] fix: Accept non-HTML elements #307

Closed jwueller closed 5 months ago

jwueller commented 5 months ago

This change is pretty self-explanatory. ResizeObserver accepts Element, while useResizeObserver only accepts HTMLElement. This PR widens the type to Element, so that all element types (e.g. <svg/>) can be observed too.

Fixes/Closes #306.