diff --git a/packages/react-core/src/components/Drawer/DrawerPanelContent.tsx b/packages/react-core/src/components/Drawer/DrawerPanelContent.tsx index 78764a32e9f..307a8462405 100644 --- a/packages/react-core/src/components/Drawer/DrawerPanelContent.tsx +++ b/packages/react-core/src/components/Drawer/DrawerPanelContent.tsx @@ -37,9 +37,9 @@ export interface DrawerPanelContentProps extends Omit void; - /** The minimum size of a drawer, in either pixels or percentage. */ + /** The minimum size of a drawer. */ minSize?: string; - /** The starting size of a resizable drawer. */ + /** The starting size of a drawer. */ defaultSize?: string; /** The maximum size of a drawer. */ maxSize?: string; diff --git a/packages/react-core/src/components/Page/Page.tsx b/packages/react-core/src/components/Page/Page.tsx index a1ae1681858..b02f560d65e 100644 --- a/packages/react-core/src/components/Page/Page.tsx +++ b/packages/react-core/src/components/Page/Page.tsx @@ -27,11 +27,11 @@ export interface PageProps extends React.HTMLProps { notificationDrawer?: React.ReactNode; /** Flag indicating Notification drawer in expanded */ isNotificationDrawerExpanded?: boolean; - /** Sets default drawer width size */ + /** Sets default drawer size */ drawerDefaultSize?: string; - /** The starting size of a resizable drawer */ + /** Sets the minimum drawer size*/ drawerMinSize?: string; - /** The maximum size of a drawer */ + /** Sets the maximum drawer size */ drawerMaxSize?: string; /** Flag indicating if breadcrumb width should be limited */ isBreadcrumbWidthLimited?: boolean;