@serenity-is/domwise / ElementAttributes

Interface: ElementAttributes<T>

Defined in: types/jsx-elements.d.ts:555

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 | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:91

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

Inherited from

AriaAttributes.aria-activedescendant


aria-atomic?

optional aria-atomic: PropValue<RemoveAttribute | EnumeratedPseudoBoolean>

Defined in: types/jsx-elements.d.ts:96

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.

Inherited from

AriaAttributes.aria-atomic


aria-autocomplete?

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

Defined in: types/jsx-elements.d.ts:123

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.

Inherited from

AriaAttributes.aria-autocomplete


aria-braillelabel?

optional aria-braillelabel: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:103

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.

Inherited from

AriaAttributes.aria-braillelabel


aria-brailleroledescription?

optional aria-brailleroledescription: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:117

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.

Inherited from

AriaAttributes.aria-brailleroledescription


aria-busy?

optional aria-busy: PropValue<RemoveAttribute | EnumeratedPseudoBoolean>

Defined in: types/jsx-elements.d.ts:128

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.

Inherited from

AriaAttributes.aria-busy


aria-checked?

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

Defined in: types/jsx-elements.d.ts:134

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

See

  • aria-pressed
  • aria-selected.

Inherited from

AriaAttributes.aria-checked


aria-colcount?

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

Defined in: types/jsx-elements.d.ts:140

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

See

aria-colindex.

Inherited from

AriaAttributes.aria-colcount


aria-colindex?

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

Defined in: types/jsx-elements.d.ts:147

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.

Inherited from

AriaAttributes.aria-colindex


aria-colindextext?

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

Defined in: types/jsx-elements.d.ts:149

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

Inherited from

AriaAttributes.aria-colindextext


aria-colspan?

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

Defined in: types/jsx-elements.d.ts:156

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

See

  • aria-colindex
  • aria-rowspan.

Inherited from

AriaAttributes.aria-colspan


aria-controls?

optional aria-controls: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:163

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

See

aria-owns.

Inherited from

AriaAttributes.aria-controls


aria-current?

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

Defined in: types/jsx-elements.d.ts:168

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

Inherited from

AriaAttributes.aria-current


aria-describedby?

optional aria-describedby: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:174

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

See

aria-labelledby

Inherited from

AriaAttributes.aria-describedby


aria-description?

optional aria-description: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:180

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

See

aria-describedby

Inherited from

AriaAttributes.aria-description


aria-details?

optional aria-details: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:186

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

See

aria-describedby.

Inherited from

AriaAttributes.aria-details


aria-disabled?

optional aria-disabled: PropValue<RemoveAttribute | EnumeratedPseudoBoolean>

Defined in: types/jsx-elements.d.ts:193

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

See

  • aria-hidden
  • aria-readonly.

Inherited from

AriaAttributes.aria-disabled


aria-dropeffect?

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

Defined in: types/jsx-elements.d.ts:200

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

Deprecated

In ARIA 1.1

Inherited from

AriaAttributes.aria-dropeffect


aria-errormessage?

optional aria-errormessage: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:206

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

See

  • aria-invalid
  • aria-describedby.

Inherited from

AriaAttributes.aria-errormessage


aria-expanded?

optional aria-expanded: PropValue<RemoveAttribute | EnumeratedPseudoBoolean>

Defined in: types/jsx-elements.d.ts:211

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

Inherited from

AriaAttributes.aria-expanded


aria-flowto?

optional aria-flowto: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:217

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.

Inherited from

AriaAttributes.aria-flowto


aria-grabbed?

optional aria-grabbed: PropValue<RemoveAttribute | EnumeratedPseudoBoolean>

Defined in: types/jsx-elements.d.ts:223

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

Deprecated

In ARIA 1.1

Inherited from

AriaAttributes.aria-grabbed


aria-haspopup?

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

Defined in: types/jsx-elements.d.ts:228

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

Inherited from

AriaAttributes.aria-haspopup


aria-hidden?

optional aria-hidden: PropValue<RemoveAttribute | EnumeratedPseudoBoolean>

Defined in: types/jsx-elements.d.ts:234

Indicates whether the element is exposed to an accessibility API.

See

aria-disabled.

Inherited from

AriaAttributes.aria-hidden


aria-invalid?

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

Defined in: types/jsx-elements.d.ts:240

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

See

aria-errormessage.

Inherited from

