UzEventMap
Defined in: uzumaki.d.ts:256
DOM-style events that can be attached to any element.
Extended by
Section titled “Extended by”Properties
Section titled “Properties”beforeinput
Section titled “beforeinput”beforeinput:
UzInputEvent
Defined in: uzumaki.d.ts:283
Fires before an edit is applied to an input. Call preventDefault() to
stop the edit from committing. Bubbles.
blur:
UzFocusEvent
Defined in: uzumaki.d.ts:293
The element lost focus. Does not bubble.
click:
UzMouseEvent
Defined in: uzumaki.d.ts:264
A press and release landed on the same element. Bubbles.
commit
Section titled “commit”commit:
UzInputEvent
Defined in: uzumaki.d.ts:289
The value was committed: fires on blur for a text input whose value differs
from when it was focused, and immediately when a checkbox toggles. Pairs
with the live input/valuechange events. Bubbles.
copy:
UzClipboardEvent
Defined in: uzumaki.d.ts:294
cut:
UzClipboardEvent
Defined in: uzumaki.d.ts:295
focus:
UzFocusEvent
Defined in: uzumaki.d.ts:291
The element gained focus. Does not bubble.
input:
UzInputEvent
Defined in: uzumaki.d.ts:278
The element’s value changed. Bubbles.
keydown
Section titled “keydown”keydown:
UzKeyboardEvent
Defined in: uzumaki.d.ts:274
A key was pressed while the element was focused. Bubbles.
keyup:
UzKeyboardEvent
Defined in: uzumaki.d.ts:276
A key was released while the element was focused. Bubbles.
mousedown
Section titled “mousedown”mousedown:
UzMouseEvent
Defined in: uzumaki.d.ts:260
A mouse button was pressed over the element. Bubbles.
mouseenter
Section titled “mouseenter”mouseenter:
UzMouseEvent
Defined in: uzumaki.d.ts:266
Pointer entered the element. Fires per element; does not bubble.
mouseleave
Section titled “mouseleave”mouseleave:
UzMouseEvent
Defined in: uzumaki.d.ts:268
Pointer left the element. Fires per element; does not bubble.
mousemove
Section titled “mousemove”mousemove:
UzMouseEvent
Defined in: uzumaki.d.ts:258
Pointer moved over the element. Bubbles.
mouseout
Section titled “mouseout”mouseout:
UzMouseEvent
Defined in: uzumaki.d.ts:272
Pointer left the element or a descendant. Bubbles.
mouseover
Section titled “mouseover”mouseover:
UzMouseEvent
Defined in: uzumaki.d.ts:270
Pointer entered the element or a descendant. Bubbles.
mouseup
Section titled “mouseup”mouseup:
UzMouseEvent
Defined in: uzumaki.d.ts:262
A mouse button was released over the element. Bubbles.
paste:
UzClipboardEvent
Defined in: uzumaki.d.ts:296