@serenity-is/corelib / ElementAttributes

Interface: ElementAttributes<T>

Defined in: ../domwise/dist/index.d.ts:48

Global Element + Node interface keys, shared by all tags regardless of their namespace:

  1. That's keys that are defined BY ALL HTMLElement/SVGElement/MathMLElement interfaces.
  2. Includes keys defined by Element and Node interfaces.

Extends

  • CustomDomAttributes<T>.DirectiveAttributes.DirectiveFunctionAttributes<T>.PropAttributes.OnAttributes<T>.EventHandlersElement<T>.AriaAttributes

Type Parameters

T

T

Properties

aria-activedescendant?

optional aria-activedescendant: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:176

Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.


aria-atomic?

optional aria-atomic: PropValue<false | EnumeratedPseudoBoolean>

Defined in: ../domwise/dist/index.d.ts:181

Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.


aria-autocomplete?

optional aria-autocomplete: PropValue<false | "none" | "list" | "both" | "inline">

Defined in: ../domwise/dist/index.d.ts:208

Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be presented if they are made.


aria-braillelabel?

optional aria-braillelabel: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:188

Similar to the global aria-label. Defines a string value that labels the current element, which is intended to be converted into Braille.

See

aria-label.


aria-brailleroledescription?

optional aria-brailleroledescription: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:202

Defines a human-readable, author-localized abbreviated description for the role of an element intended to be converted into Braille. Braille is not a one-to-one transliteration of letters and numbers, but rather it includes various abbreviations, contractions, and characters that represent words (known as logograms).

Instead of converting long role descriptions to Braille, the aria-brailleroledescription attribute allows for providing an abbreviated version of the aria-roledescription value, which is a human-readable, author-localized description for the role of an element, for improved user experience with braille interfaces.

See

aria-roledescription.


aria-busy?

optional aria-busy: PropValue<false | EnumeratedPseudoBoolean>

Defined in: ../domwise/dist/index.d.ts:213

Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user.


aria-checked?

optional aria-checked: PropValue<false | EnumeratedPseudoBoolean | "mixed">

Defined in: ../domwise/dist/index.d.ts:219

Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.

See

  • aria-pressed
  • aria-selected.

aria-colcount?

optional aria-colcount: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:225

Defines the total number of columns in a table, grid, or treegrid.

See

aria-colindex.


aria-colindex?

optional aria-colindex: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:232

Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.

See

  • aria-colcount
  • aria-colspan.

aria-colindextext?

optional aria-colindextext: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:234

Defines a human-readable text alternative of the numeric aria-colindex.


aria-colspan?

optional aria-colspan: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:241

Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.

See

  • aria-colindex
  • aria-rowspan.

aria-controls?

optional aria-controls: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:248

Identifies the element (or elements) whose contents or presence are controlled by the current element.

See

aria-owns.


aria-current?

optional aria-current: PropValue<false | "time" | EnumeratedPseudoBoolean | "page" | "step" | "date" | "location">

Defined in: ../domwise/dist/index.d.ts:253

Indicates the element that represents the current item within a container or set of related elements.


aria-describedby?

optional aria-describedby: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:259

Identifies the element (or elements) that describes the object.

See

aria-labelledby


aria-description?

optional aria-description: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:265

Defines a string value that describes or annotates the current element.

See

aria-describedby


aria-details?

optional aria-details: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:271

Identifies the element that provides a detailed, extended description for the object.

See

aria-describedby.


aria-disabled?

optional aria-disabled: PropValue<false | EnumeratedPseudoBoolean>

Defined in: ../domwise/dist/index.d.ts:278

Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.

See

  • aria-hidden
  • aria-readonly.

aria-dropeffect?

optional aria-dropeffect: PropValue<false | "link" | "copy" | "none" | "move" | "execute" | "popup">

Defined in: ../domwise/dist/index.d.ts:285

Indicates what functions can be performed when a dragged object is released on the drop target.

Deprecated

In ARIA 1.1


aria-errormessage?

optional aria-errormessage: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:291

Identifies the element that provides an error message for the object.

See

  • aria-invalid
  • aria-describedby.

aria-expanded?

optional aria-expanded: PropValue<false | EnumeratedPseudoBoolean>

Defined in: ../domwise/dist/index.d.ts:296

Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.


aria-flowto?

