If true
, the modal will be open.
Drawer
The Drawer component is a panel that slides out from the edge of the screen. It can be useful when you need users to complete a task or view some details without leaving the current page.
Props#
Drawer Props#
Drawer
composes the Modal
component with these extra props:
isOpen
required
isOpen
required
boolean
onClose
required
onClose
required
Callback invoked to close the modal.
() => void
allowPinchZoom
allowPinchZoom
Handle zoom/pinch gestures on iOS devices when scroll locking is enabled.
boolean
false.
autoFocus
autoFocus
If true
, the modal will autofocus the first enabled and interactive
element within the ModalContent
boolean
true
blockScrollOnMount
blockScrollOnMount
If true
, scrolling will be disabled on the body
when the modal opens.
boolean
true
closeOnEsc
closeOnEsc
If true
, the modal will close when the Esc
key is pressed
boolean
true
closeOnOverlayClick
closeOnOverlayClick
If true
, the modal will close when the overlay is clicked
boolean
true
colorScheme
colorScheme
The visual color appearance of the component
"whiteAlpha" | "blackAlpha" | "gray" | "red" | "orange" | "yellow" | "green" | "teal" | "blue" | "cyan" | "purple" | "pink" | "linkedin" | "facebook" | "messenger" | "whatsapp" | "twitter" | "telegram"
finalFocusRef
finalFocusRef
The ref
of element to receive focus when the modal closes.
RefObject<FocusableElement>
id
id
The id
of the modal
string
initialFocusRef
initialFocusRef
The ref
of element to receive focus when the modal opens.
RefObject<FocusableElement>
isFullHeight
isFullHeight
If true
and drawer's placement is top
or bottom
,
the drawer will occupy the viewport height (100vh)
boolean
lockFocusAcrossFrames
lockFocusAcrossFrames
Enables aggressive focus capturing within iframes.
- If true
: keep focus in the lock, no matter where lock is active
- If false
: allows focus to move outside of iframe
boolean
false
onCloseComplete
onCloseComplete
Fires when all exiting nodes have completed animating out
() => void
onEsc
onEsc
Callback fired when the escape key is pressed and focus is within modal
() => void
onOverlayClick
onOverlayClick
Callback fired when the overlay is clicked.
() => void
placement
placement
The placement of the drawer
SlideDirection | LogicalPlacement
right
portalProps
portalProps
Props to be forwarded to the portal component
Pick<
PortalProps,
"appendToParentPortal" | "containerRef"
>
preserveScrollBarGap
preserveScrollBarGap
If true
, a `padding-right` will be applied to the body element
that's equal to the width of the scrollbar.
This can help prevent some unpleasant flickering effect
and content adjustment when the modal opens
boolean
true
returnFocusOnClose
returnFocusOnClose
If true
, the modal will return focus to the element that triggered it when it closes.
boolean
true
size
size
The size of the Drawer
"xs" | "sm" | "md" | "lg" | "xl" | "full"
xs
trapFocus
trapFocus
If false
, focus lock will be disabled completely.
This is useful in situations where you still need to interact with
other surrounding elements.
🚨Warning: We don't recommend doing this because it hurts the
accessibility of the modal, based on WAI-ARIA specifications.
boolean
true
useInert
useInert
A11y: If true
, the siblings of the modal
will have `aria-hidden`
set to true
so that screen readers can only see the modal
.
This is commonly known as making the other elements **inert**
boolean
true
variant
variant
The variant of the Drawer
string
Other components#
DrawerOverlay
,DrawerFooter
,DrawerHeader
andDrawerBody
composesBox
componentDrawerCloseButton
composesCloseButton
Props#
Drawer Props#
Drawer
composes the Modal
component with these extra props:
isOpen
required
isOpen
required
If true
, the modal will be open.
boolean
onClose
required
onClose
required
Callback invoked to close the modal.
() => void
allowPinchZoom
allowPinchZoom
Handle zoom/pinch gestures on iOS devices when scroll locking is enabled.
boolean
false.
autoFocus
autoFocus
If true
, the modal will autofocus the first enabled and interactive
element within the ModalContent
boolean
true
blockScrollOnMount
blockScrollOnMount
If true
, scrolling will be disabled on the body
when the modal opens.
boolean
true
closeOnEsc
closeOnEsc
If true
, the modal will close when the Esc
key is pressed
boolean
true
closeOnOverlayClick
closeOnOverlayClick
If true
, the modal will close when the overlay is clicked
boolean
true
colorScheme
colorScheme
The visual color appearance of the component
"whiteAlpha" | "blackAlpha" | "gray" | "red" | "orange" | "yellow" | "green" | "teal" | "blue" | "cyan" | "purple" | "pink" | "linkedin" | "facebook" | "messenger" | "whatsapp" | "twitter" | "telegram"
finalFocusRef
finalFocusRef
The ref
of element to receive focus when the modal closes.
RefObject<FocusableElement>
id
id
The id
of the modal
string
initialFocusRef
initialFocusRef
The ref
of element to receive focus when the modal opens.
RefObject<FocusableElement>
isFullHeight
isFullHeight
If true
and drawer's placement is top
or bottom
,
the drawer will occupy the viewport height (100vh)
boolean
lockFocusAcrossFrames
lockFocusAcrossFrames
Enables aggressive focus capturing within iframes.
- If true
: keep focus in the lock, no matter where lock is active
- If false
: allows focus to move outside of iframe
boolean
false
onCloseComplete
onCloseComplete
Fires when all exiting nodes have completed animating out
() => void
onEsc
onEsc
Callback fired when the escape key is pressed and focus is within modal
() => void
onOverlayClick
onOverlayClick
Callback fired when the overlay is clicked.
() => void
placement
placement
The placement of the drawer
SlideDirection | LogicalPlacement
right
portalProps
portalProps
Props to be forwarded to the portal component
Pick<
PortalProps,
"appendToParentPortal" | "containerRef"
>
preserveScrollBarGap
preserveScrollBarGap
If true
, a `padding-right` will be applied to the body element
that's equal to the width of the scrollbar.
This can help prevent some unpleasant flickering effect
and content adjustment when the modal opens
boolean
true
returnFocusOnClose
returnFocusOnClose
If true
, the modal will return focus to the element that triggered it when it closes.
boolean
true
size
size
The size of the Drawer
"xs" | "sm" | "md" | "lg" | "xl" | "full"
xs
trapFocus
trapFocus
If false
, focus lock will be disabled completely.
This is useful in situations where you still need to interact with
other surrounding elements.
🚨Warning: We don't recommend doing this because it hurts the
accessibility of the modal, based on WAI-ARIA specifications.
boolean
true
useInert
useInert
A11y: If true
, the siblings of the modal
will have `aria-hidden`
set to true
so that screen readers can only see the modal
.
This is commonly known as making the other elements **inert**
boolean
true
variant
variant
The variant of the Drawer
string
Other components#
DrawerOverlay
,DrawerFooter
,DrawerHeader
andDrawerBody
composesBox
componentDrawerCloseButton
composesCloseButton