PopperOwnProps

external interface PopperOwnProps : Props(source)

Inheritors

Types

Link copied to clipboard
interface SlotProps

Properties

Link copied to clipboard
abstract var anchorEl: dynamic

An HTML element, virtualElement, or a function that returns either. It's used to set the position of the popper. The return value will passed as the reference object of the Popper instance.

Link copied to clipboard
abstract var children: dynamic

Popper render function or node.

Link copied to clipboard
abstract var container: Element?

An HTML element or function that returns one. The container will have the portal children appended to it.

Link copied to clipboard
abstract var direction: PopperDirection?

Direction of the text.

Link copied to clipboard
abstract var disablePortal: Boolean?

The children will be under the DOM hierarchy of the parent component.

Link copied to clipboard
abstract var keepMounted: Boolean?

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 Popper.

Link copied to clipboard
abstract var key: Key?
Link copied to clipboard
abstract var modifiers: ReadonlyArray<Modifier<*>>?

Popper.js is based on a "plugin-like" architecture, most of its features are fully encapsulated "modifiers".

Link copied to clipboard
abstract var open: Boolean

If true, the component is shown.

Link copied to clipboard
abstract var placement: Placement?

Popper placement.

Link copied to clipboard
abstract var popperOptions: Options?

Options provided to the Popper.js instance.

Link copied to clipboard
abstract var popperRef: Ref<Instance>?

A ref that points to the used popper instance.

Link copied to clipboard

The props used for each slot inside the Popper.

Link copied to clipboard
abstract var slots: PopperSlots?

The components used for each slot inside the Popper. Either a string to use a HTML element or a component.

Link copied to clipboard
abstract var transition: Boolean?

Help supporting a react-transition-group/Transition component.

Functions

Link copied to clipboard
open inline operator fun Props?.unaryPlus()