optional aria-flowto: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:302

Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion, allows assistive technology to override the general default of reading in document source order.


aria-grabbed?

optional aria-grabbed: PropValue<false | EnumeratedPseudoBoolean>

Defined in: ../domwise/dist/index.d.ts:308

Indicates an element's "grabbed" state in a drag-and-drop operation.

Deprecated

In ARIA 1.1


aria-haspopup?

optional aria-haspopup: PropValue<false | "dialog" | "menu" | "tree" | EnumeratedPseudoBoolean | "grid" | "listbox">

Defined in: ../domwise/dist/index.d.ts:313

Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.


aria-hidden?

optional aria-hidden: PropValue<false | EnumeratedPseudoBoolean>

Defined in: ../domwise/dist/index.d.ts:319

Indicates whether the element is exposed to an accessibility API.

See

aria-disabled.


aria-invalid?

optional aria-invalid: PropValue<false | EnumeratedPseudoBoolean | "grammar" | "spelling">

Defined in: ../domwise/dist/index.d.ts:325

Indicates the entered value does not conform to the format expected by the application.

See

aria-errormessage.


aria-keyshortcuts?

optional aria-keyshortcuts: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:330

Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.


aria-label?

optional aria-label: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:336

Defines a string value that labels the current element.

See

aria-labelledby.


aria-labelledby?

optional aria-labelledby: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:342

Identifies the element (or elements) that labels the current element.

See

aria-describedby.


aria-level?

optional aria-level: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:344

Defines the hierarchical level of an element within a structure.


aria-live?

optional aria-live: PropValue<false | "polite" | "assertive" | "off">

Defined in: ../domwise/dist/index.d.ts:349

Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.


aria-modal?

optional aria-modal: PropValue<false | EnumeratedPseudoBoolean>

Defined in: ../domwise/dist/index.d.ts:351

Indicates whether an element is modal when displayed.


aria-multiline?

optional aria-multiline: PropValue<false | EnumeratedPseudoBoolean>

Defined in: ../domwise/dist/index.d.ts:353

Indicates whether a text box accepts multiple lines of input or only a single line.


aria-multiselectable?

optional aria-multiselectable: PropValue<false | EnumeratedPseudoBoolean>

Defined in: ../domwise/dist/index.d.ts:358

Indicates that the user may select more than one item from the current selectable descendants.


aria-orientation?

optional aria-orientation: PropValue<false | "horizontal" | "vertical">

Defined in: ../domwise/dist/index.d.ts:360

Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.


aria-owns?

optional aria-owns: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:368

Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship between DOM elements where the DOM hierarchy cannot be used to represent the relationship.

See

aria-controls.


aria-placeholder?

optional aria-placeholder: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:374

Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value. A hint could be a sample value or a brief description of the expected format.


aria-posinset?

optional aria-posinset: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:381

Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.

See

aria-setsize.


aria-pressed?

optional aria-pressed: PropValue<false | EnumeratedPseudoBoolean | "mixed">

Defined in: ../domwise/dist/index.d.ts:387

Indicates the current "pressed" state of toggle buttons.

See

  • aria-checked
  • aria-selected.

aria-readonly?

optional aria-readonly: PropValue<false | EnumeratedPseudoBoolean>

Defined in: ../domwise/dist/index.d.ts:393

Indicates that the element is not editable, but is otherwise operable.

See

aria-disabled.


aria-relevant?

optional aria-relevant: PropValue<false | "text" | "all" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals">

Defined in: ../domwise/dist/index.d.ts:400

Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.

See

aria-atomic.


aria-required?

optional aria-required: PropValue<false | EnumeratedPseudoBoolean>

Defined in: ../domwise/dist/index.d.ts:402

Indicates that user input is required on the element before a form may be submitted.


aria-roledescription?

optional aria-roledescription: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:404

Defines a human-readable, author-localized description for the role of an element.


aria-rowcount?

optional aria-rowcount: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:410

Defines the total number of rows in a table, grid, or treegrid.

See

aria-rowindex.


aria-rowindex?

optional aria-rowindex: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:417

Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.

See

  • aria-rowcount
  • aria-rowspan.

aria-rowindextext?

optional aria-rowindextext: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:419

Defines a human-readable text alternative of aria-rowindex.


aria-rowspan?

optional aria-rowspan: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:425

Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.

See

  • aria-rowindex
  • aria-colspan.

