Skip to content

@serenity-is/corelib / ElementAttributes

Interface: ElementAttributes<T>

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

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

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

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" | "inline" | "both">

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Indicates whether an element is modal when displayed.


aria-multiline?

optional aria-multiline: PropValue<false | EnumeratedPseudoBoolean>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


children?

optional children: ComponentChildren

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

Child nodes / JSX children for the element.

Inherited from

CustomDomAttributes.children


class?

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

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


className?

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

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


dangerouslySetInnerHTML?

optional dangerouslySetInnerHTML: object

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

Raw HTML to assign via innerHTML. Use with caution — content is not escaped.

__html

__html: string

Inherited from

CustomDomAttributes.dangerouslySetInnerHTML


elementtiming?

optional elementtiming: PropValue<string | false>

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


id?

optional id: PropValue<string | false>

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


namespaceURI?

optional namespaceURI: string

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


nonce?

optional nonce: PropValue<string | false>

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


on?

optional on: Record<string, Function>

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

Compatibility event map for on* handlers (jsx-dom / React style).

Inherited from

CustomDomAttributes.on


onAbort?

optional onAbort: EventHandler<T, UIEvent>

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


onAnimationCancel?

optional onAnimationCancel: EventHandler<T, AnimationEvent>

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


onAnimationEnd?

optional onAnimationEnd: EventHandler<T, AnimationEvent>

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


onAnimationIteration?

optional onAnimationIteration: EventHandler<T, AnimationEvent>

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


onAnimationStart?

optional onAnimationStart: EventHandler<T, AnimationEvent>

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


onAuxClick?

optional onAuxClick: EventHandler<T, PointerEvent>

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


onBeforeCopy?

optional onBeforeCopy: EventHandler<T, ClipboardEvent>

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


onBeforeCut?

optional onBeforeCut: EventHandler<T, ClipboardEvent>

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


onBeforeInput?

optional onBeforeInput: InputEventHandler<T, InputEvent>

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


onBeforeMatch?

optional onBeforeMatch: EventHandler<T, Event>

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


onBeforePaste?

optional onBeforePaste: EventHandler<T, ClipboardEvent>

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


onBeforeToggle?

optional onBeforeToggle: EventHandler<T, ToggleEvent>

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


onBeforeXRSelect?

optional onBeforeXRSelect: EventHandler<T, Event>

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


onBlur?

optional onBlur: FocusEventHandler<T, FocusEvent>

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


onCancel?

optional onCancel: EventHandler<T, Event>

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


onCanPlay?

optional onCanPlay: EventHandler<T, Event>

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


onCanPlayThrough?

optional onCanPlayThrough: EventHandler<T, Event>

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


onCapture?

optional onCapture: Record<string, Function>

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

Compatibility event map for capture-phase handlers.

Inherited from

CustomDomAttributes.onCapture


onChange?

optional onChange: ChangeEventHandler<T, Event>

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


onClick?

optional onClick: EventHandler<T, MouseEvent>

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


onClickCapture?

optional onClickCapture: EventHandler<T, MouseEvent>

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


onClose?

optional onClose: EventHandler<T, Event>

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


onCommand?

optional onCommand: EventHandler<T, Event>

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


onCompositionEnd?

optional onCompositionEnd: EventHandler<T, CompositionEvent>

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


onCompositionStart?

optional onCompositionStart: EventHandler<T, CompositionEvent>

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


onCompositionUpdate?

optional onCompositionUpdate: EventHandler<T, CompositionEvent>

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


onContentVisibilityAutoStateChange?

optional onContentVisibilityAutoStateChange: EventHandler<T, ContentVisibilityAutoStateChangeEvent>

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


onContextLost?

optional onContextLost: EventHandler<T, Event>

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


onContextMenu?

optional onContextMenu: EventHandler<T, PointerEvent>

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


onContextRestored?

optional onContextRestored: EventHandler<T, Event>

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


onCopy?

optional onCopy: EventHandler<T, ClipboardEvent>

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


onCueChange?

optional onCueChange: EventHandler<T, Event>

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


onCut?

optional onCut: EventHandler<T, ClipboardEvent>

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


