hide
A data provider that allows you to hide the floating element in applicable situations.
This is useful for situations where you want to hide the floating element because it appears detached from the reference element (or attached to nothing).
In the above example, the floating element turns partially
transparent once it has escaped
the reference element’s
clipping context. Once the reference element is hidden, it hides
itself.
Usage
Apply a hidden visibility style to the floating element based on
the data in middlewareData.hide
:
Order
hide()
should generally be placed at the end of your
middleware array.
Options
These are the options you can pass to hide()
.
strategy
default: 'referenceHidden'
The strategy used to determine when to hide the floating element.
If you’d like to use multiple strategies, call hide()
multiple times in your middleware array with different options.
…detectOverflowOptions
All of detectOverflow
’s options
can be passed. For instance:
Deriving options from state
You can derive the options from the middleware lifecycle state:
Data
Depending on the strategy used, these options may exist in the data object.
referenceHidden
Determines whether the reference element is fully clipped, and is therefore hidden from view.
Note that “hidden” means clipping, visibility
and opacity
styles are not considered.
referenceHiddenOffsets
A side object containing overflow offsets.
escaped
Determines whether the floating element has “escaped” the reference’s clipping context and appears fully detached from it.
escapedOffsets
A side object containing overflow offsets.