Skip to content

Commit

Permalink
Update prop descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
jessiehuff committed Apr 25, 2024
1 parent 5d3b4ae commit 269ac65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ export interface DrawerPanelContentProps extends Omit<React.HTMLProps<HTMLDivEle
isResizable?: boolean;
/** Callback for resize end. */
onResize?: (event: MouseEvent | TouchEvent | React.KeyboardEvent, width: number, id: string) => 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;
Expand Down
6 changes: 3 additions & 3 deletions packages/react-core/src/components/Page/Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ export interface PageProps extends React.HTMLProps<HTMLDivElement> {
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;
Expand Down

0 comments on commit 269ac65

Please sign in to comment.