Skip to content
Migrating from NextAuth.js v4? Read our migration guide.

providers/credentials

CredentialInput

Besides providing type safety inside CredentialsConfig.authorize it also determines how the credentials input fields will be rendered on the default sign in page.

Extends

  • Partial<JSX.IntrinsicElements["input"]>

Properties

about?

optional about: string | SignalLike<undefined | string>;
Inherited from

Partial.about

accept?

optional accept: string | SignalLike<undefined | string>;
Inherited from

Partial.accept

accept-charset?

optional accept-charset: string | SignalLike<undefined | string>;
Inherited from

Partial.accept-charset

acceptCharset?

optional acceptCharset: string | SignalLike<undefined | string>;
Inherited from

Partial.acceptCharset

accessKey?

optional accessKey: string | SignalLike<undefined | string>;
Inherited from

Partial.accessKey

accesskey?

optional accesskey: string | SignalLike<undefined | string>;
Inherited from

Partial.accesskey

action?

optional action: string | SignalLike<undefined | string>;
Inherited from

Partial.action

allow?

optional allow: string | SignalLike<undefined | string>;
Inherited from

Partial.allow

allowFullScreen?

optional allowFullScreen: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.allowFullScreen

allowTransparency?

optional allowTransparency: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.allowTransparency

alt?

optional alt: string | SignalLike<undefined | string>;
Inherited from

Partial.alt

aria-activedescendant?

optional aria-activedescendant: Signalish<undefined | string>;

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

Inherited from

Partial.aria-activedescendant

aria-atomic?

optional aria-atomic: Signalish<undefined | Booleanish>;

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

Inherited from

Partial.aria-atomic

aria-autocomplete?

optional aria-autocomplete: Signalish<
  | undefined
  | "none"
  | "list"
  | "inline"
| "both">;

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

Inherited from

Partial.aria-autocomplete

aria-braillelabel?

optional aria-braillelabel: Signalish<undefined | string>;

Defines a string value that labels the current element, which is intended to be converted into Braille.

See

aria-label.

Inherited from

Partial.aria-braillelabel

aria-brailleroledescription?

optional aria-brailleroledescription: Signalish<undefined | string>;

Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.

See

aria-roledescription.

Inherited from

Partial.aria-brailleroledescription

aria-busy?

optional aria-busy: Signalish<undefined | Booleanish>;

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

Inherited from

Partial.aria-busy

aria-checked?

optional aria-checked: Signalish<undefined | Booleanish | "mixed">;

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

See
  • aria-pressed
  • aria-selected.
Inherited from

Partial.aria-checked

aria-colcount?

optional aria-colcount: Signalish<undefined | number>;

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

See

aria-colindex.

Inherited from

Partial.aria-colcount

aria-colindex?

optional aria-colindex: Signalish<undefined | number>;

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

See
  • aria-colcount
  • aria-colspan.
Inherited from

Partial.aria-colindex

aria-colindextext?

optional aria-colindextext: Signalish<undefined | string>;

Defines a human readable text alternative of aria-colindex.

See

aria-rowindextext.

Inherited from

Partial.aria-colindextext

aria-colspan?

optional aria-colspan: Signalish<undefined | number>;

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

See
  • aria-colindex
  • aria-rowspan.
Inherited from

Partial.aria-colspan

aria-controls?

optional aria-controls: Signalish<undefined | string>;

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

See

aria-owns.

Inherited from

Partial.aria-controls

aria-current?

optional aria-current: Signalish<
  | undefined
  | "step"
  | "time"
  | "page"
  | Booleanish
  | "location"
| "date">;

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

Inherited from

Partial.aria-current

aria-describedby?

optional aria-describedby: Signalish<undefined | string>;

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

See

aria-labelledby

Inherited from

Partial.aria-describedby

aria-description?

optional aria-description: Signalish<undefined | string>;

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

See

related aria-describedby.

Inherited from

Partial.aria-description

aria-details?

optional aria-details: Signalish<undefined | string>;

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

See