AriaAttributes.aria-invalid


aria-keyshortcuts?

optional aria-keyshortcuts: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:245

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

Inherited from

AriaAttributes.aria-keyshortcuts


aria-label?

optional aria-label: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:251

Defines a string value that labels the current element.

See

aria-labelledby.

Inherited from

AriaAttributes.aria-label


aria-labelledby?

optional aria-labelledby: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:257

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

See

aria-describedby.

Inherited from

AriaAttributes.aria-labelledby


aria-level?

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

Defined in: types/jsx-elements.d.ts:259

Defines the hierarchical level of an element within a structure.

Inherited from

AriaAttributes.aria-level


aria-live?

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

Defined in: types/jsx-elements.d.ts:264

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.

Inherited from

AriaAttributes.aria-live


aria-modal?

optional aria-modal: PropValue<RemoveAttribute | EnumeratedPseudoBoolean>

Defined in: types/jsx-elements.d.ts:266

Indicates whether an element is modal when displayed.

Inherited from

AriaAttributes.aria-modal


aria-multiline?

optional aria-multiline: PropValue<RemoveAttribute | EnumeratedPseudoBoolean>

Defined in: types/jsx-elements.d.ts:268

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

Inherited from

AriaAttributes.aria-multiline


aria-multiselectable?

optional aria-multiselectable: PropValue<RemoveAttribute | EnumeratedPseudoBoolean>

Defined in: types/jsx-elements.d.ts:273

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

Inherited from

AriaAttributes.aria-multiselectable


aria-orientation?

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

Defined in: types/jsx-elements.d.ts:275

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

Inherited from

AriaAttributes.aria-orientation


aria-owns?

optional aria-owns: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:283

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.

Inherited from

AriaAttributes.aria-owns


aria-placeholder?

optional aria-placeholder: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:289

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.

Inherited from

AriaAttributes.aria-placeholder


aria-posinset?

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

Defined in: types/jsx-elements.d.ts:296

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.

Inherited from

AriaAttributes.aria-posinset


aria-pressed?

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

Defined in: types/jsx-elements.d.ts:302

Indicates the current "pressed" state of toggle buttons.

See

  • aria-checked
  • aria-selected.

Inherited from

AriaAttributes.aria-pressed


aria-readonly?

optional aria-readonly: PropValue<RemoveAttribute | EnumeratedPseudoBoolean>

Defined in: types/jsx-elements.d.ts:308

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

See

aria-disabled.

Inherited from

AriaAttributes.aria-readonly


aria-relevant?

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

Defined in: types/jsx-elements.d.ts:315

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

See

aria-atomic.

Inherited from

AriaAttributes.aria-relevant


aria-required?

optional aria-required: PropValue<RemoveAttribute | EnumeratedPseudoBoolean>

Defined in: types/jsx-elements.d.ts:317

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

Inherited from

AriaAttributes.aria-required


aria-roledescription?

optional aria-roledescription: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:319

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

Inherited from

AriaAttributes.aria-roledescription


aria-rowcount?

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

Defined in: types/jsx-elements.d.ts:325

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

See

aria-rowindex.

Inherited from

AriaAttributes.aria-rowcount


aria-rowindex?

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

Defined in: types/jsx-elements.d.ts:332

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.

Inherited from

AriaAttributes.aria-rowindex


aria-rowindextext?

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

Defined in: types/jsx-elements.d.ts:334

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

Inherited from

AriaAttributes.aria-rowindextext


aria-rowspan?

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

Defined in: types/jsx-elements.d.ts:340

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

See

  • aria-rowindex
  • aria-colspan.

Inherited from

AriaAttributes.aria-rowspan


aria-selected?

optional aria-selected: PropValue<RemoveAttribute | EnumeratedPseudoBoolean>

Defined in: types/jsx-elements.d.ts:346

Indicates the current "selected" state of various widgets.

See

  • aria-checked
  • aria-pressed.

Inherited from

AriaAttributes.aria-selected


aria-setsize?

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

Defined in: types/jsx-elements.d.ts:353

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.

Inherited from

AriaAttributes.aria-setsize


aria-sort?

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

Defined in: types/jsx-elements.d.ts:355

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

Inherited from

AriaAttributes.aria-sort


aria-valuemax?

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

Defined in: types/jsx-elements.d.ts:357

Defines the maximum allowed value for a range widget.

