Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface HoverModeEventHandlers<E>

An object of event handlers that should be provided to a component to enable and disable the visibility of a temporary element while hovering over that component.

remarks

@since 2.8.0

Type parameters

  • E: HTMLElement

Hierarchy

Index

Properties

Optional onClick

onClick: MouseEventHandler<E>

An optional event handler to merge with the hover mode visibility hander. If this function calls event.stopPropagation(), the hover mode behavior will be disabled.

Optional onMouseEnter

onMouseEnter: MouseEventHandler<E>

An optional event handler to merge with the hover mode visibility hander. If this function calls event.stopPropagation(), the hover mode behavior will be disabled.

Optional onMouseLeave

onMouseLeave: MouseEventHandler<E>

An optional event handler to merge with the hover mode visibility hander. If this function calls event.stopPropagation(), the hover mode behavior will be disabled.

Generated using TypeDoc