aria-describedby.

Inherited from

Partial.aria-details

aria-disabled?

optional aria-disabled: Signalish<undefined | Booleanish>;

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

See
  • aria-hidden
  • aria-readonly.
Inherited from

Partial.aria-disabled

aria-dropeffect?

optional aria-dropeffect: Signalish<
  | undefined
  | "none"
  | "link"
  | "copy"
  | "execute"
  | "move"
| "popup">;

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

Deprecated

in ARIA 1.1

Inherited from

Partial.aria-dropeffect

aria-errormessage?

optional aria-errormessage: Signalish<undefined | string>;

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

See
  • aria-invalid
  • aria-describedby.
Inherited from

Partial.aria-errormessage

aria-expanded?

optional aria-expanded: Signalish<undefined | Booleanish>;

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

Inherited from

Partial.aria-expanded

aria-flowto?

optional aria-flowto: Signalish<undefined | string>;

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

Inherited from

Partial.aria-flowto

aria-grabbed?

optional aria-grabbed: Signalish<undefined | Booleanish>;

Indicates an element’s “grabbed” state in a drag-and-drop operation.

Deprecated

in ARIA 1.1

Inherited from

Partial.aria-grabbed

aria-haspopup?

optional aria-haspopup: Signalish<
  | undefined
  | "dialog"
  | "menu"
  | "grid"
  | Booleanish
  | "listbox"
| "tree">;

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

Inherited from

Partial.aria-haspopup

aria-hidden?

optional aria-hidden: Signalish<undefined | Booleanish>;

Indicates whether the element is exposed to an accessibility API.

See

aria-disabled.

Inherited from

Partial.aria-hidden

aria-invalid?

optional aria-invalid: Signalish<undefined | Booleanish | "grammar" | "spelling">;

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

See

aria-errormessage.

Inherited from

Partial.aria-invalid

aria-keyshortcuts?

optional aria-keyshortcuts: Signalish<undefined | string>;

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

Inherited from

Partial.aria-keyshortcuts

aria-label?

optional aria-label: Signalish<undefined | string>;

Defines a string value that labels the current element.

See

aria-labelledby.

Inherited from

Partial.aria-label

aria-labelledby?

optional aria-labelledby: Signalish<undefined | string>;

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

See

aria-describedby.

Inherited from

Partial.aria-labelledby

aria-level?

optional aria-level: Signalish<undefined | number>;

Defines the hierarchical level of an element within a structure.

Inherited from

Partial.aria-level

aria-live?

optional aria-live: Signalish<undefined | "off" | "assertive" | "polite">;

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

Inherited from

Partial.aria-live

aria-modal?

optional aria-modal: Signalish<undefined | Booleanish>;

Indicates whether an element is modal when displayed.

Inherited from

Partial.aria-modal

aria-multiline?

optional aria-multiline: Signalish<undefined | Booleanish>;

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

Inherited from

Partial.aria-multiline

aria-multiselectable?

optional aria-multiselectable: Signalish<undefined | Booleanish>;

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

Inherited from

Partial.aria-multiselectable

aria-orientation?

optional aria-orientation: Signalish<undefined | "horizontal" | "vertical">;

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

Inherited from

Partial.aria-orientation

aria-owns?

optional aria-owns: Signalish<undefined | string>;

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

See

aria-controls.

Inherited from

Partial.aria-owns

aria-placeholder?

optional aria-placeholder: Signalish<undefined | string>;

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

Inherited from

Partial.aria-placeholder

aria-posinset?

optional aria-posinset: Signalish<undefined | number>;

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

See

aria-setsize.

Inherited from

Partial.aria-posinset

aria-pressed?

optional aria-pressed: Signalish<undefined | Booleanish | "mixed">;

Indicates the current “pressed” state of toggle buttons.

See
  • aria-checked
  • aria-selected.
Inherited from

Partial.aria-pressed

aria-readonly?

optional aria-readonly: Signalish<undefined | Booleanish>;

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

See

aria-disabled.

Inherited from

