Skip to content

UzEventMap

Defined in: uzumaki.d.ts:257

DOM-style events that can be attached to any element.

beforeinput: UzInputEvent

Defined in: uzumaki.d.ts:284

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:300

The element lost focus. Does not bubble.


click: UzMouseEvent

Defined in: uzumaki.d.ts:265

A press and release landed on the same element. Bubbles.


commit: UzInputEvent

Defined in: uzumaki.d.ts:296

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:301


cut: UzClipboardEvent

Defined in: uzumaki.d.ts:302


focus: UzFocusEvent

Defined in: uzumaki.d.ts:298

The element gained focus. Does not bubble.


input: UzInputEvent

Defined in: uzumaki.d.ts:279

The element’s value changed. Bubbles.


keydown: UzKeyboardEvent

Defined in: uzumaki.d.ts:275

A key was pressed while the element was focused. Bubbles.


keyup: UzKeyboardEvent

Defined in: uzumaki.d.ts:277

A key was released while the element was focused. Bubbles.


mousedown: UzMouseEvent

Defined in: uzumaki.d.ts:261

A mouse button was pressed over the element. Bubbles.


mouseenter: UzMouseEvent

Defined in: uzumaki.d.ts:267

Pointer entered the element. Fires per element; does not bubble.


mouseleave: UzMouseEvent

Defined in: uzumaki.d.ts:269

Pointer left the element. Fires per element; does not bubble.


mousemove: UzMouseEvent

Defined in: uzumaki.d.ts:259

Pointer moved over the element. Bubbles.


mouseout: UzMouseEvent

Defined in: uzumaki.d.ts:273

Pointer left the element or a descendant. Bubbles.


mouseover: UzMouseEvent

Defined in: uzumaki.d.ts:271

Pointer entered the element or a descendant. Bubbles.


mouseup: UzMouseEvent

Defined in: uzumaki.d.ts:263

A mouse button was released over the element. Bubbles.


paste: UzClipboardEvent

Defined in: uzumaki.d.ts:303


textupdate: UzInputEvent

Defined in: uzumaki.d.ts:290

Edit a keypress would have applied to an editContext view. The framework does not mutate the view; the handler must update its own text buffer and re-render. Mirrors the web EditContext API’s textupdate event. Bubbles.