File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
packages/patternfly-4/react-core/src/components/Modal Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,8 @@ export interface ModalProps extends React.HTMLProps<HTMLDivElement> {
4444 appendTo ?: HTMLElement | ( ( ) => HTMLElement ) ;
4545 /** Flag to disable focus trap */
4646 disableFocusTrap ?: boolean ;
47+ /** Description of the modal */
48+ description ?: React . ReactNode ;
4749}
4850
4951interface ModalState {
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export interface ModalContentProps {
3030 isOpen ?: boolean ;
3131 /** Complex header (more than just text), supersedes title for header content */
3232 header ?: React . ReactNode ;
33- /** Description */
33+ /** Description of the modal */
3434 description ?: React . ReactNode ;
3535 /** Simple text content of the Modal Header, also used for aria-label on the body */
3636 title : string ;
You can’t perform that action at this time.
0 commit comments