Inherited from

AriaAttributes.aria-valuemax


aria-valuemin?

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

Defined in: types/jsx-elements.d.ts:359

Defines the minimum allowed value for a range widget.

Inherited from

AriaAttributes.aria-valuemin


aria-valuenow?

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

Defined in: types/jsx-elements.d.ts:365

Defines the current value for a range widget.

See

aria-valuetext.

Inherited from

AriaAttributes.aria-valuenow


aria-valuetext?

optional aria-valuetext: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:367

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

Inherited from

AriaAttributes.aria-valuetext


autofocus?

optional autofocus: PropValue<boolean | "" | undefined>

Defined in: types/jsx-elements.d.ts:569


children?

optional children: ComponentChildren

Defined in: types/custom-attributes.d.ts:5

Inherited from

CustomDomAttributes.children


class?

optional class: PropValue<string | false | DOMTokenList | {[key: string]: boolean; } | ClassName[] | Iterable<string, any, any> | null | undefined> | {[key: string]: PropValue<true | RemoveAttribute>; }

Defined in: types/jsx-elements.d.ts:570


className?

optional className: PropValue<string | false | DOMTokenList | {[key: string]: boolean; } | ClassName[] | Iterable<string, any, any> | null | undefined> | {[key: string]: PropValue<true | RemoveAttribute>; }

Defined in: types/custom-attributes.d.ts:16


dangerouslySetInnerHTML?

optional dangerouslySetInnerHTML: object

Defined in: types/custom-attributes.d.ts:6

__html

__html: string

Inherited from

CustomDomAttributes.dangerouslySetInnerHTML


elementtiming?

optional elementtiming: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:571


id?

optional id: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:572


namespaceURI?

optional namespaceURI: string

Defined in: types/custom-attributes.d.ts:18


nonce?

optional nonce: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:573


on?

optional on: Record<string, Function>

Defined in: types/custom-attributes.d.ts:10

compat from jsx-dom/react

Inherited from

CustomDomAttributes.on


onAbort?

optional onAbort: EventHandler<T, UIEvent>

Defined in: types/jsx-elements.d.ts:413

Inherited from

EventHandlersElement.onAbort


onAnimationCancel?

optional onAnimationCancel: EventHandler<T, AnimationEvent>

Defined in: types/jsx-elements.d.ts:414

Inherited from

EventHandlersElement.onAnimationCancel


onAnimationEnd?

optional onAnimationEnd: EventHandler<T, AnimationEvent>

Defined in: types/jsx-elements.d.ts:415

Inherited from

EventHandlersElement.onAnimationEnd


onAnimationIteration?

optional onAnimationIteration: EventHandler<T, AnimationEvent>

Defined in: types/jsx-elements.d.ts:416

Inherited from

EventHandlersElement.onAnimationIteration


onAnimationStart?

optional onAnimationStart: EventHandler<T, AnimationEvent>

Defined in: types/jsx-elements.d.ts:417

Inherited from

EventHandlersElement.onAnimationStart


onAuxClick?

optional onAuxClick: EventHandler<T, PointerEvent>

Defined in: types/jsx-elements.d.ts:418

Inherited from

EventHandlersElement.onAuxClick


onBeforeCopy?

optional onBeforeCopy: EventHandler<T, ClipboardEvent>

Defined in: types/jsx-elements.d.ts:419

Inherited from

EventHandlersElement.onBeforeCopy


onBeforeCut?

optional onBeforeCut: EventHandler<T, ClipboardEvent>

Defined in: types/jsx-elements.d.ts:420

Inherited from

EventHandlersElement.onBeforeCut


onBeforeInput?

optional onBeforeInput: InputEventHandler<T, InputEvent>

Defined in: types/jsx-elements.d.ts:421

Inherited from

EventHandlersElement.onBeforeInput


onBeforeMatch?

optional onBeforeMatch: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:422

Inherited from

EventHandlersElement.onBeforeMatch


onBeforePaste?

optional onBeforePaste: EventHandler<T, ClipboardEvent>

Defined in: types/jsx-elements.d.ts:423

Inherited from

EventHandlersElement.onBeforePaste


onBeforeToggle?

optional onBeforeToggle: EventHandler<T, ToggleEvent>

Defined in: types/jsx-elements.d.ts:424

Inherited from

EventHandlersElement.onBeforeToggle


onBeforeXRSelect?

