Options
All
  • Public
  • Public/Protected
  • All
Menu

Module "forms"

Index

Variables

Const button

button: ElementFactory<Partial<InputAttribs>, any> = defElement<Partial<InputAttribs>>("button")

Const checkbox

checkbox: ElementFactory<Partial<InputCheckboxAttribs>, never> = defElement<Partial<InputCheckboxAttribs>, never>("input",{type: "checkbox",})

Const fieldset

fieldset: ElementFactory<Partial<FieldsetAttribs>, any> = defElement<Partial<FieldsetAttribs>>("fieldset")

Const form

form: ElementFactory<Partial<FormAttribs>, any> = defElement<Partial<FormAttribs>>("form")

Const inputColor

inputColor: ElementFactory<Partial<InputAttribs>, never> = defElement<Partial<InputAttribs>, never>("input", {type: "color",})

Const inputFile

inputFile: ElementFactory<Partial<InputFileAttribs>, never> = defElement<Partial<InputFileAttribs>, never>("input", {type: "file",})

Const inputNumber

inputNumber: ElementFactory<Partial<InputNumericAttribs>, never> = defElement<Partial<InputNumericAttribs>, never>("input",{ type: "number" })

Const inputPass

inputPass: ElementFactory<Partial<InputTextAttribs>, never> = defElement<Partial<InputTextAttribs>, never>("input", {type: "password",})

Const inputRange

inputRange: ElementFactory<Partial<InputNumericAttribs>, never> = defElement<Partial<InputNumericAttribs>, never>("input",{ type: "range" })

Const inputSearch

inputSearch: ElementFactory<Partial<InputTextAttribs>, never> = defElement<Partial<InputTextAttribs>, never>("input",{type: "search",})

Const inputText

inputText: ElementFactory<Partial<InputTextAttribs>, never> = defElement<Partial<InputTextAttribs>, never>("input", {type: "text",})

Const label

label: ElementFactory<LabelAttribs, any> = defElement<LabelAttribs>("label")

Const legend

legend: ElementFactory<Partial<Attribs>, any> = defElement("legend")

Const meter

meter: ElementFactory<Partial<MeterAttribs>, any> = defElement<Partial<MeterAttribs>>("meter")

Const optGroup

optGroup: ElementFactory<Partial<OptGroupAttribs>, any> = defElement<Partial<OptGroupAttribs>>("optgroup")

Const option

option: ElementFactory<Partial<OptionAttribs>, string> = defElement<Partial<OptionAttribs>, string>("option")

Const progress

progress: ElementFactory<Partial<ProgressAttribs>, any> = defElement<Partial<ProgressAttribs>>("progress")

Const radio

radio: ElementFactory<Partial<InputRadioAttribs>, never> = defElement<Partial<InputRadioAttribs>, never>("input", {type: "radio",})

Const select

select: ElementFactory<Partial<SelectAttribs>, any> = defElement<Partial<SelectAttribs>>("select")

Const textArea

textArea: ElementFactory<Partial<TextAreaAttribs>, never> = defElement<Partial<TextAreaAttribs>, never>("textarea")

Generated using TypeDoc