diff --git a/CHANGELOG.md b/CHANGELOG.md index b253330fe..282fa8fca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ # Changelog -## Unreleased +## 4.5.7 - [646](https://github.com/bvaughn/react-resizable-panels/pull/646): Re-enable the collapsible `Panel` from 4.5.3 that was disabled in 4.5.6 +- [648](https://github.com/bvaughn/react-resizable-panels/pull/648): **Bugfix**: Reset `Separator` hover-state on `Document` "pointerout" ## 4.5.6 diff --git a/integrations/tests/src/components/IFrame.tsx b/integrations/tests/src/components/IFrame.tsx new file mode 100644 index 000000000..4aa4f9744 --- /dev/null +++ b/integrations/tests/src/components/IFrame.tsx @@ -0,0 +1,9 @@ +import { type PropsWithChildren } from "react"; + +export type IFrameProps = PropsWithChildren<{ + className?: string | undefined; +}>; + +export function IFrame({ className }: IFrameProps) { + return