onClick
| MouseEventHandler<HTMLDivElement>
| |
onClickCapture
| MouseEventHandler<HTMLDivElement>
| |
onAuxClick
| MouseEventHandler<HTMLDivElement>
| |
onAuxClickCapture
| MouseEventHandler<HTMLDivElement>
| |
onContextMenu
| MouseEventHandler<HTMLDivElement>
| |
onContextMenuCapture
| MouseEventHandler<HTMLDivElement>
| |
onDoubleClick
| MouseEventHandler<HTMLDivElement>
| |
onDoubleClickCapture
| MouseEventHandler<HTMLDivElement>
| |
onMouseDown
| MouseEventHandler<HTMLDivElement>
| |
onMouseDownCapture
| MouseEventHandler<HTMLDivElement>
| |
onMouseEnter
| MouseEventHandler<HTMLDivElement>
| |
onMouseLeave
| MouseEventHandler<HTMLDivElement>
| |
onMouseMove
| MouseEventHandler<HTMLDivElement>
| |
onMouseMoveCapture
| MouseEventHandler<HTMLDivElement>
| |
onMouseOut
| MouseEventHandler<HTMLDivElement>
| |
onMouseOutCapture
| MouseEventHandler<HTMLDivElement>
| |
onMouseOver
| MouseEventHandler<HTMLDivElement>
| |
onMouseOverCapture
| MouseEventHandler<HTMLDivElement>
| |
onMouseUp
| MouseEventHandler<HTMLDivElement>
| |
onMouseUpCapture
| MouseEventHandler<HTMLDivElement>
| |
onTouchCancel
| TouchEventHandler<HTMLDivElement>
| |
onTouchCancelCapture
| TouchEventHandler<HTMLDivElement>
| |
onTouchEnd
| TouchEventHandler<HTMLDivElement>
| |
onTouchEndCapture
| TouchEventHandler<HTMLDivElement>
| |
onTouchMove
| TouchEventHandler<HTMLDivElement>
| |
onTouchMoveCapture
| TouchEventHandler<HTMLDivElement>
| |
onTouchStart
| TouchEventHandler<HTMLDivElement>
| |
onTouchStartCapture
| TouchEventHandler<HTMLDivElement>
| |
onPointerDown
| PointerEventHandler<HTMLDivElement>
| |
onPointerDownCapture
| PointerEventHandler<HTMLDivElement>
| |
onPointerMove
| PointerEventHandler<HTMLDivElement>
| |
onPointerMoveCapture
| PointerEventHandler<HTMLDivElement>
| |
onPointerUp
| PointerEventHandler<HTMLDivElement>
| |
onPointerUpCapture
| PointerEventHandler<HTMLDivElement>
| |
onPointerCancel
| PointerEventHandler<HTMLDivElement>
| |
onPointerCancelCapture
| PointerEventHandler<HTMLDivElement>
| |
onPointerEnter
| PointerEventHandler<HTMLDivElement>
| |
onPointerLeave
| PointerEventHandler<HTMLDivElement>
| |
onPointerOver
| PointerEventHandler<HTMLDivElement>
| |
onPointerOverCapture
| PointerEventHandler<HTMLDivElement>
| |
onPointerOut
| PointerEventHandler<HTMLDivElement>
| |
onPointerOutCapture
| PointerEventHandler<HTMLDivElement>
| |
onGotPointerCapture
| PointerEventHandler<HTMLDivElement>
| |
onGotPointerCaptureCapture
| PointerEventHandler<HTMLDivElement>
| |
onLostPointerCapture
| PointerEventHandler<HTMLDivElement>
| |
onLostPointerCaptureCapture
| PointerEventHandler<HTMLDivElement>
| |
onScroll
| UIEventHandler<HTMLDivElement>
| |
onScrollCapture
| UIEventHandler<HTMLDivElement>
| |
onWheel
| WheelEventHandler<HTMLDivElement>
| |
onWheelCapture
| WheelEventHandler<HTMLDivElement>
| |
onAnimationStart
| AnimationEventHandler<HTMLDivElement>
| |
onAnimationStartCapture
| AnimationEventHandler<HTMLDivElement>
| |
onAnimationEnd
| AnimationEventHandler<HTMLDivElement>
| |
onAnimationEndCapture
| AnimationEventHandler<HTMLDivElement>
| |
onAnimationIteration
| AnimationEventHandler<HTMLDivElement>
| |
onAnimationIterationCapture
| AnimationEventHandler<HTMLDivElement>
| |
onTransitionCancel
| TransitionEventHandler<HTMLDivElement>
| |
onTransitionCancelCapture
| TransitionEventHandler<HTMLDivElement>
| |
onTransitionEnd
| TransitionEventHandler<HTMLDivElement>
| |
onTransitionEndCapture
| TransitionEventHandler<HTMLDivElement>
| |
onTransitionRun
| TransitionEventHandler<HTMLDivElement>
| |
onTransitionRunCapture
| TransitionEventHandler<HTMLDivElement>
| |
onTransitionStart
| TransitionEventHandler<HTMLDivElement>
| |
onTransitionStartCapture
| TransitionEventHandler<HTMLDivElement>
| |
onFocus
| ((e: FocusEvent<Element, Element>) => void)
| Handler that is called when the element receives focus. |
onBlur
| ((e: FocusEvent<Element, Element>) => void)
| Handler that is called when the element loses focus. |
onFocusChange
| ((isFocused: boolean) => void)
| Handler that is called when the element's focus status changes. |
onKeyDown
| ((e: KeyboardEvent) => void)
| Handler that is called when a key is pressed. |
onKeyUp
| ((e: KeyboardEvent) => void)
| Handler that is called when a key is released. |
onChange
| ((value: TimeValue) => void)
| Handler that is called when the value changes. |
onCopy
| ClipboardEventHandler<HTMLInputElement>
| Handler that is called when the user copies text. See
[MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/oncopy). |
onCut
| ClipboardEventHandler<HTMLInputElement>
| Handler that is called when the user cuts text. See
[MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/oncut). |
onPaste
| ClipboardEventHandler<HTMLInputElement>
| Handler that is called when the user pastes text. See
[MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/onpaste). |
onCompositionStart
| CompositionEventHandler<HTMLInputElement>
| Handler that is called when a text composition system starts a new text composition session.
See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionstart_event). |
onCompositionEnd
| CompositionEventHandler<HTMLInputElement>
| Handler that is called when a text composition system completes or cancels the current text
composition session. See
[MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionend_event). |
onCompositionUpdate
| CompositionEventHandler<HTMLInputElement>
| Handler that is called when a new character is received in the current text composition
session. See
[MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionupdate_event). |
onSelect
| ReactEventHandler<HTMLInputElement>
| Handler that is called when text in the input is selected. See
[MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/select_event). |
onBeforeInput
| FormEventHandler<HTMLInputElement>
| Handler that is called when the input value is about to be modified. See
[MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/beforeinput_event). |
onInput
| FormEventHandler<HTMLInputElement>
| Handler that is called when the input value is modified. See
[MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event). |