Partial.aria-readonly

aria-relevant?

optional aria-relevant: Signalish<
  | undefined
  | "text"
  | "all"
  | "additions"
  | "additions removals"
  | "additions text"
  | "removals"
  | "removals additions"
  | "removals text"
  | "text additions"
| "text removals">;

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

See

aria-atomic.

Inherited from

Partial.aria-relevant

aria-required?

optional aria-required: Signalish<undefined | Booleanish>;

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

Inherited from

Partial.aria-required

aria-roledescription?

optional aria-roledescription: Signalish<undefined | string>;

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

Inherited from

Partial.aria-roledescription

aria-rowcount?

optional aria-rowcount: Signalish<undefined | number>;

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

See

aria-rowindex.

Inherited from

Partial.aria-rowcount

aria-rowindex?

optional aria-rowindex: Signalish<undefined | number>;

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

See
  • aria-rowcount
  • aria-rowspan.
Inherited from

Partial.aria-rowindex

aria-rowindextext?

optional aria-rowindextext: Signalish<undefined | string>;

Defines a human readable text alternative of aria-rowindex.

See

aria-colindextext.

Inherited from

Partial.aria-rowindextext

aria-rowspan?

optional aria-rowspan: Signalish<undefined | number>;

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

See
  • aria-rowindex
  • aria-colspan.
Inherited from

Partial.aria-rowspan

aria-selected?

optional aria-selected: Signalish<undefined | Booleanish>;

Indicates the current “selected” state of various widgets.

See
  • aria-checked
  • aria-pressed.
Inherited from

Partial.aria-selected

aria-setsize?

optional aria-setsize: Signalish<undefined | number>;

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

See

aria-posinset.

Inherited from

Partial.aria-setsize

aria-sort?

optional aria-sort: Signalish<
  | undefined
  | "none"
  | "ascending"
  | "descending"
| "other">;

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

Inherited from

Partial.aria-sort

aria-valuemax?

optional aria-valuemax: Signalish<undefined | number>;

Defines the maximum allowed value for a range widget.

Inherited from

Partial.aria-valuemax

aria-valuemin?

optional aria-valuemin: Signalish<undefined | number>;

Defines the minimum allowed value for a range widget.

Inherited from

Partial.aria-valuemin

aria-valuenow?

optional aria-valuenow: Signalish<undefined | number>;

Defines the current value for a range widget.

See

aria-valuetext.

Inherited from

Partial.aria-valuenow

aria-valuetext?

optional aria-valuetext: Signalish<undefined | string>;

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

Inherited from

Partial.aria-valuetext

as?

optional as: string | SignalLike<undefined | string>;
Inherited from

Partial.as

async?

optional async: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.async

autoCapitalize?

optional autoCapitalize: 
  | "none"
  | "off"
  | "on"
  | "sentences"
  | "words"
  | "characters"
  | SignalLike<
  | undefined
  | "none"
  | "off"
  | "on"
  | "sentences"
  | "words"
| "characters">;
Inherited from

Partial.autoCapitalize

autoComplete?

optional autoComplete: string | SignalLike<undefined | string>;
Inherited from

Partial.autoComplete

autoCorrect?

optional autoCorrect: string | SignalLike<undefined | string>;
Inherited from

Partial.autoCorrect

autoFocus?

optional autoFocus: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.autoFocus

autoPlay?

optional autoPlay: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.autoPlay

autocapitalize?

optional autocapitalize: 
  | "none"
  | "off"
  | "on"
  | "sentences"
  | "words"
  | "characters"
  | SignalLike<
  | undefined
  | "none"
  | "off"
  | "on"
  | "sentences"
  | "words"
| "characters">;
Inherited from

Partial.autocapitalize

autocomplete?

optional autocomplete: string | SignalLike<undefined | string>;
Inherited from

Partial.autocomplete

autocorrect?

optional autocorrect: string | SignalLike<undefined | string>;
Inherited from

Partial.autocorrect

autofocus?

optional autofocus: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.autofocus