optional onBeforeXRSelect: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:425

Inherited from

EventHandlersElement.onBeforeXRSelect


onBlur?

optional onBlur: FocusEventHandler<T, FocusEvent>

Defined in: types/jsx-elements.d.ts:426

Inherited from

EventHandlersElement.onBlur


onCancel?

optional onCancel: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:427

Inherited from

EventHandlersElement.onCancel


onCanPlay?

optional onCanPlay: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:428

Inherited from

EventHandlersElement.onCanPlay


onCanPlayThrough?

optional onCanPlayThrough: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:429

Inherited from

EventHandlersElement.onCanPlayThrough


onCapture?

optional onCapture: Record<string, Function>

Defined in: types/custom-attributes.d.ts:11

Inherited from

CustomDomAttributes.onCapture


onChange?

optional onChange: ChangeEventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:430

Inherited from

EventHandlersElement.onChange


onClick?

optional onClick: EventHandler<T, MouseEvent>

Defined in: types/jsx-elements.d.ts:431

Inherited from

EventHandlersElement.onClick


onClickCapture?

optional onClickCapture: EventHandler<T, MouseEvent>

Defined in: types/custom-attributes.d.ts:19


onClose?

optional onClose: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:432

Inherited from

EventHandlersElement.onClose


onCommand?

optional onCommand: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:434

Inherited from

EventHandlersElement.onCommand


onCompositionEnd?

optional onCompositionEnd: EventHandler<T, CompositionEvent>

Defined in: types/jsx-elements.d.ts:435

Inherited from

EventHandlersElement.onCompositionEnd


onCompositionStart?

optional onCompositionStart: EventHandler<T, CompositionEvent>

Defined in: types/jsx-elements.d.ts:436

Inherited from

EventHandlersElement.onCompositionStart


onCompositionUpdate?

optional onCompositionUpdate: EventHandler<T, CompositionEvent>

Defined in: types/jsx-elements.d.ts:437

Inherited from

EventHandlersElement.onCompositionUpdate


onContentVisibilityAutoStateChange?

optional onContentVisibilityAutoStateChange: EventHandler<T, ContentVisibilityAutoStateChangeEvent>

Defined in: types/jsx-elements.d.ts:438

Inherited from

EventHandlersElement.onContentVisibilityAutoStateChange


onContextLost?

optional onContextLost: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:441

Inherited from

EventHandlersElement.onContextLost


onContextMenu?

optional onContextMenu: EventHandler<T, PointerEvent>

Defined in: types/jsx-elements.d.ts:442

Inherited from

EventHandlersElement.onContextMenu


onContextRestored?

optional onContextRestored: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:443

Inherited from

EventHandlersElement.onContextRestored


onCopy?

optional onCopy: EventHandler<T, ClipboardEvent>

Defined in: types/jsx-elements.d.ts:444

Inherited from

EventHandlersElement.onCopy


onCueChange?

optional onCueChange: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:445

Inherited from

EventHandlersElement.onCueChange


onCut?

optional onCut: EventHandler<T, ClipboardEvent>

Defined in: types/jsx-elements.d.ts:446

Inherited from

EventHandlersElement.onCut


onDblClick?

optional onDblClick: EventHandler<T, MouseEvent>

Defined in: types/jsx-elements.d.ts:447

Inherited from

EventHandlersElement.onDblClick


onDblClickCapture?

optional onDblClickCapture: EventHandler<T, MouseEvent>

Defined in: types/custom-attributes.d.ts:20


onDoubleClick?

optional onDoubleClick: EventHandler<T, MouseEvent>

Defined in: types/custom-attributes.d.ts:21


onDoubleClickCapture?

optional onDoubleClickCapture: EventHandler<T, MouseEvent>

Defined in: types/custom-attributes.d.ts:22


onDrag?

optional onDrag: EventHandler<T, DragEvent>

Defined in: types/jsx-elements.d.ts:448

Inherited from

EventHandlersElement.onDrag


onDragEnd?

optional onDragEnd: EventHandler<T, DragEvent>

Defined in: types/jsx-elements.d.ts:449

Inherited from

EventHandlersElement.onDragEnd


onDragEnter?

optional onDragEnter: EventHandler<T, DragEvent>

Defined in: types/jsx-elements.d.ts:450

Inherited from

EventHandlersElement.onDragEnter


onDragExit?

