Mutation observer
EuiMutationObserver is a wrapper around the Mutation Observer API which allows watching for DOM changes to elements and their children. EuiMutationObserver takes the same configuration object as the browser API to describe what to watch for, and fires the callback when that mutation happens.
This is a render prop component, EuiMutationObserver will pass a
ref
callback which you must put on the element you wish to observe the mutations.Loading...
Props
EuiMutationObserver
Prop | Description and type | Default value |
---|---|---|
Prop children# | Description and type ReactNode to render as this component's content (ref: (e: HTMLElement) => void) => ReactNode | Default value Required |
Prop onMutation# | Description and type Type: MutationCallback | Default value Required |
Prop observerOptions# | Description and type Type: MutationObserverInit | Default value |