react-resizable-panels 4.7.4 → 4.7.6

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.
@@ -68,7 +68,8 @@ export declare type GroupProps = HTMLAttributes<HTMLDivElement> & {
68
68
  *
69
69
  * ℹ️ This value allows layouts to be remembered between page reloads.
70
70
  *
71
- * ⚠️ Refer to the documentation for how to avoid layout shift when using server components.
71
+ * ⚠️ Slight layout shift may occur when server-rendering panels with percentage-based default sizes.
72
+ * Refer to the documentation for suggestions on how to minimize the impact of this.
72
73
  */
73
74
  defaultLayout?: Layout | undefined;
74
75
  /**
@@ -266,6 +267,9 @@ export declare type PanelProps = BasePanelAttributes & {
266
267
  collapsible?: boolean | undefined;
267
268
  /**
268
269
  * Default size of Panel within its parent group; default is auto-assigned based on the total number of Panels.
270
+ *
271
+ * ⚠️ Percentage based sizes may cause slight layout shift when server-rendering.
272
+ * For more information see the documentation.
269
273
  */
270
274
  defaultSize?: number | string | undefined;
271
275
  /**