optional onDragExit: EventHandler<T, DragEvent>

Defined in: types/jsx-elements.d.ts:451

Inherited from

EventHandlersElement.onDragExit


onDragLeave?

optional onDragLeave: EventHandler<T, DragEvent>

Defined in: types/jsx-elements.d.ts:452

Inherited from

EventHandlersElement.onDragLeave


onDragOver?

optional onDragOver: EventHandler<T, DragEvent>

Defined in: types/jsx-elements.d.ts:453

Inherited from

EventHandlersElement.onDragOver


onDragStart?

optional onDragStart: EventHandler<T, DragEvent>

Defined in: types/jsx-elements.d.ts:454

Inherited from

EventHandlersElement.onDragStart


onDrop?

optional onDrop: EventHandler<T, DragEvent>

Defined in: types/jsx-elements.d.ts:455

Inherited from

EventHandlersElement.onDrop


onDurationChange?

optional onDurationChange: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:456

Inherited from

EventHandlersElement.onDurationChange


onEmptied?

optional onEmptied: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:457

Inherited from

EventHandlersElement.onEmptied


onEnded?

optional onEnded: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:458

Inherited from

EventHandlersElement.onEnded


onError?

optional onError: EventHandler<T, ErrorEvent>

Defined in: types/jsx-elements.d.ts:459

Inherited from

EventHandlersElement.onError


onFocus?

optional onFocus: FocusEventHandler<T, FocusEvent>

Defined in: types/jsx-elements.d.ts:460

Inherited from

EventHandlersElement.onFocus


onFocusIn?

optional onFocusIn: FocusEventHandler<T, FocusEvent>

Defined in: types/jsx-elements.d.ts:461

Inherited from

EventHandlersElement.onFocusIn


onFocusOut?

optional onFocusOut: FocusEventHandler<T, FocusEvent>

Defined in: types/jsx-elements.d.ts:462

Inherited from

EventHandlersElement.onFocusOut


onFormData?

optional onFormData: EventHandler<T, FormDataEvent>

Defined in: types/jsx-elements.d.ts:463

Inherited from

EventHandlersElement.onFormData


onFullscreenChange?

optional onFullscreenChange: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:464

Inherited from

EventHandlersElement.onFullscreenChange


onFullscreenError?

optional onFullscreenError: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:465

Inherited from

EventHandlersElement.onFullscreenError


onGotPointerCapture?

optional onGotPointerCapture: EventHandler<T, PointerEvent>

Defined in: types/jsx-elements.d.ts:466

Inherited from

EventHandlersElement.onGotPointerCapture


onInput?

optional onInput: InputEventHandler<T, InputEvent>

Defined in: types/jsx-elements.d.ts:467

Inherited from

EventHandlersElement.onInput


onInvalid?

optional onInvalid: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:468

Inherited from

EventHandlersElement.onInvalid


onKeyDown?

optional onKeyDown: EventHandler<T, KeyboardEvent>

Defined in: types/jsx-elements.d.ts:469

Inherited from

EventHandlersElement.onKeyDown


onKeyPress?

optional onKeyPress: EventHandler<T, KeyboardEvent>

Defined in: types/jsx-elements.d.ts:470

Inherited from

EventHandlersElement.onKeyPress


onKeyUp?

optional onKeyUp: EventHandler<T, KeyboardEvent>

Defined in: types/jsx-elements.d.ts:471

Inherited from

EventHandlersElement.onKeyUp


onLoad?

optional onLoad: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:472

Inherited from

EventHandlersElement.onLoad


onLoadedData?

optional onLoadedData: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:473

Inherited from

EventHandlersElement.onLoadedData


onLoadedMetadata?

optional onLoadedMetadata: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:474

Inherited from

EventHandlersElement.onLoadedMetadata


onLoadStart?

optional onLoadStart: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:475

Inherited from

EventHandlersElement.onLoadStart


onLostPointerCapture?

optional onLostPointerCapture: EventHandler<T, PointerEvent>

Defined in: types/jsx-elements.d.ts:476

Inherited from

EventHandlersElement.onLostPointerCapture


onMouseDown?

optional onMouseDown: EventHandler<T, MouseEvent>

Defined in: types/jsx-elements.d.ts:477

Inherited from

EventHandlersElement.onMouseDown


onMouseEnter?

optional onMouseEnter: EventHandler<T, MouseEvent>

