Modal API
Demos
For examples and details on the usage of this React component, visit the component demo pages:
Import
import Modal from '@mui/joy/Modal';
// or
import { Modal } from '@mui/joy';
Props
Props of the native component are also available.
The component used for the root node. Either a string to use a HTML element or a component.
Type:
elementType
An HTML element or function that returns one. The container
will have the portal children appended to it.
By default, it uses the body of the top-level document object, so it's simply document.body
most of the time.
Type:
HTML element | func
If true
, the modal will not automatically shift focus to itself when it opens, and replace it to the last focused element when it closes. This also works correctly with any modal children that have the disableAutoFocus
prop.
Generally this should never be set to true
as it makes the modal less accessible to assistive technologies, like screen readers.
Type:
bool
Default:
false
If true
, the modal will not prevent focus from leaving the modal while open.
Generally this should never be set to true
as it makes the modal less accessible to assistive technologies, like screen readers.
Type:
bool
Default:
false
If true
, hitting escape will not fire the onClose
callback.
Type:
bool
Default:
false
The children
will be under the DOM hierarchy of the parent component.
Type:
bool
Default:
false
If true
, the modal will not restore focus to previously focused element once modal is hidden or unmounted.
Type:
bool
Default:
false
Always keep the children in the DOM. This prop can be useful in SEO situation or when you want to maximize the responsiveness of the Modal.
Type:
bool
Default:
false
Callback fired when the component requests to be closed. The reason
parameter can optionally be used to control the response to onClose
.
Type:
func
Signature:
function(event: object, reason: string) => void
event
The event source of the callback.reason
Can be:"escapeKeyDown"
,"backdropClick"
,"closeClick"
.
The props used for each slot inside.
Type:
{ backdrop?: func | object, root?: func | object }
Default:
{}
The components used for each slot inside.
Type:
{ backdrop?: elementType, root?: elementType }
Default:
{}
ref
is forwarded to the root element.Slots
To learn how to customize the slot, check out the Overriding component structure guide.
You can override the style of the component using one of these customization options:
- With a global class name.
- With a rule name as part of the component's
styleOverrides
property in a custom theme.