Releases: bvaughn/react-resizable-panels
Releases · bvaughn/react-resizable-panels
2.0.4
- Fixed
PanelResizeHandle
onDragging
prop to only be called for the handle being dragged (#289)
2.0.3
- Fix resize handle onDragging callback (#278)
2.0.2
- Fixed an issue where size might not be re-initialized correctly after a panel was hidden by the
unstable_Activity
(previously "Offscreen") API.
2.0.1
- Fixed a regression introduced in 2.0.0 that caused React
onClick
and onMouseUp
handlers not to fire.
2.0.0
- Support resizing multiple (intersecting) panels at once (#274)
This behavior can be customized using a new hitAreaMargins
prop; defaults to a 15 pixel margin for coarse inputs and a 5 pixel margin for fine inputs.
1.0.10
- Fixed edge case constraints check bug that could cause a collapsed panel to re-expand unnecessarily (#273)
1.0.9
- DOM util methods scope param defaults to
document
(#262)
- Updating a
Panel
's pixel constraints will trigger revalidation of the Panel
's size (#266)
1.0.8
- Update component signature to declare
ReactElement
return type (rather than ReactNode
) (#256)
- Update
Panel
dev warning to avoid warning when defaultSize === collapsedSize
for collapsible panels (#257)
- Support shadow dom by removing direct references to / dependencies on the root
document
(#204)
1.0.7
- Narrow
tagName
prop to only allow HTMLElement
names (rather than the broader Element
type) (#251)