Defined in: types/jsx-elements.d.ts:478

Inherited from

EventHandlersElement.onMouseEnter


onMouseLeave?

optional onMouseLeave: EventHandler<T, MouseEvent>

Defined in: types/jsx-elements.d.ts:479

Inherited from

EventHandlersElement.onMouseLeave


onMouseMove?

optional onMouseMove: EventHandler<T, MouseEvent>

Defined in: types/jsx-elements.d.ts:480

Inherited from

EventHandlersElement.onMouseMove


onMouseOut?

optional onMouseOut: EventHandler<T, MouseEvent>

Defined in: types/jsx-elements.d.ts:481

Inherited from

EventHandlersElement.onMouseOut


onMouseOver?

optional onMouseOver: EventHandler<T, MouseEvent>

Defined in: types/jsx-elements.d.ts:482

Inherited from

EventHandlersElement.onMouseOver


onMouseUp?

optional onMouseUp: EventHandler<T, MouseEvent>

Defined in: types/jsx-elements.d.ts:483

Inherited from

EventHandlersElement.onMouseUp


onPaste?

optional onPaste: EventHandler<T, ClipboardEvent>

Defined in: types/jsx-elements.d.ts:484

Inherited from

EventHandlersElement.onPaste


onPause?

optional onPause: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:485

Inherited from

EventHandlersElement.onPause


onPlay?

optional onPlay: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:486

Inherited from

EventHandlersElement.onPlay


onPlaying?

optional onPlaying: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:487

Inherited from

EventHandlersElement.onPlaying


onPointerCancel?

optional onPointerCancel: EventHandler<T, PointerEvent>

Defined in: types/jsx-elements.d.ts:488

Inherited from

EventHandlersElement.onPointerCancel


onPointerDown?

optional onPointerDown: EventHandler<T, PointerEvent>

Defined in: types/jsx-elements.d.ts:489

Inherited from

EventHandlersElement.onPointerDown


onPointerEnter?

optional onPointerEnter: EventHandler<T, PointerEvent>

Defined in: types/jsx-elements.d.ts:490

Inherited from

EventHandlersElement.onPointerEnter


onPointerLeave?

optional onPointerLeave: EventHandler<T, PointerEvent>

Defined in: types/jsx-elements.d.ts:491

Inherited from

EventHandlersElement.onPointerLeave


onPointerMove?

optional onPointerMove: EventHandler<T, PointerEvent>

Defined in: types/jsx-elements.d.ts:492

Inherited from

EventHandlersElement.onPointerMove


onPointerOut?

optional onPointerOut: EventHandler<T, PointerEvent>

Defined in: types/jsx-elements.d.ts:493

Inherited from

EventHandlersElement.onPointerOut


onPointerOver?

optional onPointerOver: EventHandler<T, PointerEvent>

Defined in: types/jsx-elements.d.ts:494

Inherited from

EventHandlersElement.onPointerOver


onPointerRawUpdate?

optional onPointerRawUpdate: EventHandler<T, PointerEvent>

Defined in: types/jsx-elements.d.ts:495

Inherited from

EventHandlersElement.onPointerRawUpdate


onPointerUp?

optional onPointerUp: EventHandler<T, PointerEvent>

Defined in: types/jsx-elements.d.ts:496

Inherited from

EventHandlersElement.onPointerUp


onProgress?

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

Defined in: types/jsx-elements.d.ts:497

Inherited from

EventHandlersElement.onProgress


onRateChange?

optional onRateChange: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:498

Inherited from

EventHandlersElement.onRateChange


onReset?

optional onReset: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:499

Inherited from

EventHandlersElement.onReset


onResize?

optional onResize: EventHandler<T, UIEvent>

Defined in: types/jsx-elements.d.ts:500

Inherited from

EventHandlersElement.onResize


onScroll?

optional onScroll: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:501

Inherited from

EventHandlersElement.onScroll


onScrollEnd?

optional onScrollEnd: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:502

Inherited from

EventHandlersElement.onScrollEnd


onScrollSnapChange?

optional onScrollSnapChange: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:503

Inherited from

EventHandlersElement.onScrollSnapChange


onScrollSnapChanging?

optional onScrollSnapChanging: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:504

Inherited from

EventHandlersElement.onScrollSnapChanging


onSecurityPolicyViolation?

optional onSecurityPolicyViolation: EventHandler<T, SecurityPolicyViolationEvent>