onDblClick?

optional onDblClick: EventHandler<T, MouseEvent>

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


onDblClickCapture?

optional onDblClickCapture: EventHandler<T, MouseEvent>

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


onDoubleClick?

optional onDoubleClick: EventHandler<T, MouseEvent>

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


onDoubleClickCapture?

optional onDoubleClickCapture: EventHandler<T, MouseEvent>

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


onDrag?

optional onDrag: EventHandler<T, DragEvent>

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


onDragEnd?

optional onDragEnd: EventHandler<T, DragEvent>

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


onDragEnter?

optional onDragEnter: EventHandler<T, DragEvent>

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


onDragExit?

optional onDragExit: EventHandler<T, DragEvent>

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


onDragLeave?

optional onDragLeave: EventHandler<T, DragEvent>

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


onDragOver?

optional onDragOver: EventHandler<T, DragEvent>

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


onDragStart?

optional onDragStart: EventHandler<T, DragEvent>

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


onDrop?

optional onDrop: EventHandler<T, DragEvent>

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


onDurationChange?

optional onDurationChange: EventHandler<T, Event>

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


onEmptied?

optional onEmptied: EventHandler<T, Event>

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


onEnded?

optional onEnded: EventHandler<T, Event>

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


onError?

optional onError: EventHandler<T, ErrorEvent>

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


onFocus?

optional onFocus: FocusEventHandler<T, FocusEvent>

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


onFocusIn?

optional onFocusIn: FocusEventHandler<T, FocusEvent>

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


onFocusOut?

optional onFocusOut: FocusEventHandler<T, FocusEvent>

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


onFormData?

optional onFormData: EventHandler<T, FormDataEvent>

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


onFullscreenChange?

optional onFullscreenChange: EventHandler<T, Event>

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


onFullscreenError?

optional onFullscreenError: EventHandler<T, Event>

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


onGotPointerCapture?

optional onGotPointerCapture: EventHandler<T, PointerEvent>

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


onInput?

optional onInput: InputEventHandler<T, InputEvent>

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


onInvalid?

optional onInvalid: EventHandler<T, Event>

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


onKeyDown?

optional onKeyDown: EventHandler<T, KeyboardEvent>

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


onKeyPress?

optional onKeyPress: EventHandler<T, KeyboardEvent>

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


onKeyUp?

optional onKeyUp: EventHandler<T, KeyboardEvent>

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


onLoad?

optional onLoad: EventHandler<T, Event>

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


onLoadedData?

optional onLoadedData: EventHandler<T, Event>

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


onLoadedMetadata?

optional onLoadedMetadata: EventHandler<T, Event>

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


onLoadStart?

optional onLoadStart: EventHandler<T, Event>

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


onLostPointerCapture?

optional onLostPointerCapture: EventHandler<T, PointerEvent>

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


onMouseDown?

optional onMouseDown: EventHandler<T, MouseEvent>

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


onMouseEnter?

optional onMouseEnter: EventHandler<T, MouseEvent>

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


onMouseLeave?

optional onMouseLeave: EventHandler<T, MouseEvent>

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


onMouseMove?

optional onMouseMove: EventHandler<T, MouseEvent>

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


onMouseOut?

optional onMouseOut: EventHandler<T, MouseEvent>

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


onMouseOver?

optional onMouseOver: EventHandler<T, MouseEvent>

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


onMouseUp?

optional onMouseUp: EventHandler<T, MouseEvent>

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


onPaste?

optional onPaste: EventHandler<T, ClipboardEvent>

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


onPause?

optional onPause: EventHandler<T, Event>

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


onPlay?

optional onPlay: EventHandler<T, Event>

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


onPlaying?

optional onPlaying: EventHandler<T, Event>

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


onPointerCancel?

optional onPointerCancel: EventHandler<T, PointerEvent>

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


onPointerDown?

optional onPointerDown: EventHandler<T, PointerEvent>

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


onPointerEnter?

optional onPointerEnter: EventHandler<T, PointerEvent>

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


onPointerLeave?

optional onPointerLeave: EventHandler<T, PointerEvent>

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


onPointerMove?

