Caprice LogoCaprice UI

Alert Dialog

A dialog that requires user response to proceed.

Installation

npx caprice add alert-dialog

Usage

import * as AlertDialog from "@/components/ui/alert-dialog"
<AlertDialog.Root>
  <AlertDialog.Trigger render={(props) => <Button {...props}>Discard draft</Button>} />
 
  <AlertDialog.Content>
    <AlertDialog.Title>Discard draft?</AlertDialog.Title>
    <AlertDialog.Description>You can't undo this action.</AlertDialog.Description>
    <AlertDialog.Footer>
      <AlertDialog.Close>Cancel</AlertDialog.Close>
      <AlertDialog.Close variant="default">Discard</AlertDialog.Close>
    </AlertDialog.Footer>
  </AlertDialog.Content>
</AlertDialog.Root>

Examples

Open from a menu

Close confirmation (nested dialogs)

API Reference

Root

PropTypeDefault
children
ReactNode
-
open
boolean
-
defaultOpen
boolean
false
onOpenChange
(open: boolean, event: Event | undefined, reason: OpenChangeReason | undefined) => void
-

Trigger

PropTypeDefault
form
string
-
slot
string
-
style
CSSProperties
-
title
string
-
key
Key
-
disabled
boolean
-
formAction
string | ((formData: FormData) => void | Promise<void>)
-
formEncType
string
-
formMethod
string
-
formNoValidate
boolean
-
formTarget
string
-
name
string
-
type
"button" | "submit" | "reset"
-
value
string | number | readonly string[]
-
defaultChecked
boolean
-
defaultValue
string | number | readonly string[]
-
suppressContentEditableWarning
boolean
-
suppressHydrationWarning
boolean
-
accessKey
string
-
autoCapitalize
(string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters"
-
autoFocus
boolean
-
contentEditable
Booleanish | "inherit" | "plaintext-only"
-
contextMenu
string
-
dir
string
-
draggable
Booleanish
-
enterKeyHint
"search" | "enter" | "done" | "go" | "next" | "previous" | "send"
-
hidden
boolean
-
id
string
-
lang
string
-
nonce
string
-
spellCheck
Booleanish
-
tabIndex
number
-
translate
"yes" | "no"
-
radioGroup
string
-
role
AriaRole
-
about
string
-
content
string
-
datatype
string
-
inlist
any
-
prefix
string
-
property
string
-
rel
string
-
resource
string
-
rev
string
-
typeof
string
-
vocab
string
-
autoCorrect
string
-
autoSave
string
-
color
string
-
itemProp
string
-
itemScope
boolean
-
itemType
string
-
itemID
string
-
itemRef
string
-
results
number
-
security
string
-
unselectable
"off" | "on"
-
popover
"" | "auto" | "manual"
-
popoverTargetAction
"toggle" | "show" | "hide"
-
popoverTarget
string
-
inert
boolean
-
inputMode
"search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal"
-
is
string
-
aria-activedescendant
string
-
aria-atomic
Booleanish
-
aria-autocomplete
"none" | "list" | "inline" | "both"
-
aria-braillelabel
string
-
aria-brailleroledescription
string
-
aria-busy
Booleanish
-
aria-checked
boolean | "true" | "false" | "mixed"
-
aria-colcount
number
-
aria-colindex
number
-
aria-colindextext
string
-
aria-colspan
number
-
aria-controls
string
-
aria-current
boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date"
-
aria-describedby
string
-
aria-description
string
-
aria-details
string
-
aria-disabled
Booleanish
-
aria-dropeffect
"link" | "none" | "copy" | "execute" | "move" | "popup"
-
aria-errormessage
string
-
aria-expanded
Booleanish
-
aria-flowto
string
-
aria-grabbed
Booleanish
-
aria-haspopup
boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree"
-
aria-hidden
Booleanish
-
aria-invalid
boolean | "true" | "false" | "grammar" | "spelling"
-
aria-keyshortcuts
string
-
aria-label
string
-
aria-labelledby
string
-
aria-level
number
-
aria-live
"off" | "assertive" | "polite"
-
aria-modal
Booleanish
-
aria-multiline
Booleanish
-
aria-multiselectable
Booleanish
-
aria-orientation
"horizontal" | "vertical"
-
aria-owns
string
-
aria-placeholder
string
-
aria-posinset
number
-
aria-pressed
boolean | "true" | "false" | "mixed"
-
aria-readonly
Booleanish
-
aria-relevant
"text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals"
-
aria-required
Booleanish
-
aria-roledescription
string
-
aria-rowcount
number
-
aria-rowindex
number
-
aria-rowindextext
string
-
aria-rowspan
number
-
aria-selected
Booleanish
-
aria-setsize
number
-
aria-sort
"none" | "ascending" | "descending" | "other"
-
aria-valuemax
number
-
aria-valuemin
number
-
aria-valuenow
number
-
aria-valuetext
string
-
children
ReactNode
-
dangerouslySetInnerHTML
{ __html: string | TrustedHTML; }
-
onCopy
(event: BaseUIEvent<ClipboardEvent<HTMLButtonElement>>) => void
-
onCopyCapture
(event: BaseUIEvent<ClipboardEvent<HTMLButtonElement>>) => void
-
onCut
(event: BaseUIEvent<ClipboardEvent<HTMLButtonElement>>) => void
-
onCutCapture
(event: BaseUIEvent<ClipboardEvent<HTMLButtonElement>>) => void
-
onPaste
(event: BaseUIEvent<ClipboardEvent<HTMLButtonElement>>) => void
-
onPasteCapture
(event: BaseUIEvent<ClipboardEvent<HTMLButtonElement>>) => void
-
onCompositionEnd
(event: BaseUIEvent<CompositionEvent<HTMLButtonElement>>) => void
-
onCompositionEndCapture
(event: BaseUIEvent<CompositionEvent<HTMLButtonElement>>) => void
-
onCompositionStart
(event: BaseUIEvent<CompositionEvent<HTMLButtonElement>>) => void
-
onCompositionStartCapture
(event: BaseUIEvent<CompositionEvent<HTMLButtonElement>>) => void
-
onCompositionUpdate
(event: BaseUIEvent<CompositionEvent<HTMLButtonElement>>) => void
-
onCompositionUpdateCapture
(event: BaseUIEvent<CompositionEvent<HTMLButtonElement>>) => void
-
onFocus
(event: BaseUIEvent<FocusEvent<HTMLButtonElement, Element>>) => void
-
onFocusCapture
(event: BaseUIEvent<FocusEvent<HTMLButtonElement, Element>>) => void
-
onBlur
(event: BaseUIEvent<FocusEvent<HTMLButtonElement, Element>>) => void
-
onBlurCapture
(event: BaseUIEvent<FocusEvent<HTMLButtonElement, Element>>) => void
-
onChange
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onChangeCapture
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onBeforeInput
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onBeforeInputCapture
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onInput
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onInputCapture
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onReset
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onResetCapture
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onSubmit
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onSubmitCapture
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onInvalid
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onInvalidCapture
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onLoad
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onError
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onErrorCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onKeyDown
(event: BaseUIEvent<KeyboardEvent<HTMLButtonElement>>) => void
-
onKeyDownCapture
(event: BaseUIEvent<KeyboardEvent<HTMLButtonElement>>) => void
-
onKeyPress
(event: BaseUIEvent<KeyboardEvent<HTMLButtonElement>>) => void
-
onKeyPressCapture
(event: BaseUIEvent<KeyboardEvent<HTMLButtonElement>>) => void
-
onKeyUp
(event: BaseUIEvent<KeyboardEvent<HTMLButtonElement>>) => void
-
onKeyUpCapture
(event: BaseUIEvent<KeyboardEvent<HTMLButtonElement>>) => void
-
onAbort
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onAbortCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onCanPlay
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onCanPlayCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onCanPlayThrough
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onCanPlayThroughCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onDurationChange
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onDurationChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onEmptied
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onEmptiedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onEncrypted
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onEncryptedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onEnded
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onEndedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadedData
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadedDataCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadedMetadata
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadedMetadataCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadStart
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadStartCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onPause
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onPauseCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onPlay
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onPlayCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onPlaying
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onPlayingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onProgress
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onProgressCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onRateChange
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onRateChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onResize
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onResizeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSeeked
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSeekedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSeeking
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSeekingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onStalled
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onStalledCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSuspend
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSuspendCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onTimeUpdate
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onTimeUpdateCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onVolumeChange
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onVolumeChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onWaiting
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onWaitingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onAuxClick
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onAuxClickCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onClick
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onClickCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onContextMenu
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onContextMenuCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onDoubleClick
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onDoubleClickCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onDrag
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragEnd
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragEndCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragEnter
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragEnterCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragExit
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragExitCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragLeave
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragLeaveCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragOver
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragOverCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragStart
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragStartCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDrop
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDropCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onMouseDown
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseDownCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseEnter
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseLeave
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseMove
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseMoveCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseOut
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseOutCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseOver
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseOverCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseUp
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseUpCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onSelect
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSelectCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onTouchCancel
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchCancelCapture
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchEnd
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchEndCapture
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchMove
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchMoveCapture
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchStart
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchStartCapture
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onPointerDown
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerDownCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerMove
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerMoveCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerUp
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerUpCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerCancel
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerCancelCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerEnter
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerLeave
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerOver
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerOverCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerOut
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerOutCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onGotPointerCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onGotPointerCaptureCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onLostPointerCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onLostPointerCaptureCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onScroll
(event: BaseUIEvent<UIEvent<HTMLButtonElement, UIEvent>>) => void
-
onScrollCapture
(event: BaseUIEvent<UIEvent<HTMLButtonElement, UIEvent>>) => void
-
onWheel
(event: BaseUIEvent<WheelEvent<HTMLButtonElement>>) => void
-
onWheelCapture
(event: BaseUIEvent<WheelEvent<HTMLButtonElement>>) => void
-
onAnimationStart
(event: BaseUIEvent<AnimationEvent<HTMLButtonElement>>) => void
-
onAnimationStartCapture
(event: BaseUIEvent<AnimationEvent<HTMLButtonElement>>) => void
-
onAnimationEnd
(event: BaseUIEvent<AnimationEvent<HTMLButtonElement>>) => void
-
onAnimationEndCapture
(event: BaseUIEvent<AnimationEvent<HTMLButtonElement>>) => void
-
onAnimationIteration
(event: BaseUIEvent<AnimationEvent<HTMLButtonElement>>) => void
-
onAnimationIterationCapture
(event: BaseUIEvent<AnimationEvent<HTMLButtonElement>>) => void
-
onToggle
(event: BaseUIEvent<ToggleEvent<HTMLButtonElement>>) => void
-
onBeforeToggle
(event: BaseUIEvent<ToggleEvent<HTMLButtonElement>>) => void
-
onTransitionCancel
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionCancelCapture
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionEnd
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionEndCapture
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionRun
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionRunCapture
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionStart
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionStartCapture
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
className
string | ((state: State) => string)
-
render
ReactElement<Record<string, unknown>, string | JSXElementConstructor<any>> | ComponentRenderFn<GenericHTMLProps, State>
-
ref
((instance: HTMLButtonElement | null) => void | (() => VoidOrUndefinedOnly)) | RefObject<HTMLButtonElement | null>
-

Content

PropTypeDefault
initialFocus
RefObject<HTMLElement | null> | ((interactionType: InteractionType) => RefObject<HTMLElement | null>)
-
finalFocus
RefObject<HTMLElement | null>
-
slot
string
-
style
CSSProperties
-
title
string
-
key
Key
-
defaultChecked
boolean
-
defaultValue
string | number | readonly string[]
-
suppressContentEditableWarning
boolean
-
suppressHydrationWarning
boolean
-
accessKey
string
-
autoCapitalize
(string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters"
-
autoFocus
boolean
-
contentEditable
Booleanish | "inherit" | "plaintext-only"
-
contextMenu
string
-
dir
string
-
draggable
Booleanish
-
enterKeyHint
"search" | "enter" | "done" | "go" | "next" | "previous" | "send"
-
hidden
boolean
-
id
string
-
lang
string
-
nonce
string
-
spellCheck
Booleanish
-
tabIndex
number
-
translate
"yes" | "no"
-
radioGroup
string
-
role
AriaRole
-
about
string
-
content
string
-
datatype
string
-
inlist
any
-
prefix
string
-
property
string
-
rel
string
-
resource
string
-
rev
string
-
typeof
string
-
vocab
string
-
autoCorrect
string
-
autoSave
string
-
color
string
-
itemProp
string
-
itemScope
boolean
-
itemType
string
-
itemID
string
-
itemRef
string
-
results
number
-
security
string
-
unselectable
"off" | "on"
-
popover
"" | "auto" | "manual"
-
popoverTargetAction
"toggle" | "show" | "hide"
-
popoverTarget
string
-
inert
boolean
-
inputMode
"search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal"
-
is
string
-
aria-activedescendant
string
-
aria-atomic
Booleanish
-
aria-autocomplete
"none" | "list" | "inline" | "both"
-
aria-braillelabel
string
-
aria-brailleroledescription
string
-
aria-busy
Booleanish
-
aria-checked
boolean | "true" | "false" | "mixed"
-
aria-colcount
number
-
aria-colindex
number
-
aria-colindextext
string
-
aria-colspan
number
-
aria-controls
string
-
aria-current
boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date"
-
aria-describedby
string
-
aria-description
string
-
aria-details
string
-
aria-disabled
Booleanish
-
aria-dropeffect
"link" | "none" | "copy" | "execute" | "move" | "popup"
-
aria-errormessage
string
-
aria-expanded
Booleanish
-
aria-flowto
string
-
aria-grabbed
Booleanish
-
aria-haspopup
boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree"
-
aria-hidden
Booleanish
-
aria-invalid
boolean | "true" | "false" | "grammar" | "spelling"
-
aria-keyshortcuts
string
-
aria-label
string
-
aria-labelledby
string
-
aria-level
number
-
aria-live
"off" | "assertive" | "polite"
-
aria-modal
Booleanish
-
aria-multiline
Booleanish
-
aria-multiselectable
Booleanish
-
aria-orientation
"horizontal" | "vertical"
-
aria-owns
string
-
aria-placeholder
string
-
aria-posinset
number
-
aria-pressed
boolean | "true" | "false" | "mixed"
-
aria-readonly
Booleanish
-
aria-relevant
"text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals"
-
aria-required
Booleanish
-
aria-roledescription
string
-
aria-rowcount
number
-
aria-rowindex
number
-
aria-rowindextext
string
-
aria-rowspan
number
-
aria-selected
Booleanish
-
aria-setsize
number
-
aria-sort
"none" | "ascending" | "descending" | "other"
-
aria-valuemax
number
-
aria-valuemin
number
-
aria-valuenow
number
-
aria-valuetext
string
-
children
ReactNode
-
dangerouslySetInnerHTML
{ __html: string | TrustedHTML; }
-
onCopy
(event: BaseUIEvent<ClipboardEvent<HTMLDivElement>>) => void
-
onCopyCapture
(event: BaseUIEvent<ClipboardEvent<HTMLDivElement>>) => void
-
onCut
(event: BaseUIEvent<ClipboardEvent<HTMLDivElement>>) => void
-
onCutCapture
(event: BaseUIEvent<ClipboardEvent<HTMLDivElement>>) => void
-
onPaste
(event: BaseUIEvent<ClipboardEvent<HTMLDivElement>>) => void
-
onPasteCapture
(event: BaseUIEvent<ClipboardEvent<HTMLDivElement>>) => void
-
onCompositionEnd
(event: BaseUIEvent<CompositionEvent<HTMLDivElement>>) => void
-
onCompositionEndCapture
(event: BaseUIEvent<CompositionEvent<HTMLDivElement>>) => void
-
onCompositionStart
(event: BaseUIEvent<CompositionEvent<HTMLDivElement>>) => void
-
onCompositionStartCapture
(event: BaseUIEvent<CompositionEvent<HTMLDivElement>>) => void
-
onCompositionUpdate
(event: BaseUIEvent<CompositionEvent<HTMLDivElement>>) => void
-
onCompositionUpdateCapture
(event: BaseUIEvent<CompositionEvent<HTMLDivElement>>) => void
-
onFocus
(event: BaseUIEvent<FocusEvent<HTMLDivElement, Element>>) => void
-
onFocusCapture
(event: BaseUIEvent<FocusEvent<HTMLDivElement, Element>>) => void
-
onBlur
(event: BaseUIEvent<FocusEvent<HTMLDivElement, Element>>) => void
-
onBlurCapture
(event: BaseUIEvent<FocusEvent<HTMLDivElement, Element>>) => void
-
onChange
(event: BaseUIEvent<FormEvent<HTMLDivElement>>) => void
-
onChangeCapture
(event: BaseUIEvent<FormEvent<HTMLDivElement>>) => void
-
onBeforeInput
(event: BaseUIEvent<FormEvent<HTMLDivElement>>) => void
-
onBeforeInputCapture
(event: BaseUIEvent<FormEvent<HTMLDivElement>>) => void
-
onInput
(event: BaseUIEvent<FormEvent<HTMLDivElement>>) => void
-
onInputCapture
(event: BaseUIEvent<FormEvent<HTMLDivElement>>) => void
-
onReset
(event: BaseUIEvent<FormEvent<HTMLDivElement>>) => void
-
onResetCapture
(event: BaseUIEvent<FormEvent<HTMLDivElement>>) => void
-
onSubmit
(event: BaseUIEvent<FormEvent<HTMLDivElement>>) => void
-
onSubmitCapture
(event: BaseUIEvent<FormEvent<HTMLDivElement>>) => void
-
onInvalid
(event: BaseUIEvent<FormEvent<HTMLDivElement>>) => void
-
onInvalidCapture
(event: BaseUIEvent<FormEvent<HTMLDivElement>>) => void
-
onLoad
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onLoadCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onError
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onErrorCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onKeyDown
(event: BaseUIEvent<KeyboardEvent<HTMLDivElement>>) => void
-
onKeyDownCapture
(event: BaseUIEvent<KeyboardEvent<HTMLDivElement>>) => void
-
onKeyPress
(event: BaseUIEvent<KeyboardEvent<HTMLDivElement>>) => void
-
onKeyPressCapture
(event: BaseUIEvent<KeyboardEvent<HTMLDivElement>>) => void
-
onKeyUp
(event: BaseUIEvent<KeyboardEvent<HTMLDivElement>>) => void
-
onKeyUpCapture
(event: BaseUIEvent<KeyboardEvent<HTMLDivElement>>) => void
-
onAbort
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onAbortCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onCanPlay
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onCanPlayCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onCanPlayThrough
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onCanPlayThroughCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onDurationChange
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onDurationChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onEmptied
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onEmptiedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onEncrypted
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onEncryptedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onEnded
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onEndedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onLoadedData
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onLoadedDataCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onLoadedMetadata
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onLoadedMetadataCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onLoadStart
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onLoadStartCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onPause
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onPauseCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onPlay
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onPlayCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onPlaying
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onPlayingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onProgress
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onProgressCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onRateChange
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onRateChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onResize
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onResizeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onSeeked
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onSeekedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onSeeking
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onSeekingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onStalled
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onStalledCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onSuspend
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onSuspendCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onTimeUpdate
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onTimeUpdateCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onVolumeChange
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onVolumeChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onWaiting
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onWaitingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onAuxClick
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onAuxClickCapture
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onClick
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onClickCapture
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onContextMenu
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onContextMenuCapture
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onDoubleClick
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onDoubleClickCapture
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onDrag
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDragCapture
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDragEnd
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDragEndCapture
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDragEnter
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDragEnterCapture
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDragExit
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDragExitCapture
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDragLeave
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDragLeaveCapture
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDragOver
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDragOverCapture
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDragStart
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDragStartCapture
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDrop
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onDropCapture
(event: BaseUIEvent<DragEvent<HTMLDivElement>>) => void
-
onMouseDown
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onMouseDownCapture
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onMouseEnter
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onMouseLeave
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onMouseMove
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onMouseMoveCapture
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onMouseOut
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onMouseOutCapture
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onMouseOver
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onMouseOverCapture
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onMouseUp
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onMouseUpCapture
(event: BaseUIEvent<MouseEvent<HTMLDivElement, MouseEvent>>) => void
-
onSelect
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onSelectCapture
(event: BaseUIEvent<SyntheticEvent<HTMLDivElement, Event>>) => void
-
onTouchCancel
(event: BaseUIEvent<TouchEvent<HTMLDivElement>>) => void
-
onTouchCancelCapture
(event: BaseUIEvent<TouchEvent<HTMLDivElement>>) => void
-
onTouchEnd
(event: BaseUIEvent<TouchEvent<HTMLDivElement>>) => void
-
onTouchEndCapture
(event: BaseUIEvent<TouchEvent<HTMLDivElement>>) => void
-
onTouchMove
(event: BaseUIEvent<TouchEvent<HTMLDivElement>>) => void
-
onTouchMoveCapture
(event: BaseUIEvent<TouchEvent<HTMLDivElement>>) => void
-
onTouchStart
(event: BaseUIEvent<TouchEvent<HTMLDivElement>>) => void
-
onTouchStartCapture
(event: BaseUIEvent<TouchEvent<HTMLDivElement>>) => void
-
onPointerDown
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onPointerDownCapture
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onPointerMove
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onPointerMoveCapture
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onPointerUp
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onPointerUpCapture
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onPointerCancel
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onPointerCancelCapture
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onPointerEnter
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onPointerLeave
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onPointerOver
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onPointerOverCapture
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onPointerOut
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onPointerOutCapture
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onGotPointerCapture
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onGotPointerCaptureCapture
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onLostPointerCapture
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onLostPointerCaptureCapture
(event: BaseUIEvent<PointerEvent<HTMLDivElement>>) => void
-
onScroll
(event: BaseUIEvent<UIEvent<HTMLDivElement, UIEvent>>) => void
-
onScrollCapture
(event: BaseUIEvent<UIEvent<HTMLDivElement, UIEvent>>) => void
-
onWheel
(event: BaseUIEvent<WheelEvent<HTMLDivElement>>) => void
-
onWheelCapture
(event: BaseUIEvent<WheelEvent<HTMLDivElement>>) => void
-
onAnimationStart
(event: BaseUIEvent<AnimationEvent<HTMLDivElement>>) => void
-
onAnimationStartCapture
(event: BaseUIEvent<AnimationEvent<HTMLDivElement>>) => void
-
onAnimationEnd
(event: BaseUIEvent<AnimationEvent<HTMLDivElement>>) => void
-
onAnimationEndCapture
(event: BaseUIEvent<AnimationEvent<HTMLDivElement>>) => void
-
onAnimationIteration
(event: BaseUIEvent<AnimationEvent<HTMLDivElement>>) => void
-
onAnimationIterationCapture
(event: BaseUIEvent<AnimationEvent<HTMLDivElement>>) => void
-
onToggle
(event: BaseUIEvent<ToggleEvent<HTMLDivElement>>) => void
-
onBeforeToggle
(event: BaseUIEvent<ToggleEvent<HTMLDivElement>>) => void
-
onTransitionCancel
(event: BaseUIEvent<TransitionEvent<HTMLDivElement>>) => void
-
onTransitionCancelCapture
(event: BaseUIEvent<TransitionEvent<HTMLDivElement>>) => void
-
onTransitionEnd
(event: BaseUIEvent<TransitionEvent<HTMLDivElement>>) => void
-
onTransitionEndCapture
(event: BaseUIEvent<TransitionEvent<HTMLDivElement>>) => void
-
onTransitionRun
(event: BaseUIEvent<TransitionEvent<HTMLDivElement>>) => void
-
onTransitionRunCapture
(event: BaseUIEvent<TransitionEvent<HTMLDivElement>>) => void
-
onTransitionStart
(event: BaseUIEvent<TransitionEvent<HTMLDivElement>>) => void
-
onTransitionStartCapture
(event: BaseUIEvent<TransitionEvent<HTMLDivElement>>) => void
-
className
string | ((state: State) => string)
-
render
ReactElement<Record<string, unknown>, string | JSXElementConstructor<any>> | ComponentRenderFn<GenericHTMLProps, State>
-
ref
((instance: HTMLDivElement | null) => void | (() => VoidOrUndefinedOnly)) | RefObject<HTMLDivElement | null>
-

Title

PropTypeDefault
slot
string
-
style
CSSProperties
-
title
string
-
key
Key
-
defaultChecked
boolean
-
defaultValue
string | number | readonly string[]
-
suppressContentEditableWarning
boolean
-
suppressHydrationWarning
boolean
-
accessKey
string
-
autoCapitalize
(string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters"
-
autoFocus
boolean
-
contentEditable
Booleanish | "inherit" | "plaintext-only"
-
contextMenu
string
-
dir
string
-
draggable
Booleanish
-
enterKeyHint
"search" | "enter" | "done" | "go" | "next" | "previous" | "send"
-
hidden
boolean
-
id
string
-
lang
string
-
nonce
string
-
spellCheck
Booleanish
-
tabIndex
number
-
translate
"yes" | "no"
-
radioGroup
string
-
role
AriaRole
-
about
string
-
content
string
-
datatype
string
-
inlist
any
-
prefix
string
-
property
string
-
rel
string
-
resource
string
-
rev
string
-
typeof
string
-
vocab
string
-
autoCorrect
string
-
autoSave
string
-
color
string
-
itemProp
string
-
itemScope
boolean
-
itemType
string
-
itemID
string
-
itemRef
string
-
results
number
-
security
string
-
unselectable
"off" | "on"
-
popover
"" | "auto" | "manual"
-
popoverTargetAction
"toggle" | "show" | "hide"
-
popoverTarget
string
-
inert
boolean
-
inputMode
"search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal"
-
is
string
-
aria-activedescendant
string
-
aria-atomic
Booleanish
-
aria-autocomplete
"none" | "list" | "inline" | "both"
-
aria-braillelabel
string
-
aria-brailleroledescription
string
-
aria-busy
Booleanish
-
aria-checked
boolean | "true" | "false" | "mixed"
-
aria-colcount
number
-
aria-colindex
number
-
aria-colindextext
string
-
aria-colspan
number
-
aria-controls
string
-
aria-current
boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date"
-
aria-describedby
string
-
aria-description
string
-
aria-details
string
-
aria-disabled
Booleanish
-
aria-dropeffect
"link" | "none" | "copy" | "execute" | "move" | "popup"
-
aria-errormessage
string
-
aria-expanded
Booleanish
-
aria-flowto
string
-
aria-grabbed
Booleanish
-
aria-haspopup
boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree"
-
aria-hidden
Booleanish
-
aria-invalid
boolean | "true" | "false" | "grammar" | "spelling"
-
aria-keyshortcuts
string
-
aria-label
string
-
aria-labelledby
string
-
aria-level
number
-
aria-live
"off" | "assertive" | "polite"
-
aria-modal
Booleanish
-
aria-multiline
Booleanish
-
aria-multiselectable
Booleanish
-
aria-orientation
"horizontal" | "vertical"
-
aria-owns
string
-
aria-placeholder
string
-
aria-posinset
number
-
aria-pressed
boolean | "true" | "false" | "mixed"
-
aria-readonly
Booleanish
-
aria-relevant
"text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals"
-
aria-required
Booleanish
-
aria-roledescription
string
-
aria-rowcount
number
-
aria-rowindex
number
-
aria-rowindextext
string
-
aria-rowspan
number
-
aria-selected
Booleanish
-
aria-setsize
number
-
aria-sort
"none" | "ascending" | "descending" | "other"
-
aria-valuemax
number
-
aria-valuemin
number
-
aria-valuenow
number
-
aria-valuetext
string
-
children
ReactNode
-
dangerouslySetInnerHTML
{ __html: string | TrustedHTML; }
-
onCopy
(event: BaseUIEvent<ClipboardEvent<HTMLHeadingElement>>) => void
-
onCopyCapture
(event: BaseUIEvent<ClipboardEvent<HTMLHeadingElement>>) => void
-
onCut
(event: BaseUIEvent<ClipboardEvent<HTMLHeadingElement>>) => void
-
onCutCapture
(event: BaseUIEvent<ClipboardEvent<HTMLHeadingElement>>) => void
-
onPaste
(event: BaseUIEvent<ClipboardEvent<HTMLHeadingElement>>) => void
-
onPasteCapture
(event: BaseUIEvent<ClipboardEvent<HTMLHeadingElement>>) => void
-
onCompositionEnd
(event: BaseUIEvent<CompositionEvent<HTMLHeadingElement>>) => void
-
onCompositionEndCapture
(event: BaseUIEvent<CompositionEvent<HTMLHeadingElement>>) => void
-
onCompositionStart
(event: BaseUIEvent<CompositionEvent<HTMLHeadingElement>>) => void
-
onCompositionStartCapture
(event: BaseUIEvent<CompositionEvent<HTMLHeadingElement>>) => void
-
onCompositionUpdate
(event: BaseUIEvent<CompositionEvent<HTMLHeadingElement>>) => void
-
onCompositionUpdateCapture
(event: BaseUIEvent<CompositionEvent<HTMLHeadingElement>>) => void
-
onFocus
(event: BaseUIEvent<FocusEvent<HTMLHeadingElement, Element>>) => void
-
onFocusCapture
(event: BaseUIEvent<FocusEvent<HTMLHeadingElement, Element>>) => void
-
onBlur
(event: BaseUIEvent<FocusEvent<HTMLHeadingElement, Element>>) => void
-
onBlurCapture
(event: BaseUIEvent<FocusEvent<HTMLHeadingElement, Element>>) => void
-
onChange
(event: BaseUIEvent<FormEvent<HTMLHeadingElement>>) => void
-
onChangeCapture
(event: BaseUIEvent<FormEvent<HTMLHeadingElement>>) => void
-
onBeforeInput
(event: BaseUIEvent<FormEvent<HTMLHeadingElement>>) => void
-
onBeforeInputCapture
(event: BaseUIEvent<FormEvent<HTMLHeadingElement>>) => void
-
onInput
(event: BaseUIEvent<FormEvent<HTMLHeadingElement>>) => void
-
onInputCapture
(event: BaseUIEvent<FormEvent<HTMLHeadingElement>>) => void
-
onReset
(event: BaseUIEvent<FormEvent<HTMLHeadingElement>>) => void
-
onResetCapture
(event: BaseUIEvent<FormEvent<HTMLHeadingElement>>) => void
-
onSubmit
(event: BaseUIEvent<FormEvent<HTMLHeadingElement>>) => void
-
onSubmitCapture
(event: BaseUIEvent<FormEvent<HTMLHeadingElement>>) => void
-
onInvalid
(event: BaseUIEvent<FormEvent<HTMLHeadingElement>>) => void
-
onInvalidCapture
(event: BaseUIEvent<FormEvent<HTMLHeadingElement>>) => void
-
onLoad
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onLoadCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onError
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onErrorCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onKeyDown
(event: BaseUIEvent<KeyboardEvent<HTMLHeadingElement>>) => void
-
onKeyDownCapture
(event: BaseUIEvent<KeyboardEvent<HTMLHeadingElement>>) => void
-
onKeyPress
(event: BaseUIEvent<KeyboardEvent<HTMLHeadingElement>>) => void
-
onKeyPressCapture
(event: BaseUIEvent<KeyboardEvent<HTMLHeadingElement>>) => void
-
onKeyUp
(event: BaseUIEvent<KeyboardEvent<HTMLHeadingElement>>) => void
-
onKeyUpCapture
(event: BaseUIEvent<KeyboardEvent<HTMLHeadingElement>>) => void
-
onAbort
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onAbortCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onCanPlay
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onCanPlayCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onCanPlayThrough
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onCanPlayThroughCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onDurationChange
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onDurationChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onEmptied
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onEmptiedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onEncrypted
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onEncryptedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onEnded
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onEndedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onLoadedData
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onLoadedDataCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onLoadedMetadata
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onLoadedMetadataCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onLoadStart
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onLoadStartCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onPause
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onPauseCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onPlay
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onPlayCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onPlaying
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onPlayingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onProgress
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onProgressCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onRateChange
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onRateChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onResize
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onResizeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onSeeked
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onSeekedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onSeeking
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onSeekingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onStalled
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onStalledCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onSuspend
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onSuspendCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onTimeUpdate
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onTimeUpdateCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onVolumeChange
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onVolumeChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onWaiting
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onWaitingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onAuxClick
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onAuxClickCapture
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onClick
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onClickCapture
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onContextMenu
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onContextMenuCapture
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onDoubleClick
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onDoubleClickCapture
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onDrag
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDragCapture
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDragEnd
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDragEndCapture
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDragEnter
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDragEnterCapture
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDragExit
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDragExitCapture
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDragLeave
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDragLeaveCapture
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDragOver
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDragOverCapture
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDragStart
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDragStartCapture
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDrop
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onDropCapture
(event: BaseUIEvent<DragEvent<HTMLHeadingElement>>) => void
-
onMouseDown
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onMouseDownCapture
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onMouseEnter
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onMouseLeave
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onMouseMove
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onMouseMoveCapture
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onMouseOut
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onMouseOutCapture
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onMouseOver
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onMouseOverCapture
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onMouseUp
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onMouseUpCapture
(event: BaseUIEvent<MouseEvent<HTMLHeadingElement, MouseEvent>>) => void
-
onSelect
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onSelectCapture
(event: BaseUIEvent<SyntheticEvent<HTMLHeadingElement, Event>>) => void
-
onTouchCancel
(event: BaseUIEvent<TouchEvent<HTMLHeadingElement>>) => void
-
onTouchCancelCapture
(event: BaseUIEvent<TouchEvent<HTMLHeadingElement>>) => void
-
onTouchEnd
(event: BaseUIEvent<TouchEvent<HTMLHeadingElement>>) => void
-
onTouchEndCapture
(event: BaseUIEvent<TouchEvent<HTMLHeadingElement>>) => void
-
onTouchMove
(event: BaseUIEvent<TouchEvent<HTMLHeadingElement>>) => void
-
onTouchMoveCapture
(event: BaseUIEvent<TouchEvent<HTMLHeadingElement>>) => void
-
onTouchStart
(event: BaseUIEvent<TouchEvent<HTMLHeadingElement>>) => void
-
onTouchStartCapture
(event: BaseUIEvent<TouchEvent<HTMLHeadingElement>>) => void
-
onPointerDown
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onPointerDownCapture
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onPointerMove
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onPointerMoveCapture
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onPointerUp
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onPointerUpCapture
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onPointerCancel
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onPointerCancelCapture
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onPointerEnter
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onPointerLeave
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onPointerOver
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onPointerOverCapture
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onPointerOut
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onPointerOutCapture
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onGotPointerCapture
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onGotPointerCaptureCapture
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onLostPointerCapture
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onLostPointerCaptureCapture
(event: BaseUIEvent<PointerEvent<HTMLHeadingElement>>) => void
-
onScroll
(event: BaseUIEvent<UIEvent<HTMLHeadingElement, UIEvent>>) => void
-
onScrollCapture
(event: BaseUIEvent<UIEvent<HTMLHeadingElement, UIEvent>>) => void
-
onWheel
(event: BaseUIEvent<WheelEvent<HTMLHeadingElement>>) => void
-
onWheelCapture
(event: BaseUIEvent<WheelEvent<HTMLHeadingElement>>) => void
-
onAnimationStart
(event: BaseUIEvent<AnimationEvent<HTMLHeadingElement>>) => void
-
onAnimationStartCapture
(event: BaseUIEvent<AnimationEvent<HTMLHeadingElement>>) => void
-
onAnimationEnd
(event: BaseUIEvent<AnimationEvent<HTMLHeadingElement>>) => void
-
onAnimationEndCapture
(event: BaseUIEvent<AnimationEvent<HTMLHeadingElement>>) => void
-
onAnimationIteration
(event: BaseUIEvent<AnimationEvent<HTMLHeadingElement>>) => void
-
onAnimationIterationCapture
(event: BaseUIEvent<AnimationEvent<HTMLHeadingElement>>) => void
-
onToggle
(event: BaseUIEvent<ToggleEvent<HTMLHeadingElement>>) => void
-
onBeforeToggle
(event: BaseUIEvent<ToggleEvent<HTMLHeadingElement>>) => void
-
onTransitionCancel
(event: BaseUIEvent<TransitionEvent<HTMLHeadingElement>>) => void
-
onTransitionCancelCapture
(event: BaseUIEvent<TransitionEvent<HTMLHeadingElement>>) => void
-
onTransitionEnd
(event: BaseUIEvent<TransitionEvent<HTMLHeadingElement>>) => void
-
onTransitionEndCapture
(event: BaseUIEvent<TransitionEvent<HTMLHeadingElement>>) => void
-
onTransitionRun
(event: BaseUIEvent<TransitionEvent<HTMLHeadingElement>>) => void
-
onTransitionRunCapture
(event: BaseUIEvent<TransitionEvent<HTMLHeadingElement>>) => void
-
onTransitionStart
(event: BaseUIEvent<TransitionEvent<HTMLHeadingElement>>) => void
-
onTransitionStartCapture
(event: BaseUIEvent<TransitionEvent<HTMLHeadingElement>>) => void
-
className
string | ((state: State) => string)
-
render
ReactElement<Record<string, unknown>, string | JSXElementConstructor<any>> | ComponentRenderFn<GenericHTMLProps, State>
-
ref
((instance: HTMLParagraphElement | null) => void | (() => VoidOrUndefinedOnly)) | RefObject<HTMLParagraphElement | null>
-

Description

PropTypeDefault
slot
string
-
style
CSSProperties
-
title
string
-
key
Key
-
defaultChecked
boolean
-
defaultValue
string | number | readonly string[]
-
suppressContentEditableWarning
boolean
-
suppressHydrationWarning
boolean
-
accessKey
string
-
autoCapitalize
(string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters"
-
autoFocus
boolean
-
contentEditable
Booleanish | "inherit" | "plaintext-only"
-
contextMenu
string
-
dir
string
-
draggable
Booleanish
-
enterKeyHint
"search" | "enter" | "done" | "go" | "next" | "previous" | "send"
-
hidden
boolean
-
id
string
-
lang
string
-
nonce
string
-
spellCheck
Booleanish
-
tabIndex
number
-
translate
"yes" | "no"
-
radioGroup
string
-
role
AriaRole
-
about
string
-
content
string
-
datatype
string
-
inlist
any
-
prefix
string
-
property
string
-
rel
string
-
resource
string
-
rev
string
-
typeof
string
-
vocab
string
-
autoCorrect
string
-
autoSave
string
-
color
string
-
itemProp
string
-
itemScope
boolean
-
itemType
string
-
itemID
string
-
itemRef
string
-
results
number
-
security
string
-
unselectable
"off" | "on"
-
popover
"" | "auto" | "manual"
-
popoverTargetAction
"toggle" | "show" | "hide"
-
popoverTarget
string
-
inert
boolean
-
inputMode
"search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal"
-
is
string
-
aria-activedescendant
string
-
aria-atomic
Booleanish
-
aria-autocomplete
"none" | "list" | "inline" | "both"
-
aria-braillelabel
string
-
aria-brailleroledescription
string
-
aria-busy
Booleanish
-
aria-checked
boolean | "true" | "false" | "mixed"
-
aria-colcount
number
-
aria-colindex
number
-
aria-colindextext
string
-
aria-colspan
number
-
aria-controls
string
-
aria-current
boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date"
-
aria-describedby
string
-
aria-description
string
-
aria-details
string
-
aria-disabled
Booleanish
-
aria-dropeffect
"link" | "none" | "copy" | "execute" | "move" | "popup"
-
aria-errormessage
string
-
aria-expanded
Booleanish
-
aria-flowto
string
-
aria-grabbed
Booleanish
-
aria-haspopup
boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree"
-
aria-hidden
Booleanish
-
aria-invalid
boolean | "true" | "false" | "grammar" | "spelling"
-
aria-keyshortcuts
string
-
aria-label
string
-
aria-labelledby
string
-
aria-level
number
-
aria-live
"off" | "assertive" | "polite"
-
aria-modal
Booleanish
-
aria-multiline
Booleanish
-
aria-multiselectable
Booleanish
-
aria-orientation
"horizontal" | "vertical"
-
aria-owns
string
-
aria-placeholder
string
-
aria-posinset
number
-
aria-pressed
boolean | "true" | "false" | "mixed"
-
aria-readonly
Booleanish
-
aria-relevant
"text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals"
-
aria-required
Booleanish
-
aria-roledescription
string
-
aria-rowcount
number
-
aria-rowindex
number
-
aria-rowindextext
string
-
aria-rowspan
number
-
aria-selected
Booleanish
-
aria-setsize
number
-
aria-sort
"none" | "ascending" | "descending" | "other"
-
aria-valuemax
number
-
aria-valuemin
number
-
aria-valuenow
number
-
aria-valuetext
string
-
children
ReactNode
-
dangerouslySetInnerHTML
{ __html: string | TrustedHTML; }
-
onCopy
(event: BaseUIEvent<ClipboardEvent<HTMLParagraphElement>>) => void
-
onCopyCapture
(event: BaseUIEvent<ClipboardEvent<HTMLParagraphElement>>) => void
-
onCut
(event: BaseUIEvent<ClipboardEvent<HTMLParagraphElement>>) => void
-
onCutCapture
(event: BaseUIEvent<ClipboardEvent<HTMLParagraphElement>>) => void
-
onPaste
(event: BaseUIEvent<ClipboardEvent<HTMLParagraphElement>>) => void
-
onPasteCapture
(event: BaseUIEvent<ClipboardEvent<HTMLParagraphElement>>) => void
-
onCompositionEnd
(event: BaseUIEvent<CompositionEvent<HTMLParagraphElement>>) => void
-
onCompositionEndCapture
(event: BaseUIEvent<CompositionEvent<HTMLParagraphElement>>) => void
-
onCompositionStart
(event: BaseUIEvent<CompositionEvent<HTMLParagraphElement>>) => void
-
onCompositionStartCapture
(event: BaseUIEvent<CompositionEvent<HTMLParagraphElement>>) => void
-
onCompositionUpdate
(event: BaseUIEvent<CompositionEvent<HTMLParagraphElement>>) => void
-
onCompositionUpdateCapture
(event: BaseUIEvent<CompositionEvent<HTMLParagraphElement>>) => void
-
onFocus
(event: BaseUIEvent<FocusEvent<HTMLParagraphElement, Element>>) => void
-
onFocusCapture
(event: BaseUIEvent<FocusEvent<HTMLParagraphElement, Element>>) => void
-
onBlur
(event: BaseUIEvent<FocusEvent<HTMLParagraphElement, Element>>) => void
-
onBlurCapture
(event: BaseUIEvent<FocusEvent<HTMLParagraphElement, Element>>) => void
-
onChange
(event: BaseUIEvent<FormEvent<HTMLParagraphElement>>) => void
-
onChangeCapture
(event: BaseUIEvent<FormEvent<HTMLParagraphElement>>) => void
-
onBeforeInput
(event: BaseUIEvent<FormEvent<HTMLParagraphElement>>) => void
-
onBeforeInputCapture
(event: BaseUIEvent<FormEvent<HTMLParagraphElement>>) => void
-
onInput
(event: BaseUIEvent<FormEvent<HTMLParagraphElement>>) => void
-
onInputCapture
(event: BaseUIEvent<FormEvent<HTMLParagraphElement>>) => void
-
onReset
(event: BaseUIEvent<FormEvent<HTMLParagraphElement>>) => void
-
onResetCapture
(event: BaseUIEvent<FormEvent<HTMLParagraphElement>>) => void
-
onSubmit
(event: BaseUIEvent<FormEvent<HTMLParagraphElement>>) => void
-
onSubmitCapture
(event: BaseUIEvent<FormEvent<HTMLParagraphElement>>) => void
-
onInvalid
(event: BaseUIEvent<FormEvent<HTMLParagraphElement>>) => void
-
onInvalidCapture
(event: BaseUIEvent<FormEvent<HTMLParagraphElement>>) => void
-
onLoad
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onLoadCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onError
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onErrorCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onKeyDown
(event: BaseUIEvent<KeyboardEvent<HTMLParagraphElement>>) => void
-
onKeyDownCapture
(event: BaseUIEvent<KeyboardEvent<HTMLParagraphElement>>) => void
-
onKeyPress
(event: BaseUIEvent<KeyboardEvent<HTMLParagraphElement>>) => void
-
onKeyPressCapture
(event: BaseUIEvent<KeyboardEvent<HTMLParagraphElement>>) => void
-
onKeyUp
(event: BaseUIEvent<KeyboardEvent<HTMLParagraphElement>>) => void
-
onKeyUpCapture
(event: BaseUIEvent<KeyboardEvent<HTMLParagraphElement>>) => void
-
onAbort
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onAbortCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onCanPlay
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onCanPlayCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onCanPlayThrough
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onCanPlayThroughCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onDurationChange
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onDurationChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onEmptied
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onEmptiedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onEncrypted
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onEncryptedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onEnded
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onEndedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onLoadedData
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onLoadedDataCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onLoadedMetadata
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onLoadedMetadataCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onLoadStart
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onLoadStartCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onPause
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onPauseCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onPlay
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onPlayCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onPlaying
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onPlayingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onProgress
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onProgressCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onRateChange
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onRateChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onResize
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onResizeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onSeeked
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onSeekedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onSeeking
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onSeekingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onStalled
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onStalledCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onSuspend
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onSuspendCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onTimeUpdate
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onTimeUpdateCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onVolumeChange
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onVolumeChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onWaiting
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onWaitingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onAuxClick
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onAuxClickCapture
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onClick
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onClickCapture
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onContextMenu
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onContextMenuCapture
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onDoubleClick
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onDoubleClickCapture
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onDrag
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDragCapture
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDragEnd
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDragEndCapture
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDragEnter
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDragEnterCapture
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDragExit
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDragExitCapture
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDragLeave
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDragLeaveCapture
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDragOver
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDragOverCapture
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDragStart
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDragStartCapture
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDrop
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onDropCapture
(event: BaseUIEvent<DragEvent<HTMLParagraphElement>>) => void
-
onMouseDown
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onMouseDownCapture
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onMouseEnter
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onMouseLeave
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onMouseMove
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onMouseMoveCapture
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onMouseOut
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onMouseOutCapture
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onMouseOver
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onMouseOverCapture
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onMouseUp
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onMouseUpCapture
(event: BaseUIEvent<MouseEvent<HTMLParagraphElement, MouseEvent>>) => void
-
onSelect
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onSelectCapture
(event: BaseUIEvent<SyntheticEvent<HTMLParagraphElement, Event>>) => void
-
onTouchCancel
(event: BaseUIEvent<TouchEvent<HTMLParagraphElement>>) => void
-
onTouchCancelCapture
(event: BaseUIEvent<TouchEvent<HTMLParagraphElement>>) => void
-
onTouchEnd
(event: BaseUIEvent<TouchEvent<HTMLParagraphElement>>) => void
-
onTouchEndCapture
(event: BaseUIEvent<TouchEvent<HTMLParagraphElement>>) => void
-
onTouchMove
(event: BaseUIEvent<TouchEvent<HTMLParagraphElement>>) => void
-
onTouchMoveCapture
(event: BaseUIEvent<TouchEvent<HTMLParagraphElement>>) => void
-
onTouchStart
(event: BaseUIEvent<TouchEvent<HTMLParagraphElement>>) => void
-
onTouchStartCapture
(event: BaseUIEvent<TouchEvent<HTMLParagraphElement>>) => void
-
onPointerDown
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onPointerDownCapture
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onPointerMove
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onPointerMoveCapture
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onPointerUp
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onPointerUpCapture
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onPointerCancel
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onPointerCancelCapture
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onPointerEnter
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onPointerLeave
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onPointerOver
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onPointerOverCapture
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onPointerOut
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onPointerOutCapture
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onGotPointerCapture
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onGotPointerCaptureCapture
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onLostPointerCapture
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onLostPointerCaptureCapture
(event: BaseUIEvent<PointerEvent<HTMLParagraphElement>>) => void
-
onScroll
(event: BaseUIEvent<UIEvent<HTMLParagraphElement, UIEvent>>) => void
-
onScrollCapture
(event: BaseUIEvent<UIEvent<HTMLParagraphElement, UIEvent>>) => void
-
onWheel
(event: BaseUIEvent<WheelEvent<HTMLParagraphElement>>) => void
-
onWheelCapture
(event: BaseUIEvent<WheelEvent<HTMLParagraphElement>>) => void
-
onAnimationStart
(event: BaseUIEvent<AnimationEvent<HTMLParagraphElement>>) => void
-
onAnimationStartCapture
(event: BaseUIEvent<AnimationEvent<HTMLParagraphElement>>) => void
-
onAnimationEnd
(event: BaseUIEvent<AnimationEvent<HTMLParagraphElement>>) => void
-
onAnimationEndCapture
(event: BaseUIEvent<AnimationEvent<HTMLParagraphElement>>) => void
-
onAnimationIteration
(event: BaseUIEvent<AnimationEvent<HTMLParagraphElement>>) => void
-
onAnimationIterationCapture
(event: BaseUIEvent<AnimationEvent<HTMLParagraphElement>>) => void
-
onToggle
(event: BaseUIEvent<ToggleEvent<HTMLParagraphElement>>) => void
-
onBeforeToggle
(event: BaseUIEvent<ToggleEvent<HTMLParagraphElement>>) => void
-
onTransitionCancel
(event: BaseUIEvent<TransitionEvent<HTMLParagraphElement>>) => void
-
onTransitionCancelCapture
(event: BaseUIEvent<TransitionEvent<HTMLParagraphElement>>) => void
-
onTransitionEnd
(event: BaseUIEvent<TransitionEvent<HTMLParagraphElement>>) => void
-
onTransitionEndCapture
(event: BaseUIEvent<TransitionEvent<HTMLParagraphElement>>) => void
-
onTransitionRun
(event: BaseUIEvent<TransitionEvent<HTMLParagraphElement>>) => void
-
onTransitionRunCapture
(event: BaseUIEvent<TransitionEvent<HTMLParagraphElement>>) => void
-
onTransitionStart
(event: BaseUIEvent<TransitionEvent<HTMLParagraphElement>>) => void
-
onTransitionStartCapture
(event: BaseUIEvent<TransitionEvent<HTMLParagraphElement>>) => void
-
className
string | ((state: State) => string)
-
render
ReactElement<Record<string, unknown>, string | JSXElementConstructor<any>> | ComponentRenderFn<GenericHTMLProps, State>
-
ref
((instance: HTMLParagraphElement | null) => void | (() => VoidOrUndefinedOnly)) | RefObject<HTMLParagraphElement | null>
-
PropTypeDefault
ref
((instance: HTMLDivElement | null) => void | (() => VoidOrUndefinedOnly)) | RefObject<HTMLDivElement | null>
-
key
Key
-
defaultChecked
boolean
-
defaultValue
string | number | readonly string[]
-
suppressContentEditableWarning
boolean
-
suppressHydrationWarning
boolean
-
accessKey
string
-
autoCapitalize
"off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {})
-
autoFocus
boolean
-
className
string
-
contentEditable
Booleanish | "inherit" | "plaintext-only"
-
contextMenu
string
-
dir
string
-
draggable
Booleanish
-
enterKeyHint
"search" | "enter" | "done" | "go" | "next" | "previous" | "send"
-
hidden
boolean
-
id
string
-
lang
string
-
nonce
string
-
slot
string
-
spellCheck
Booleanish
-
style
CSSProperties
-
tabIndex
number
-
title
string
-
translate
"yes" | "no"
-
radioGroup
string
-
role
AriaRole
-
about
string
-
content
string
-
datatype
string
-
inlist
any
-
prefix
string
-
property
string
-
rel
string
-
resource
string
-
rev
string
-
typeof
string
-
vocab
string
-
autoCorrect
string
-
autoSave
string
-
color
string
-
itemProp
string
-
itemScope
boolean
-
itemType
string
-
itemID
string
-
itemRef
string
-
results
number
-
security
string
-
unselectable
"off" | "on"
-
popover
"" | "auto" | "manual"
-
popoverTargetAction
"toggle" | "show" | "hide"
-
popoverTarget
string
-
inert
boolean
-
inputMode
"search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal"
-
is
string
-
aria-activedescendant
string
-
aria-atomic
Booleanish
-
aria-autocomplete
"none" | "list" | "inline" | "both"
-
aria-braillelabel
string
-
aria-brailleroledescription
string
-
aria-busy
Booleanish
-
aria-checked
boolean | "true" | "false" | "mixed"
-
aria-colcount
number
-
aria-colindex
number
-
aria-colindextext
string
-
aria-colspan
number
-
aria-controls
string
-
aria-current
boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date"
-
aria-describedby
string
-
aria-description
string
-
aria-details
string
-
aria-disabled
Booleanish
-
aria-dropeffect
"link" | "none" | "copy" | "execute" | "move" | "popup"
-
aria-errormessage
string
-
aria-expanded
Booleanish
-
aria-flowto
string
-
aria-grabbed
Booleanish
-
aria-haspopup
boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree"
-
aria-hidden
Booleanish
-
aria-invalid
boolean | "true" | "false" | "grammar" | "spelling"
-
aria-keyshortcuts
string
-
aria-label
string
-
aria-labelledby
string
-
aria-level
number
-
aria-live
"off" | "assertive" | "polite"
-
aria-modal
Booleanish
-
aria-multiline
Booleanish
-
aria-multiselectable
Booleanish
-
aria-orientation
"horizontal" | "vertical"
-
aria-owns
string
-
aria-placeholder
string
-
aria-posinset
number
-
aria-pressed
boolean | "true" | "false" | "mixed"
-
aria-readonly
Booleanish
-
aria-relevant
"text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals"
-
aria-required
Booleanish
-
aria-roledescription
string
-
aria-rowcount
number
-
aria-rowindex
number
-
aria-rowindextext
string
-
aria-rowspan
number
-
aria-selected
Booleanish
-
aria-setsize
number
-
aria-sort
"none" | "ascending" | "descending" | "other"
-
aria-valuemax
number
-
aria-valuemin
number
-
aria-valuenow
number
-
aria-valuetext
string
-
children
ReactNode
-
dangerouslySetInnerHTML
{ __html: string | TrustedHTML; }
-
onCopy
ClipboardEventHandler<HTMLDivElement>
-
onCopyCapture
ClipboardEventHandler<HTMLDivElement>
-
onCut
ClipboardEventHandler<HTMLDivElement>
-
onCutCapture
ClipboardEventHandler<HTMLDivElement>
-
onPaste
ClipboardEventHandler<HTMLDivElement>
-
onPasteCapture
ClipboardEventHandler<HTMLDivElement>
-
onCompositionEnd
CompositionEventHandler<HTMLDivElement>
-
onCompositionEndCapture
CompositionEventHandler<HTMLDivElement>
-
onCompositionStart
CompositionEventHandler<HTMLDivElement>
-
onCompositionStartCapture
CompositionEventHandler<HTMLDivElement>
-
onCompositionUpdate
CompositionEventHandler<HTMLDivElement>
-
onCompositionUpdateCapture
CompositionEventHandler<HTMLDivElement>
-
onFocus
FocusEventHandler<HTMLDivElement>
-
onFocusCapture
FocusEventHandler<HTMLDivElement>
-
onBlur
FocusEventHandler<HTMLDivElement>
-
onBlurCapture
FocusEventHandler<HTMLDivElement>
-
onChange
FormEventHandler<HTMLDivElement>
-
onChangeCapture
FormEventHandler<HTMLDivElement>
-
onBeforeInput
FormEventHandler<HTMLDivElement>
-
onBeforeInputCapture
FormEventHandler<HTMLDivElement>
-
onInput
FormEventHandler<HTMLDivElement>
-
onInputCapture
FormEventHandler<HTMLDivElement>
-
onReset
FormEventHandler<HTMLDivElement>
-
onResetCapture
FormEventHandler<HTMLDivElement>
-
onSubmit
FormEventHandler<HTMLDivElement>
-
onSubmitCapture
FormEventHandler<HTMLDivElement>
-
onInvalid
FormEventHandler<HTMLDivElement>
-
onInvalidCapture
FormEventHandler<HTMLDivElement>
-
onLoad
ReactEventHandler<HTMLDivElement>
-
onLoadCapture
ReactEventHandler<HTMLDivElement>
-
onError
ReactEventHandler<HTMLDivElement>
-
onErrorCapture
ReactEventHandler<HTMLDivElement>
-
onKeyDown
KeyboardEventHandler<HTMLDivElement>
-
onKeyDownCapture
KeyboardEventHandler<HTMLDivElement>
-
onKeyPress
KeyboardEventHandler<HTMLDivElement>
-
onKeyPressCapture
KeyboardEventHandler<HTMLDivElement>
-
onKeyUp
KeyboardEventHandler<HTMLDivElement>
-
onKeyUpCapture
KeyboardEventHandler<HTMLDivElement>
-
onAbort
ReactEventHandler<HTMLDivElement>
-
onAbortCapture
ReactEventHandler<HTMLDivElement>
-
onCanPlay
ReactEventHandler<HTMLDivElement>
-
onCanPlayCapture
ReactEventHandler<HTMLDivElement>
-
onCanPlayThrough
ReactEventHandler<HTMLDivElement>
-
onCanPlayThroughCapture
ReactEventHandler<HTMLDivElement>
-
onDurationChange
ReactEventHandler<HTMLDivElement>
-
onDurationChangeCapture
ReactEventHandler<HTMLDivElement>
-
onEmptied
ReactEventHandler<HTMLDivElement>
-
onEmptiedCapture
ReactEventHandler<HTMLDivElement>
-
onEncrypted
ReactEventHandler<HTMLDivElement>
-
onEncryptedCapture
ReactEventHandler<HTMLDivElement>
-
onEnded
ReactEventHandler<HTMLDivElement>
-
onEndedCapture
ReactEventHandler<HTMLDivElement>
-
onLoadedData
ReactEventHandler<HTMLDivElement>
-
onLoadedDataCapture
ReactEventHandler<HTMLDivElement>
-
onLoadedMetadata
ReactEventHandler<HTMLDivElement>
-
onLoadedMetadataCapture
ReactEventHandler<HTMLDivElement>
-
onLoadStart
ReactEventHandler<HTMLDivElement>
-
onLoadStartCapture
ReactEventHandler<HTMLDivElement>
-
onPause
ReactEventHandler<HTMLDivElement>
-
onPauseCapture
ReactEventHandler<HTMLDivElement>
-
onPlay
ReactEventHandler<HTMLDivElement>
-
onPlayCapture
ReactEventHandler<HTMLDivElement>
-
onPlaying
ReactEventHandler<HTMLDivElement>
-
onPlayingCapture
ReactEventHandler<HTMLDivElement>
-
onProgress
ReactEventHandler<HTMLDivElement>
-
onProgressCapture
ReactEventHandler<HTMLDivElement>
-
onRateChange
ReactEventHandler<HTMLDivElement>
-
onRateChangeCapture
ReactEventHandler<HTMLDivElement>
-
onResize
ReactEventHandler<HTMLDivElement>
-
onResizeCapture
ReactEventHandler<HTMLDivElement>
-
onSeeked
ReactEventHandler<HTMLDivElement>
-
onSeekedCapture
ReactEventHandler<HTMLDivElement>
-
onSeeking
ReactEventHandler<HTMLDivElement>
-
onSeekingCapture
ReactEventHandler<HTMLDivElement>
-
onStalled
ReactEventHandler<HTMLDivElement>
-
onStalledCapture
ReactEventHandler<HTMLDivElement>
-
onSuspend
ReactEventHandler<HTMLDivElement>
-
onSuspendCapture
ReactEventHandler<HTMLDivElement>
-
onTimeUpdate
ReactEventHandler<HTMLDivElement>
-
onTimeUpdateCapture
ReactEventHandler<HTMLDivElement>
-
onVolumeChange
ReactEventHandler<HTMLDivElement>
-
onVolumeChangeCapture
ReactEventHandler<HTMLDivElement>
-
onWaiting
ReactEventHandler<HTMLDivElement>
-
onWaitingCapture
ReactEventHandler<HTMLDivElement>
-
onAuxClick
MouseEventHandler<HTMLDivElement>
-
onAuxClickCapture
MouseEventHandler<HTMLDivElement>
-
onClick
MouseEventHandler<HTMLDivElement>
-
onClickCapture
MouseEventHandler<HTMLDivElement>
-
onContextMenu
MouseEventHandler<HTMLDivElement>
-
onContextMenuCapture
MouseEventHandler<HTMLDivElement>
-
onDoubleClick
MouseEventHandler<HTMLDivElement>
-
onDoubleClickCapture
MouseEventHandler<HTMLDivElement>
-
onDrag
DragEventHandler<HTMLDivElement>
-
onDragCapture
DragEventHandler<HTMLDivElement>
-
onDragEnd
DragEventHandler<HTMLDivElement>
-
onDragEndCapture
DragEventHandler<HTMLDivElement>
-
onDragEnter
DragEventHandler<HTMLDivElement>
-
onDragEnterCapture
DragEventHandler<HTMLDivElement>
-
onDragExit
DragEventHandler<HTMLDivElement>
-
onDragExitCapture
DragEventHandler<HTMLDivElement>
-
onDragLeave
DragEventHandler<HTMLDivElement>
-
onDragLeaveCapture
DragEventHandler<HTMLDivElement>
-
onDragOver
DragEventHandler<HTMLDivElement>
-
onDragOverCapture
DragEventHandler<HTMLDivElement>
-
onDragStart
DragEventHandler<HTMLDivElement>
-
onDragStartCapture
DragEventHandler<HTMLDivElement>
-
onDrop
DragEventHandler<HTMLDivElement>
-
onDropCapture
DragEventHandler<HTMLDivElement>
-
onMouseDown
MouseEventHandler<HTMLDivElement>
-
onMouseDownCapture
MouseEventHandler<HTMLDivElement>
-
onMouseEnter
MouseEventHandler<HTMLDivElement>
-
onMouseLeave
MouseEventHandler<HTMLDivElement>
-
onMouseMove
MouseEventHandler<HTMLDivElement>
-
onMouseMoveCapture
MouseEventHandler<HTMLDivElement>
-
onMouseOut
MouseEventHandler<HTMLDivElement>
-
onMouseOutCapture
MouseEventHandler<HTMLDivElement>
-
onMouseOver
MouseEventHandler<HTMLDivElement>
-
onMouseOverCapture
MouseEventHandler<HTMLDivElement>
-
onMouseUp
MouseEventHandler<HTMLDivElement>
-
onMouseUpCapture
MouseEventHandler<HTMLDivElement>
-
onSelect
ReactEventHandler<HTMLDivElement>
-
onSelectCapture
ReactEventHandler<HTMLDivElement>
-
onTouchCancel
TouchEventHandler<HTMLDivElement>
-
onTouchCancelCapture
TouchEventHandler<HTMLDivElement>
-
onTouchEnd
TouchEventHandler<HTMLDivElement>
-
onTouchEndCapture
TouchEventHandler<HTMLDivElement>
-
onTouchMove
TouchEventHandler<HTMLDivElement>
-
onTouchMoveCapture
TouchEventHandler<HTMLDivElement>
-
onTouchStart
TouchEventHandler<HTMLDivElement>
-
onTouchStartCapture
TouchEventHandler<HTMLDivElement>
-
onPointerDown
PointerEventHandler<HTMLDivElement>
-
onPointerDownCapture
PointerEventHandler<HTMLDivElement>
-
onPointerMove
PointerEventHandler<HTMLDivElement>
-
onPointerMoveCapture
PointerEventHandler<HTMLDivElement>
-
onPointerUp
PointerEventHandler<HTMLDivElement>
-
onPointerUpCapture
PointerEventHandler<HTMLDivElement>
-
onPointerCancel
PointerEventHandler<HTMLDivElement>
-
onPointerCancelCapture
PointerEventHandler<HTMLDivElement>
-
onPointerEnter
PointerEventHandler<HTMLDivElement>
-
onPointerLeave
PointerEventHandler<HTMLDivElement>
-
onPointerOver
PointerEventHandler<HTMLDivElement>
-
onPointerOverCapture
PointerEventHandler<HTMLDivElement>
-
onPointerOut
PointerEventHandler<HTMLDivElement>
-
onPointerOutCapture
PointerEventHandler<HTMLDivElement>
-
onGotPointerCapture
PointerEventHandler<HTMLDivElement>
-
onGotPointerCaptureCapture
PointerEventHandler<HTMLDivElement>
-
onLostPointerCapture
PointerEventHandler<HTMLDivElement>
-
onLostPointerCaptureCapture
PointerEventHandler<HTMLDivElement>
-
onScroll
UIEventHandler<HTMLDivElement>
-
onScrollCapture
UIEventHandler<HTMLDivElement>
-
onWheel
WheelEventHandler<HTMLDivElement>
-
onWheelCapture
WheelEventHandler<HTMLDivElement>
-
onAnimationStart
AnimationEventHandler<HTMLDivElement>
-
onAnimationStartCapture
AnimationEventHandler<HTMLDivElement>
-
onAnimationEnd
AnimationEventHandler<HTMLDivElement>
-
onAnimationEndCapture
AnimationEventHandler<HTMLDivElement>
-
onAnimationIteration
AnimationEventHandler<HTMLDivElement>
-
onAnimationIterationCapture
AnimationEventHandler<HTMLDivElement>
-
onToggle
ToggleEventHandler<HTMLDivElement>
-
onBeforeToggle
ToggleEventHandler<HTMLDivElement>
-
onTransitionCancel
TransitionEventHandler<HTMLDivElement>
-
onTransitionCancelCapture
TransitionEventHandler<HTMLDivElement>
-
onTransitionEnd
TransitionEventHandler<HTMLDivElement>
-
onTransitionEndCapture
TransitionEventHandler<HTMLDivElement>
-
onTransitionRun
TransitionEventHandler<HTMLDivElement>
-
onTransitionRunCapture
TransitionEventHandler<HTMLDivElement>
-
onTransitionStart
TransitionEventHandler<HTMLDivElement>
-
onTransitionStartCapture
TransitionEventHandler<HTMLDivElement>
-

Close

PropTypeDefault
form
string
-
slot
string
-
style
CSSProperties
-
title
string
-
key
Key
-
disabled
boolean
-
formAction
string | ((formData: FormData) => void | Promise<void>)
-
formEncType
string
-
formMethod
string
-
formNoValidate
boolean
-
formTarget
string
-
name
string
-
type
"button" | "submit" | "reset"
-
value
string | number | readonly string[]
-
defaultChecked
boolean
-
defaultValue
string | number | readonly string[]
-
suppressContentEditableWarning
boolean
-
suppressHydrationWarning
boolean
-
accessKey
string
-
autoCapitalize
(string & {}) | "off" | "none" | "on" | "sentences" | "words" | "characters"
-
autoFocus
boolean
-
contentEditable
Booleanish | "inherit" | "plaintext-only"
-
contextMenu
string
-
dir
string
-
draggable
Booleanish
-
enterKeyHint
"search" | "enter" | "done" | "go" | "next" | "previous" | "send"
-
hidden
boolean
-
id
string
-
lang
string
-
nonce
string
-
spellCheck
Booleanish
-
tabIndex
number
-
translate
"yes" | "no"
-
radioGroup
string
-
role
AriaRole
-
about
string
-
content
string
-
datatype
string
-
inlist
any
-
prefix
string
-
property
string
-
rel
string
-
resource
string
-
rev
string
-
typeof
string
-
vocab
string
-
autoCorrect
string
-
autoSave
string
-
color
string
-
itemProp
string
-
itemScope
boolean
-
itemType
string
-
itemID
string
-
itemRef
string
-
results
number
-
security
string
-
unselectable
"off" | "on"
-
popover
"" | "auto" | "manual"
-
popoverTargetAction
"toggle" | "show" | "hide"
-
popoverTarget
string
-
inert
boolean
-
inputMode
"search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal"
-
is
string
-
aria-activedescendant
string
-
aria-atomic
Booleanish
-
aria-autocomplete
"none" | "list" | "inline" | "both"
-
aria-braillelabel
string
-
aria-brailleroledescription
string
-
aria-busy
Booleanish
-
aria-checked
boolean | "true" | "false" | "mixed"
-
aria-colcount
number
-
aria-colindex
number
-
aria-colindextext
string
-
aria-colspan
number
-
aria-controls
string
-
aria-current
boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date"
-
aria-describedby
string
-
aria-description
string
-
aria-details
string
-
aria-disabled
Booleanish
-
aria-dropeffect
"link" | "none" | "copy" | "execute" | "move" | "popup"
-
aria-errormessage
string
-
aria-expanded
Booleanish
-
aria-flowto
string
-
aria-grabbed
Booleanish
-
aria-haspopup
boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree"
-
aria-hidden
Booleanish
-
aria-invalid
boolean | "true" | "false" | "grammar" | "spelling"
-
aria-keyshortcuts
string
-
aria-label
string
-
aria-labelledby
string
-
aria-level
number
-
aria-live
"off" | "assertive" | "polite"
-
aria-modal
Booleanish
-
aria-multiline
Booleanish
-
aria-multiselectable
Booleanish
-
aria-orientation
"horizontal" | "vertical"
-
aria-owns
string
-
aria-placeholder
string
-
aria-posinset
number
-
aria-pressed
boolean | "true" | "false" | "mixed"
-
aria-readonly
Booleanish
-
aria-relevant
"text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals"
-
aria-required
Booleanish
-
aria-roledescription
string
-
aria-rowcount
number
-
aria-rowindex
number
-
aria-rowindextext
string
-
aria-rowspan
number
-
aria-selected
Booleanish
-
aria-setsize
number
-
aria-sort
"none" | "ascending" | "descending" | "other"
-
aria-valuemax
number
-
aria-valuemin
number
-
aria-valuenow
number
-
aria-valuetext
string
-
children
ReactNode
-
dangerouslySetInnerHTML
{ __html: string | TrustedHTML; }
-
onCopy
(event: BaseUIEvent<ClipboardEvent<HTMLButtonElement>>) => void
-
onCopyCapture
(event: BaseUIEvent<ClipboardEvent<HTMLButtonElement>>) => void
-
onCut
(event: BaseUIEvent<ClipboardEvent<HTMLButtonElement>>) => void
-
onCutCapture
(event: BaseUIEvent<ClipboardEvent<HTMLButtonElement>>) => void
-
onPaste
(event: BaseUIEvent<ClipboardEvent<HTMLButtonElement>>) => void
-
onPasteCapture
(event: BaseUIEvent<ClipboardEvent<HTMLButtonElement>>) => void
-
onCompositionEnd
(event: BaseUIEvent<CompositionEvent<HTMLButtonElement>>) => void
-
onCompositionEndCapture
(event: BaseUIEvent<CompositionEvent<HTMLButtonElement>>) => void
-
onCompositionStart
(event: BaseUIEvent<CompositionEvent<HTMLButtonElement>>) => void
-
onCompositionStartCapture
(event: BaseUIEvent<CompositionEvent<HTMLButtonElement>>) => void
-
onCompositionUpdate
(event: BaseUIEvent<CompositionEvent<HTMLButtonElement>>) => void
-
onCompositionUpdateCapture
(event: BaseUIEvent<CompositionEvent<HTMLButtonElement>>) => void
-
onFocus
(event: BaseUIEvent<FocusEvent<HTMLButtonElement, Element>>) => void
-
onFocusCapture
(event: BaseUIEvent<FocusEvent<HTMLButtonElement, Element>>) => void
-
onBlur
(event: BaseUIEvent<FocusEvent<HTMLButtonElement, Element>>) => void
-
onBlurCapture
(event: BaseUIEvent<FocusEvent<HTMLButtonElement, Element>>) => void
-
onChange
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onChangeCapture
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onBeforeInput
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onBeforeInputCapture
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onInput
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onInputCapture
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onReset
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onResetCapture
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onSubmit
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onSubmitCapture
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onInvalid
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onInvalidCapture
(event: BaseUIEvent<FormEvent<HTMLButtonElement>>) => void
-
onLoad
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onError
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onErrorCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onKeyDown
(event: BaseUIEvent<KeyboardEvent<HTMLButtonElement>>) => void
-
onKeyDownCapture
(event: BaseUIEvent<KeyboardEvent<HTMLButtonElement>>) => void
-
onKeyPress
(event: BaseUIEvent<KeyboardEvent<HTMLButtonElement>>) => void
-
onKeyPressCapture
(event: BaseUIEvent<KeyboardEvent<HTMLButtonElement>>) => void
-
onKeyUp
(event: BaseUIEvent<KeyboardEvent<HTMLButtonElement>>) => void
-
onKeyUpCapture
(event: BaseUIEvent<KeyboardEvent<HTMLButtonElement>>) => void
-
onAbort
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onAbortCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onCanPlay
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onCanPlayCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onCanPlayThrough
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onCanPlayThroughCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onDurationChange
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onDurationChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onEmptied
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onEmptiedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onEncrypted
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onEncryptedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onEnded
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onEndedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadedData
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadedDataCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadedMetadata
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadedMetadataCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadStart
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onLoadStartCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onPause
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onPauseCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onPlay
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onPlayCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onPlaying
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onPlayingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onProgress
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onProgressCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onRateChange
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onRateChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onResize
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onResizeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSeeked
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSeekedCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSeeking
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSeekingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onStalled
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onStalledCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSuspend
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSuspendCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onTimeUpdate
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onTimeUpdateCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onVolumeChange
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onVolumeChangeCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onWaiting
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onWaitingCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onAuxClick
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onAuxClickCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onClick
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onClickCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onContextMenu
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onContextMenuCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onDoubleClick
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onDoubleClickCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onDrag
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragEnd
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragEndCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragEnter
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragEnterCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragExit
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragExitCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragLeave
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragLeaveCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragOver
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragOverCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragStart
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDragStartCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDrop
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onDropCapture
(event: BaseUIEvent<DragEvent<HTMLButtonElement>>) => void
-
onMouseDown
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseDownCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseEnter
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseLeave
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseMove
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseMoveCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseOut
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseOutCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseOver
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseOverCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseUp
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onMouseUpCapture
(event: BaseUIEvent<MouseEvent<HTMLButtonElement, MouseEvent>>) => void
-
onSelect
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onSelectCapture
(event: BaseUIEvent<SyntheticEvent<HTMLButtonElement, Event>>) => void
-
onTouchCancel
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchCancelCapture
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchEnd
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchEndCapture
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchMove
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchMoveCapture
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchStart
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onTouchStartCapture
(event: BaseUIEvent<TouchEvent<HTMLButtonElement>>) => void
-
onPointerDown
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerDownCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerMove
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerMoveCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerUp
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerUpCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerCancel
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerCancelCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerEnter
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerLeave
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerOver
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerOverCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerOut
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onPointerOutCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onGotPointerCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onGotPointerCaptureCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onLostPointerCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onLostPointerCaptureCapture
(event: BaseUIEvent<PointerEvent<HTMLButtonElement>>) => void
-
onScroll
(event: BaseUIEvent<UIEvent<HTMLButtonElement, UIEvent>>) => void
-
onScrollCapture
(event: BaseUIEvent<UIEvent<HTMLButtonElement, UIEvent>>) => void
-
onWheel
(event: BaseUIEvent<WheelEvent<HTMLButtonElement>>) => void
-
onWheelCapture
(event: BaseUIEvent<WheelEvent<HTMLButtonElement>>) => void
-
onAnimationStart
(event: BaseUIEvent<AnimationEvent<HTMLButtonElement>>) => void
-
onAnimationStartCapture
(event: BaseUIEvent<AnimationEvent<HTMLButtonElement>>) => void
-
onAnimationEnd
(event: BaseUIEvent<AnimationEvent<HTMLButtonElement>>) => void
-
onAnimationEndCapture
(event: BaseUIEvent<AnimationEvent<HTMLButtonElement>>) => void
-
onAnimationIteration
(event: BaseUIEvent<AnimationEvent<HTMLButtonElement>>) => void
-
onAnimationIterationCapture
(event: BaseUIEvent<AnimationEvent<HTMLButtonElement>>) => void
-
onToggle
(event: BaseUIEvent<ToggleEvent<HTMLButtonElement>>) => void
-
onBeforeToggle
(event: BaseUIEvent<ToggleEvent<HTMLButtonElement>>) => void
-
onTransitionCancel
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionCancelCapture
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionEnd
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionEndCapture
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionRun
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionRunCapture
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionStart
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
onTransitionStartCapture
(event: BaseUIEvent<TransitionEvent<HTMLButtonElement>>) => void
-
className
string | ((state: State) => string)
-
render
ReactElement<Record<string, unknown>, string | JSXElementConstructor<any>> | ComponentRenderFn<GenericHTMLProps, State>
-
ref
((instance: HTMLButtonElement | null) => void | (() => VoidOrUndefinedOnly)) | RefObject<HTMLButtonElement | null>
-

On this page