react-resizable-panels 4.3.0-alpha.0 → 4.3.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -91,7 +91,7 @@ export declare type GroupProps = HTMLAttributes<HTMLDivElement> & {
91
91
  *
92
92
  * ℹ️ The `useGroupRef` and `useGroupCallbackRef` hooks are exported for convenience use in TypeScript projects.
93
93
  */
94
- groupRef?: Ref<GroupImperativeHandle> | undefined;
94
+ groupRef?: Ref<GroupImperativeHandle | null> | undefined;
95
95
  /**
96
96
  * Uniquely identifies this group within an application.
97
97
  * Falls back to `useId` when not provided.
@@ -277,7 +277,7 @@ export declare type PanelProps = BasePanelAttributes & {
277
277
  *
278
278
  * ℹ️ The `usePanelRef` and `usePanelCallbackRef` hooks are exported for convenience use in TypeScript projects.
279
279
  */
280
- panelRef?: Ref<PanelImperativeHandle> | undefined;
280
+ panelRef?: Ref<PanelImperativeHandle | null> | undefined;
281
281
  /**
282
282
  * CSS properties.
283
283
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-resizable-panels",
3
- "version": "4.3.0-alpha.0",
3
+ "version": "4.3.0-alpha.1",
4
4
  "type": "module",
5
5
  "author": "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)",
6
6
  "contributors": [