optional onPointerMove: EventHandler<T, PointerEvent>

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


onPointerOut?

optional onPointerOut: EventHandler<T, PointerEvent>

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


onPointerOver?

optional onPointerOver: EventHandler<T, PointerEvent>

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


onPointerRawUpdate?

optional onPointerRawUpdate: EventHandler<T, PointerEvent>

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


onPointerUp?

optional onPointerUp: EventHandler<T, PointerEvent>

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


onProgress?

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

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


onRateChange?

optional onRateChange: EventHandler<T, Event>

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


onReset?

optional onReset: EventHandler<T, Event>

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


onResize?

optional onResize: EventHandler<T, UIEvent>

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


onScroll?

optional onScroll: EventHandler<T, Event>

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


onScrollEnd?

optional onScrollEnd: EventHandler<T, Event>

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


onScrollSnapChange?

optional onScrollSnapChange: EventHandler<T, Event>

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


onScrollSnapChanging?

optional onScrollSnapChanging: EventHandler<T, Event>

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


onSecurityPolicyViolation?

optional onSecurityPolicyViolation: EventHandler<T, SecurityPolicyViolationEvent>

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


onSeeked?

optional onSeeked: EventHandler<T, Event>

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


onSeeking?

optional onSeeking: EventHandler<T, Event>

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


onSelect?

optional onSelect: EventHandler<T, Event>

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


onSelectionChange?

optional onSelectionChange: EventHandler<T, Event>

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


onSelectStart?

optional onSelectStart: EventHandler<T, Event>

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


onSlotChange?

optional onSlotChange: EventHandler<T, Event>

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


onStalled?

optional onStalled: EventHandler<T, Event>

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


onSubmit?

optional onSubmit: EventHandler<T, SubmitEvent>

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


onSuspend?

optional onSuspend: EventHandler<T, Event>

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


onTimeUpdate?

optional onTimeUpdate: EventHandler<T, Event>

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


onToggle?

optional onToggle: EventHandler<T, ToggleEvent>

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


onTouchCancel?

optional onTouchCancel: EventHandler<T, TouchEvent>

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


onTouchEnd?

optional onTouchEnd: EventHandler<T, TouchEvent>

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


onTouchMove?

optional onTouchMove: EventHandler<T, TouchEvent>

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


onTouchStart?

optional onTouchStart: EventHandler<T, TouchEvent>

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


onTransitionCancel?

optional onTransitionCancel: EventHandler<T, TransitionEvent>

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


onTransitionEnd?

optional onTransitionEnd: EventHandler<T, TransitionEvent>

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


onTransitionRun?

optional onTransitionRun: EventHandler<T, TransitionEvent>

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


onTransitionStart?

optional onTransitionStart: EventHandler<T, TransitionEvent>

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


onVolumeChange?

optional onVolumeChange: EventHandler<T, Event>

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


onWaiting?

optional onWaiting: EventHandler<T, Event>

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


onWheel?

optional onWheel: EventHandler<T, WheelEvent>

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


part?

optional part: PropValue<string | false>

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


ref?

optional ref: Ref<T>

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

Ref object or callback that receives the created DOM node.

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" | "alertdialog" | "application" | "banner" | "cell" | "columnheader" | "combobox" | "complementary" | "contentinfo" | "definition" | "directory" | "document" | "feed" | "gridcell" | "group" | "listbox" | "listitem" | "log" | "menubar" | "menuitemcheckbox" | "menuitemradio" | "navigation" | "note" | "progressbar" | "radiogroup" | "region" | "row" | "rowgroup" | "rowheader" | "scrollbar" | "searchbox" | "separator" | "slider" | "spinbutton" | "status" | "tab" | "tablist" | "tabpanel" | "term" | "textbox" | "timer" | "toolbar" | "tooltip" | "treegrid" | "treeitem">

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


slot?

optional slot: PropValue<string | false>

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


style?

optional style: PropValue<string | false | StyleProperties>

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


tabindex?

optional tabindex: PropValue<string | number | false>

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


tabIndex?

optional tabIndex: PropValue<string | number | false>

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


textContent?

optional textContent: PropValue<string | number>

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