aria-selected?

optional aria-selected: PropValue<false | EnumeratedPseudoBoolean>

Defined in: ../domwise/dist/index.d.ts:431

Indicates the current "selected" state of various widgets.

See

  • aria-checked
  • aria-pressed.

aria-setsize?

optional aria-setsize: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:438

Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.

See

aria-posinset.


aria-sort?

optional aria-sort: PropValue<false | "none" | "descending" | "ascending" | "other">

Defined in: ../domwise/dist/index.d.ts:440

Indicates if items in a table or grid are sorted in ascending or descending order.


aria-valuemax?

optional aria-valuemax: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:442

Defines the maximum allowed value for a range widget.


aria-valuemin?

optional aria-valuemin: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:444

Defines the minimum allowed value for a range widget.


aria-valuenow?

optional aria-valuenow: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:450

Defines the current value for a range widget.

See

aria-valuetext.


aria-valuetext?

optional aria-valuetext: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:452

Defines the human readable text alternative of aria-valuenow for a range widget.


autofocus?

optional autofocus: PropValue<BooleanAttribute>

Defined in: ../domwise/dist/index.d.ts:606


children?

optional children: ComponentChildren

Defined in: ../domwise/dist/index.d.ts:39

Inherited from

CustomDomAttributes.children


class?

optional class: PropValue<ClassNames> | {[key: string]: PropValue<boolean>; }

Defined in: ../domwise/dist/index.d.ts:607


className?

optional className: PropValue<ClassNames> | {[key: string]: PropValue<boolean>; }

Defined in: ../domwise/dist/index.d.ts:49


dangerouslySetInnerHTML?

optional dangerouslySetInnerHTML: object

Defined in: ../domwise/dist/index.d.ts:40

__html

__html: string

Inherited from

CustomDomAttributes.dangerouslySetInnerHTML


elementtiming?

optional elementtiming: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:610


id?

optional id: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:611


namespaceURI?

optional namespaceURI: string

Defined in: ../domwise/dist/index.d.ts:51


nonce?

optional nonce: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:612


on?

optional on: Record<string, Function>

Defined in: ../domwise/dist/index.d.ts:45

compat from jsx-dom/react

Inherited from

CustomDomAttributes.on


onAbort?

optional onAbort: EventHandler<T, UIEvent>

Defined in: ../domwise/dist/index.d.ts:480


onAnimationCancel?

optional onAnimationCancel: EventHandler<T, AnimationEvent>

Defined in: ../domwise/dist/index.d.ts:481


onAnimationEnd?

optional onAnimationEnd: EventHandler<T, AnimationEvent>

Defined in: ../domwise/dist/index.d.ts:482


onAnimationIteration?

optional onAnimationIteration: EventHandler<T, AnimationEvent>

Defined in: ../domwise/dist/index.d.ts:483


onAnimationStart?

optional onAnimationStart: EventHandler<T, AnimationEvent>

Defined in: ../domwise/dist/index.d.ts:484


onAuxClick?

optional onAuxClick: EventHandler<T, PointerEvent>

Defined in: ../domwise/dist/index.d.ts:485


onBeforeCopy?

optional onBeforeCopy: EventHandler<T, ClipboardEvent>

Defined in: ../domwise/dist/index.d.ts:486


onBeforeCut?

optional onBeforeCut: EventHandler<T, ClipboardEvent>

Defined in: ../domwise/dist/index.d.ts:487


onBeforeInput?

optional onBeforeInput: InputEventHandler<T, InputEvent>

Defined in: ../domwise/dist/index.d.ts:488


onBeforeMatch?

optional onBeforeMatch: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:489


onBeforePaste?

optional onBeforePaste: EventHandler<T, ClipboardEvent>

Defined in: ../domwise/dist/index.d.ts:490


onBeforeToggle?

optional onBeforeToggle: EventHandler<T, ToggleEvent>

Defined in: ../domwise/dist/index.d.ts:491


onBeforeXRSelect?

optional onBeforeXRSelect: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:492


onBlur?

optional onBlur: FocusEventHandler<T, FocusEvent>

Defined in: ../domwise/dist/index.d.ts:493


onCancel?

optional onCancel: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:494


onCanPlay?

optional onCanPlay: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:495


onCanPlayThrough?

optional onCanPlayThrough: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:496