Defined in: types/jsx-elements.d.ts:505

Inherited from

EventHandlersElement.onSecurityPolicyViolation


onSeeked?

optional onSeeked: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:506

Inherited from

EventHandlersElement.onSeeked


onSeeking?

optional onSeeking: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:507

Inherited from

EventHandlersElement.onSeeking


onSelect?

optional onSelect: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:508

Inherited from

EventHandlersElement.onSelect


onSelectionChange?

optional onSelectionChange: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:509

Inherited from

EventHandlersElement.onSelectionChange


onSelectStart?

optional onSelectStart: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:510

Inherited from

EventHandlersElement.onSelectStart


onSlotChange?

optional onSlotChange: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:511

Inherited from

EventHandlersElement.onSlotChange


onStalled?

optional onStalled: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:512

Inherited from

EventHandlersElement.onStalled


onSubmit?

optional onSubmit: EventHandler<T, SubmitEvent>

Defined in: types/jsx-elements.d.ts:513

Inherited from

EventHandlersElement.onSubmit


onSuspend?

optional onSuspend: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:514

Inherited from

EventHandlersElement.onSuspend


onTimeUpdate?

optional onTimeUpdate: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:515

Inherited from

EventHandlersElement.onTimeUpdate


onToggle?

optional onToggle: EventHandler<T, ToggleEvent>

Defined in: types/jsx-elements.d.ts:516

Inherited from

EventHandlersElement.onToggle


onTouchCancel?

optional onTouchCancel: EventHandler<T, TouchEvent>

Defined in: types/jsx-elements.d.ts:517

Inherited from

EventHandlersElement.onTouchCancel


onTouchEnd?

optional onTouchEnd: EventHandler<T, TouchEvent>

Defined in: types/jsx-elements.d.ts:518

Inherited from

EventHandlersElement.onTouchEnd


onTouchMove?

optional onTouchMove: EventHandler<T, TouchEvent>

Defined in: types/jsx-elements.d.ts:519

Inherited from

EventHandlersElement.onTouchMove


onTouchStart?

optional onTouchStart: EventHandler<T, TouchEvent>

Defined in: types/jsx-elements.d.ts:520

Inherited from

EventHandlersElement.onTouchStart


onTransitionCancel?

optional onTransitionCancel: EventHandler<T, TransitionEvent>

Defined in: types/jsx-elements.d.ts:521

Inherited from

EventHandlersElement.onTransitionCancel


onTransitionEnd?

optional onTransitionEnd: EventHandler<T, TransitionEvent>

Defined in: types/jsx-elements.d.ts:522

Inherited from

EventHandlersElement.onTransitionEnd


onTransitionRun?

optional onTransitionRun: EventHandler<T, TransitionEvent>

Defined in: types/jsx-elements.d.ts:523

Inherited from

EventHandlersElement.onTransitionRun


onTransitionStart?

optional onTransitionStart: EventHandler<T, TransitionEvent>

Defined in: types/jsx-elements.d.ts:524

Inherited from

EventHandlersElement.onTransitionStart


onVolumeChange?

optional onVolumeChange: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:525

Inherited from

EventHandlersElement.onVolumeChange


onWaiting?

optional onWaiting: EventHandler<T, Event>

Defined in: types/jsx-elements.d.ts:526

Inherited from

EventHandlersElement.onWaiting


onWheel?

optional onWheel: EventHandler<T, WheelEvent>

Defined in: types/jsx-elements.d.ts:527

Inherited from

EventHandlersElement.onWheel


part?

optional part: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:574


ref?

optional ref: Ref<T>

Defined in: types/custom-attributes.d.ts:7

Inherited from

CustomDomAttributes.ref


role?

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

Defined in: types/jsx-elements.d.ts:368

Inherited from

AriaAttributes.role


slot?

optional slot: PropValue<string | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:575


style?

optional style: PropValue<string | RemoveAttribute | StyleProperties>

Defined in: types/jsx-elements.d.ts:576


tabindex?

optional tabindex: PropValue<string | number | RemoveAttribute>

Defined in: types/jsx-elements.d.ts:577


tabIndex?

optional tabIndex: PropValue<string | number | RemoveAttribute>

Defined in: types/custom-attributes.d.ts:17


textContent?

optional textContent: PropValue<string | number>

Defined in: types/jsx-elements.d.ts:566