Overlay
Overlay components codify design patterns related to floating surfaces such as Dialogs and menus.
Overlay is an internal component and is intended to be used as a private API, composing other components. It is not intended to be used on its own. If you are looking for a standalone overlay component, consider using AnchoredOverlay or Dialog.
The Overlay component handles all behaviors needed by Overlay UIs as well as the common styles that all Overlays should have. Overlay is the internal, or base component for many of our overlay-type components. Overlays use shadows to express elevation.
React examples
Dialog Overlay
Dropdown Overlay
Props
Overlay
Name | Default | Description |
---|---|---|
returnFocusRef Required | React.RefObject<HTMLElement> Ref for the element to focus when the | |
onClickOutside Required | function Function to call when clicking outside of the | |
onEscape Required | function Function to call when user presses | |
ignoreClickRefs | React.RefObject<HTMLElement> [] An array of ref objects to ignore clicks on in the onOutsideClick behavior. This is often used to ignore clicking on the element that toggles the open/closed state for the Overlay to prevent the Overlay from being toggled twice. | |
initialFocusRef | React.RefObject<HTMLElement> Ref for the element to focus when the | |
width | 'auto' | | 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge' | 'auto' Sets the width of the |
height | 'auto' | | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'auto' Sets the height of the |
maxHeight | | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' Sets the maximum height of the | |
maxWidth | | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' Sets the maximum width of the | |
visibility | 'visible' | | 'visible' | 'hidden' Sets the visibility of the |
anchorSide | | 'inside-top' | 'inside-bottom' | 'inside-left' | 'inside-right' | 'inside-center' | 'outside-top' | 'outside-bottom' | 'outside-left' | 'outside-right' If provided, the Overlay will slide into position from the side of the anchor with a brief animation | |
top | 0 | number The top CSS property of the Overlay — affects the vertical position. |
left | 0 | number The left CSS property of the Overlay — affects the horizontal position. |
right | number The right CSS property of the Overlay — affects the horizontal position. | |
bottom | number The bottom CSS property of the Overlay — affects the vertical position. | |
position | absolute | | 'static' | 'relative' | 'absolute' | 'fixed' | 'sticky' The position CSS property of the Overlay — sets how the Overlay is positioned relative to its Portal |
portalContainerName | string If defined, Overlays will be rendered in the named portal. See also | |
overflow | 'hidden' | 'scroll' | 'auto' | 'visible' | |
preventOverflow | true | boolean Determines if the Overlay width should be adjusted responsively if |
role | ARIA role - will most often be 'dialog' or 'menu' ARIA role to use for the overlay | |
data-test-id | unknown | |
sx | SystemStyleObject |