onCapture?

optional onCapture: Record<string, Function>

Defined in: ../domwise/dist/index.d.ts:46

Inherited from

CustomDomAttributes.onCapture


onChange?

optional onChange: ChangeEventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:497


onClick?

optional onClick: EventHandler<T, MouseEvent>

Defined in: ../domwise/dist/index.d.ts:498


onClickCapture?

optional onClickCapture: EventHandler<T, MouseEvent>

Defined in: ../domwise/dist/index.d.ts:52


onClose?

optional onClose: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:499


onCommand?

optional onCommand: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:501


onCompositionEnd?

optional onCompositionEnd: EventHandler<T, CompositionEvent>

Defined in: ../domwise/dist/index.d.ts:502


onCompositionStart?

optional onCompositionStart: EventHandler<T, CompositionEvent>

Defined in: ../domwise/dist/index.d.ts:503


onCompositionUpdate?

optional onCompositionUpdate: EventHandler<T, CompositionEvent>

Defined in: ../domwise/dist/index.d.ts:504


onContentVisibilityAutoStateChange?

optional onContentVisibilityAutoStateChange: EventHandler<T, ContentVisibilityAutoStateChangeEvent>

Defined in: ../domwise/dist/index.d.ts:505


onContextLost?

optional onContextLost: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:506


onContextMenu?

optional onContextMenu: EventHandler<T, PointerEvent>

Defined in: ../domwise/dist/index.d.ts:507


onContextRestored?

optional onContextRestored: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:508


onCopy?

optional onCopy: EventHandler<T, ClipboardEvent>

Defined in: ../domwise/dist/index.d.ts:509


onCueChange?

optional onCueChange: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:510


onCut?

optional onCut: EventHandler<T, ClipboardEvent>

Defined in: ../domwise/dist/index.d.ts:511


onDblClick?

optional onDblClick: EventHandler<T, MouseEvent>

Defined in: ../domwise/dist/index.d.ts:512


onDblClickCapture?

optional onDblClickCapture: EventHandler<T, MouseEvent>

Defined in: ../domwise/dist/index.d.ts:53


onDoubleClick?

optional onDoubleClick: EventHandler<T, MouseEvent>

Defined in: ../domwise/dist/index.d.ts:54


onDoubleClickCapture?

optional onDoubleClickCapture: EventHandler<T, MouseEvent>

Defined in: ../domwise/dist/index.d.ts:55


onDrag?

optional onDrag: EventHandler<T, DragEvent>

Defined in: ../domwise/dist/index.d.ts:513


onDragEnd?

optional onDragEnd: EventHandler<T, DragEvent>

Defined in: ../domwise/dist/index.d.ts:514


onDragEnter?

optional onDragEnter: EventHandler<T, DragEvent>

Defined in: ../domwise/dist/index.d.ts:515


onDragExit?

optional onDragExit: EventHandler<T, DragEvent>

Defined in: ../domwise/dist/index.d.ts:516


onDragLeave?

optional onDragLeave: EventHandler<T, DragEvent>

Defined in: ../domwise/dist/index.d.ts:517


onDragOver?

optional onDragOver: EventHandler<T, DragEvent>

Defined in: ../domwise/dist/index.d.ts:518


onDragStart?

optional onDragStart: EventHandler<T, DragEvent>

Defined in: ../domwise/dist/index.d.ts:519


onDrop?

optional onDrop: EventHandler<T, DragEvent>

Defined in: ../domwise/dist/index.d.ts:520


onDurationChange?

optional onDurationChange: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:521


onEmptied?

optional onEmptied: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:522


onEnded?

optional onEnded: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:523


onError?

optional onError: EventHandler<T, ErrorEvent>

Defined in: ../domwise/dist/index.d.ts:524


onFocus?

optional onFocus: FocusEventHandler<T, FocusEvent>

Defined in: ../domwise/dist/index.d.ts:525


onFocusIn?

optional onFocusIn: FocusEventHandler<T, FocusEvent>

Defined in: ../domwise/dist/index.d.ts:526


onFocusOut?

optional onFocusOut: FocusEventHandler<T, FocusEvent>

Defined in: ../domwise/dist/index.d.ts:527


onFormData?

optional onFormData: EventHandler<T, FormDataEvent>

Defined in: ../domwise/dist/index.d.ts:528