autoplay?

optional autoplay: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.autoplay

capture?

optional capture: string | boolean | SignalLike<undefined | string>;
Inherited from

Partial.capture

cellPadding?

optional cellPadding: string | number | SignalLike<undefined | string>;
Inherited from

Partial.cellPadding

cellSpacing?

optional cellSpacing: string | number | SignalLike<undefined | string>;
Inherited from

Partial.cellSpacing

challenge?

optional challenge: string | SignalLike<undefined | string>;
Inherited from

Partial.challenge

charSet?

optional charSet: string | SignalLike<undefined | string>;
Inherited from

Partial.charSet

charset?

optional charset: string | SignalLike<undefined | string>;
Inherited from

Partial.charset

checked?

optional checked: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.checked

children?

optional children: ComponentChildren;
Inherited from

Partial.children

cite?

optional cite: string | SignalLike<undefined | string>;
Inherited from

Partial.cite

class?

optional class: string | SignalLike<undefined | string>;
Inherited from

Partial.class

className?

optional className: string | SignalLike<undefined | string>;
Inherited from

Partial.className

colSpan?

optional colSpan: number | SignalLike<undefined | number>;
Inherited from

Partial.colSpan

cols?

optional cols: number | SignalLike<undefined | number>;
Inherited from

Partial.cols

colspan?

optional colspan: number | SignalLike<undefined | number>;
Inherited from

Partial.colspan

content?

optional content: string | SignalLike<undefined | string>;
Inherited from

Partial.content

contentEditable?

optional contentEditable: 
  | ""
  | Booleanish
  | "plaintext-only"
  | "inherit"
| SignalLike<"" | Booleanish | "plaintext-only" | "inherit" | undefined>;
Inherited from

Partial.contentEditable

contenteditable?

optional contenteditable: 
  | ""
  | Booleanish
  | "plaintext-only"
  | "inherit"
| SignalLike<"" | Booleanish | "plaintext-only" | "inherit" | undefined>;
Inherited from

Partial.contenteditable

contextMenu?

optional contextMenu: string | SignalLike<undefined | string>;
Deprecated

See https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/contextmenu

Inherited from

Partial.contextMenu

contextmenu?

optional contextmenu: string | SignalLike<undefined | string>;
Deprecated

See https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/contextmenu

Inherited from

Partial.contextmenu

controls?

optional controls: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.controls

controlsList?

optional controlsList: string | SignalLike<undefined | string>;
Inherited from

Partial.controlsList

coords?

optional coords: string | SignalLike<undefined | string>;
Inherited from

Partial.coords

crossOrigin?

optional crossOrigin: string | SignalLike<undefined | string>;
Inherited from

Partial.crossOrigin

crossorigin?

optional crossorigin: string | SignalLike<undefined | string>;
Inherited from

Partial.crossorigin

dangerouslySetInnerHTML?

optional dangerouslySetInnerHTML: {
  __html: string;
};
__html
__html: string;
Inherited from

Partial.dangerouslySetInnerHTML

data?

optional data: string | SignalLike<undefined | string>;
Inherited from

Partial.data

datatype?

optional datatype: string | SignalLike<undefined | string>;
Inherited from

Partial.datatype

dateTime?

optional dateTime: string | SignalLike<undefined | string>;
Inherited from

Partial.dateTime

datetime?

optional datetime: string | SignalLike<undefined | string>;
Inherited from

Partial.datetime

decoding?

optional decoding: "async" | "auto" | "sync" | SignalLike<undefined | "async" | "auto" | "sync">;
Inherited from

Partial.decoding

default?

optional default: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.default

defaultChecked?

optional defaultChecked: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.defaultChecked

defaultValue?

optional defaultValue: string | SignalLike<undefined | string>;
Inherited from

Partial.defaultValue

defer?

optional defer: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.defer

dir?

optional dir: "auto" | "rtl" | "ltr" | SignalLike<undefined | "auto" | "rtl" | "ltr">;
Inherited from

Partial.dir

