react-resizable-panels 4.2.0 → 4.2.1-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.
|
@@ -23,6 +23,10 @@ declare type BaseAttributes = Omit<HTMLAttributes<HTMLDivElement>, "role" | "tab
|
|
|
23
23
|
*/
|
|
24
24
|
export declare function Group({ children, className, defaultLayout, disableCursor, disabled, elementRef: elementRefProp, groupRef, id: idProp, onLayoutChange: onLayoutChangeUnstable, orientation, style, ...rest }: GroupProps): JSX.Element;
|
|
25
25
|
|
|
26
|
+
export declare namespace Group {
|
|
27
|
+
var displayName: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
26
30
|
/**
|
|
27
31
|
* Imperative Group API.
|
|
28
32
|
*
|
|
@@ -153,6 +157,10 @@ export declare type Orientation = "horizontal" | "vertical";
|
|
|
153
157
|
*/
|
|
154
158
|
export declare function Panel({ children, className, collapsedSize, collapsible, defaultSize, elementRef: elementRefProp, id: idProp, maxSize, minSize, onResize: onResizeUnstable, panelRef, style, ...rest }: PanelProps): JSX.Element;
|
|
155
159
|
|
|
160
|
+
export declare namespace Panel {
|
|
161
|
+
var displayName: string;
|
|
162
|
+
}
|
|
163
|
+
|
|
156
164
|
/**
|
|
157
165
|
* Imperative Panel API
|
|
158
166
|
*
|
|
@@ -294,7 +302,11 @@ export declare type PanelSize = {
|
|
|
294
302
|
*
|
|
295
303
|
* ℹ️ In addition to the attributes shown above, separator also renders all required [WAI-ARIA properties](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/separator_role#associated_wai-aria_roles_states_and_properties).
|
|
296
304
|
*/
|
|
297
|
-
export declare function Separator({ children, className, elementRef, id: idProp, style, ...rest }: SeparatorProps): JSX.Element;
|
|
305
|
+
export declare function Separator({ children, className, elementRef: elementRefProp, id: idProp, style, ...rest }: SeparatorProps): JSX.Element;
|
|
306
|
+
|
|
307
|
+
export declare namespace Separator {
|
|
308
|
+
var displayName: string;
|
|
309
|
+
}
|
|
298
310
|
|
|
299
311
|
export declare type SeparatorProps = BaseAttributes & {
|
|
300
312
|
/**
|