onFullscreenChange?

optional onFullscreenChange: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:529


onFullscreenError?

optional onFullscreenError: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:530


onGotPointerCapture?

optional onGotPointerCapture: EventHandler<T, PointerEvent>

Defined in: ../domwise/dist/index.d.ts:531


onInput?

optional onInput: InputEventHandler<T, InputEvent>

Defined in: ../domwise/dist/index.d.ts:532


onInvalid?

optional onInvalid: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:533


onKeyDown?

optional onKeyDown: EventHandler<T, KeyboardEvent>

Defined in: ../domwise/dist/index.d.ts:534


onKeyPress?

optional onKeyPress: EventHandler<T, KeyboardEvent>

Defined in: ../domwise/dist/index.d.ts:535


onKeyUp?

optional onKeyUp: EventHandler<T, KeyboardEvent>

Defined in: ../domwise/dist/index.d.ts:536


onLoad?

optional onLoad: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:537


onLoadedData?

optional onLoadedData: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:538


onLoadedMetadata?

optional onLoadedMetadata: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:539


onLoadStart?

optional onLoadStart: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:540


onLostPointerCapture?

optional onLostPointerCapture: EventHandler<T, PointerEvent>

Defined in: ../domwise/dist/index.d.ts:541


onMouseDown?

optional onMouseDown: EventHandler<T, MouseEvent>

Defined in: ../domwise/dist/index.d.ts:542


onMouseEnter?

optional onMouseEnter: EventHandler<T, MouseEvent>

Defined in: ../domwise/dist/index.d.ts:543


onMouseLeave?

optional onMouseLeave: EventHandler<T, MouseEvent>

Defined in: ../domwise/dist/index.d.ts:544


onMouseMove?

optional onMouseMove: EventHandler<T, MouseEvent>

Defined in: ../domwise/dist/index.d.ts:545


onMouseOut?

optional onMouseOut: EventHandler<T, MouseEvent>

Defined in: ../domwise/dist/index.d.ts:546


onMouseOver?

optional onMouseOver: EventHandler<T, MouseEvent>

Defined in: ../domwise/dist/index.d.ts:547


onMouseUp?

optional onMouseUp: EventHandler<T, MouseEvent>

Defined in: ../domwise/dist/index.d.ts:548


onPaste?

optional onPaste: EventHandler<T, ClipboardEvent>

Defined in: ../domwise/dist/index.d.ts:549


onPause?

optional onPause: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:550


onPlay?

optional onPlay: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:551


onPlaying?

optional onPlaying: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:552


onPointerCancel?

optional onPointerCancel: EventHandler<T, PointerEvent>

Defined in: ../domwise/dist/index.d.ts:553


onPointerDown?

optional onPointerDown: EventHandler<T, PointerEvent>

Defined in: ../domwise/dist/index.d.ts:554


onPointerEnter?

optional onPointerEnter: EventHandler<T, PointerEvent>

Defined in: ../domwise/dist/index.d.ts:555


onPointerLeave?

optional onPointerLeave: EventHandler<T, PointerEvent>

Defined in: ../domwise/dist/index.d.ts:556


onPointerMove?

optional onPointerMove: EventHandler<T, PointerEvent>

Defined in: ../domwise/dist/index.d.ts:557


onPointerOut?

optional onPointerOut: EventHandler<T, PointerEvent>

Defined in: ../domwise/dist/index.d.ts:558


onPointerOver?

optional onPointerOver: EventHandler<T, PointerEvent>

Defined in: ../domwise/dist/index.d.ts:559


onPointerRawUpdate?

optional onPointerRawUpdate: EventHandler<T, PointerEvent>

Defined in: ../domwise/dist/index.d.ts:560


onPointerUp?

optional onPointerUp: EventHandler<T, PointerEvent>

Defined in: ../domwise/dist/index.d.ts:561


onProgress?

optional onProgress: EventHandler<T, ProgressEvent<EventTarget>>

Defined in: ../domwise/dist/index.d.ts:562


onRateChange?

optional onRateChange: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:563


onReset?

optional onReset: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:564


onResize?

optional onResize: EventHandler<T, UIEvent>

Defined in: ../domwise/dist/index.d.ts:565


onScroll?

optional onScroll: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:566


onScrollEnd?

optional onScrollEnd: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:567