disablePictureInPicture?

optional disablePictureInPicture: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.disablePictureInPicture

disableRemotePlayback?

optional disableRemotePlayback: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.disableRemotePlayback

disabled?

optional disabled: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.disabled

download?

optional download: any;
Inherited from

Partial.download

draggable?

optional draggable: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.draggable

elementTiming?

optional elementTiming: string | SignalLike<undefined | string>;
Inherited from

Partial.elementTiming

elementtiming?

optional elementtiming: string | SignalLike<undefined | string>;
Inherited from

Partial.elementtiming

encType?

optional encType: string | SignalLike<undefined | string>;
Inherited from

Partial.encType

enctype?

optional enctype: string | SignalLike<undefined | string>;
Inherited from

Partial.enctype

enterkeyhint?

optional enterkeyhint: 
  | "search"
  | "enter"
  | "done"
  | "go"
  | "next"
  | "previous"
  | "send"
  | SignalLike<
  | undefined
  | "search"
  | "enter"
  | "done"
  | "go"
  | "next"
  | "previous"
| "send">;
Inherited from

Partial.enterkeyhint

exportparts?

optional exportparts: string | SignalLike<undefined | string>;
Inherited from

Partial.exportparts

for?

optional for: string | SignalLike<undefined | string>;
Inherited from

Partial.for

form?

optional form: string | SignalLike<undefined | string>;
Inherited from

Partial.form

formAction?

optional formAction: string | SignalLike<undefined | string>;
Inherited from

Partial.formAction

formEncType?

optional formEncType: string | SignalLike<undefined | string>;
Inherited from

Partial.formEncType

formMethod?

optional formMethod: string | SignalLike<undefined | string>;
Inherited from

Partial.formMethod

formNoValidate?

optional formNoValidate: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.formNoValidate

formTarget?

optional formTarget: string | SignalLike<undefined | string>;
Inherited from

Partial.formTarget

formaction?

optional formaction: string | SignalLike<undefined | string>;
Inherited from

Partial.formaction

formenctype?

optional formenctype: string | SignalLike<undefined | string>;
Inherited from

Partial.formenctype

formmethod?

optional formmethod: string | SignalLike<undefined | string>;
Inherited from

Partial.formmethod

formnovalidate?

optional formnovalidate: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.formnovalidate

formtarget?

optional formtarget: string | SignalLike<undefined | string>;
Inherited from

Partial.formtarget

frameBorder?

optional frameBorder: string | number | SignalLike<undefined | string | number>;
Inherited from

Partial.frameBorder

frameborder?

optional frameborder: string | number | SignalLike<undefined | string | number>;
Inherited from

Partial.frameborder

headers?

optional headers: string | SignalLike<undefined | string>;
Inherited from

Partial.headers

height?

optional height: string | number | SignalLike<undefined | string | number>;
Inherited from

Partial.height

hidden?

optional hidden: boolean | "hidden" | "until-found" | SignalLike<undefined | boolean | "hidden" | "until-found">;
Inherited from

Partial.hidden

high?

optional high: number | SignalLike<undefined | number>;
Inherited from

Partial.high

href?

optional href: string | SignalLike<undefined | string>;
Inherited from

Partial.href

hrefLang?

optional hrefLang: string | SignalLike<undefined | string>;
Inherited from

Partial.hrefLang

hreflang?

optional hreflang: string | SignalLike<undefined | string>;
Inherited from

Partial.hreflang

htmlFor?

optional htmlFor: string | SignalLike<undefined | string>;
Inherited from

Partial.htmlFor

http-equiv?

optional http-equiv: string | SignalLike<undefined | string>;
Inherited from

Partial.http-equiv

httpEquiv?

optional httpEquiv: string | SignalLike<undefined | string>;
Inherited from

Partial.httpEquiv

icon?

optional icon: string | SignalLike<undefined | string>;
Inherited from

Partial.icon

id?

optional id: string | SignalLike<undefined | string>;
Inherited from

Partial.id

indeterminate?