onScrollSnapChange?

optional onScrollSnapChange: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:568


onScrollSnapChanging?

optional onScrollSnapChanging: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:569


onSecurityPolicyViolation?

optional onSecurityPolicyViolation: EventHandler<T, SecurityPolicyViolationEvent>

Defined in: ../domwise/dist/index.d.ts:570


onSeeked?

optional onSeeked: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:571


onSeeking?

optional onSeeking: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:572


onSelect?

optional onSelect: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:573


onSelectionChange?

optional onSelectionChange: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:574


onSelectStart?

optional onSelectStart: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:575


onSlotChange?

optional onSlotChange: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:576


onStalled?

optional onStalled: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:577


onSubmit?

optional onSubmit: EventHandler<T, SubmitEvent>

Defined in: ../domwise/dist/index.d.ts:578


onSuspend?

optional onSuspend: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:579


onTimeUpdate?

optional onTimeUpdate: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:580


onToggle?

optional onToggle: EventHandler<T, ToggleEvent>

Defined in: ../domwise/dist/index.d.ts:581


onTouchCancel?

optional onTouchCancel: EventHandler<T, TouchEvent>

Defined in: ../domwise/dist/index.d.ts:582


onTouchEnd?

optional onTouchEnd: EventHandler<T, TouchEvent>

Defined in: ../domwise/dist/index.d.ts:583


onTouchMove?

optional onTouchMove: EventHandler<T, TouchEvent>

Defined in: ../domwise/dist/index.d.ts:584


onTouchStart?

optional onTouchStart: EventHandler<T, TouchEvent>

Defined in: ../domwise/dist/index.d.ts:585


onTransitionCancel?

optional onTransitionCancel: EventHandler<T, TransitionEvent>

Defined in: ../domwise/dist/index.d.ts:586


onTransitionEnd?

optional onTransitionEnd: EventHandler<T, TransitionEvent>

Defined in: ../domwise/dist/index.d.ts:587


onTransitionRun?

optional onTransitionRun: EventHandler<T, TransitionEvent>

Defined in: ../domwise/dist/index.d.ts:588


onTransitionStart?

optional onTransitionStart: EventHandler<T, TransitionEvent>

Defined in: ../domwise/dist/index.d.ts:589


onVolumeChange?

optional onVolumeChange: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:590


onWaiting?

optional onWaiting: EventHandler<T, Event>

Defined in: ../domwise/dist/index.d.ts:591


onWheel?

optional onWheel: EventHandler<T, WheelEvent>

Defined in: ../domwise/dist/index.d.ts:592


part?

optional part: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:613


ref?

optional ref: Ref<T>

Defined in: ../domwise/dist/index.d.ts:43

Inherited from

CustomDomAttributes.ref


role?

optional role: PropValue<false | "dialog" | "article" | "button" | "figure" | "form" | "img" | "link" | "main" | "menu" | "meter" | "option" | "search" | "table" | "switch" | "math" | "marquee" | "menuitem" | "radio" | "checkbox" | "none" | "heading" | "list" | "tree" | "alert" | "grid" | "presentation" | "tooltip" | "row" | "cell" | "tab" | "separator" | "alertdialog" | "application" | "banner" | "columnheader" | "combobox" | "complementary" | "contentinfo" | "definition" | "directory" | "document" | "feed" | "gridcell" | "group" | "listbox" | "listitem" | "log" | "menubar" | "menuitemcheckbox" | "menuitemradio" | "navigation" | "note" | "progressbar" | "radiogroup" | "region" | "rowgroup" | "rowheader" | "scrollbar" | "searchbox" | "slider" | "spinbutton" | "status" | "tablist" | "tabpanel" | "term" | "textbox" | "timer" | "toolbar" | "treegrid" | "treeitem">

Defined in: ../domwise/dist/index.d.ts:453


slot?

optional slot: PropValue<string | false>

Defined in: ../domwise/dist/index.d.ts:614


style?

optional style: PropValue<string | false | StyleProperties>

Defined in: ../domwise/dist/index.d.ts:615


tabindex?

optional tabindex: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:616


tabIndex?

optional tabIndex: PropValue<string | number | false>

Defined in: ../domwise/dist/index.d.ts:50


textContent?

optional textContent: PropValue<string | number>

Defined in: ../domwise/dist/index.d.ts:604