optional indeterminate: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.indeterminate

inert?

optional inert: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.inert

inlist?

optional inlist: any;
Inherited from

Partial.inlist

inputMode?

optional inputMode: string | SignalLike<undefined | string>;
Inherited from

Partial.inputMode

inputmode?

optional inputmode: string | SignalLike<undefined | string>;
Inherited from

Partial.inputmode

integrity?

optional integrity: string | SignalLike<undefined | string>;
Inherited from

Partial.integrity

is?

optional is: string | SignalLike<undefined | string>;
Inherited from

Partial.is

itemID?

optional itemID: string | SignalLike<undefined | string>;
Inherited from

Partial.itemID

itemProp?

optional itemProp: string | SignalLike<undefined | string>;
Inherited from

Partial.itemProp

itemRef?

optional itemRef: string | SignalLike<undefined | string>;
Inherited from

Partial.itemRef

itemScope?

optional itemScope: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.itemScope

itemType?

optional itemType: string | SignalLike<undefined | string>;
Inherited from

Partial.itemType

itemid?

optional itemid: string | SignalLike<undefined | string>;
Inherited from

Partial.itemid

itemprop?

optional itemprop: string | SignalLike<undefined | string>;
Inherited from

Partial.itemprop

itemref?

optional itemref: string | SignalLike<undefined | string>;
Inherited from

Partial.itemref

itemscope?

optional itemscope: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.itemscope

itemtype?

optional itemtype: string | SignalLike<undefined | string>;
Inherited from

Partial.itemtype

jsx?

optional jsx: boolean;
Inherited from

Partial.jsx

key?

optional key: any;
Inherited from

Partial.key

keyParams?

optional keyParams: string | SignalLike<undefined | string>;
Inherited from

Partial.keyParams

keyType?

optional keyType: string | SignalLike<undefined | string>;
Inherited from

Partial.keyType

kind?

optional kind: string | SignalLike<undefined | string>;
Inherited from

Partial.kind

label?

optional label: string;
Overrides

Partial.label

lang?

optional lang: string | SignalLike<undefined | string>;
Inherited from

Partial.lang

list?

optional list: string | SignalLike<undefined | string>;
Inherited from

Partial.list

loading?

optional loading: "lazy" | "eager" | SignalLike<undefined | "lazy" | "eager">;
Inherited from

Partial.loading

loop?

optional loop: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.loop

low?

optional low: number | SignalLike<undefined | number>;
Inherited from

Partial.low

manifest?

optional manifest: string | SignalLike<undefined | string>;
Inherited from

Partial.manifest

marginHeight?

optional marginHeight: number | SignalLike<undefined | number>;
Inherited from

Partial.marginHeight

marginWidth?

optional marginWidth: number | SignalLike<undefined | number>;
Inherited from

Partial.marginWidth

max?

optional max: string | number | SignalLike<undefined | string>;
Inherited from

Partial.max

maxLength?

optional maxLength: number | SignalLike<undefined | number>;
Inherited from

Partial.maxLength

maxlength?

optional maxlength: number | SignalLike<undefined | number>;
Inherited from

Partial.maxlength

media?

optional media: string | SignalLike<undefined | string>;
Inherited from

Partial.media

mediaGroup?

optional mediaGroup: string | SignalLike<undefined | string>;
Inherited from

Partial.mediaGroup

method?

optional method: string | SignalLike<undefined | string>;
Inherited from

Partial.method

min?

optional min: string | number | SignalLike<undefined | string>;
Inherited from

Partial.min

minLength?

optional minLength: number | SignalLike<undefined | number>;
Inherited from

Partial.minLength

minlength?

optional minlength: number | SignalLike<undefined | number>;
Inherited from

Partial.minlength

multiple?

optional multiple: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.multiple

muted?

optional muted: boolean | SignalLike<undefined | boolean>;
Inherited from

Partial.muted

name?

optional name: string | SignalLike<undefined | string>;
Inherited from

Partial.name

noValidate?

optional noValidate: boolean | SignalLike<