haskell-halogen-core
Safe HaskellNone
LanguageGHC2021

DOM.HTML.Indexed

Documentation

data DirValue Source #

Constructors

DirLTR 
DirRTL 
DirAuto 

Instances

Instances details
Eq DirValue Source # 
Instance details

Defined in DOM.HTML.Indexed

Ord DirValue Source # 
Instance details

Defined in DOM.HTML.Indexed

IsProp DirValue Source # 
Instance details

Defined in Halogen.HTML.Core

data ButtonType Source #

Instances

Instances details
IsProp ButtonType Source # 
Instance details

Defined in Halogen.HTML.Core

data AutocompleteType Source #

Constructors

AutocompleteOff 
AutocompleteOn 
AutocompleteName 
AutocompleteHonorificPrefix 
AutocompleteGivenName 
AutocompleteAdditionalName 
AutocompleteFamilyName 
AutocompleteHonorificSuffix 
AutocompleteNickname 
AutocompleteEmail 
AutocompleteUsername 
AutocompleteNewPassword 
AutocompleteCurrentPassword 
AutocompleteOneTimeCode 
AutocompleteOrganizationTitle 
AutocompleteOrganization 
AutocompleteStreetAddress 
AutocompleteAddressLine1 
AutocompleteAddressLine2 
AutocompleteAddressLine3 
AutocompleteAddressLevel1 
AutocompleteAddressLevel2 
AutocompleteAddressLevel3 
AutocompleteAddressLevel4 
AutocompleteCountry 
AutocompleteCountryName 
AutocompletePostalCode 
AutocompleteCreditCardName 
AutocompleteCreditCardGivenName 
AutocompleteCreditCardAdditionalName 
AutocompleteCreditCardFamilyName 
AutocompleteCreditCardNumber 
AutocompleteCreditCardExpiration 
AutocompleteCreditCardExpirationMonth 
AutocompleteCreditCardExpirationYear 
AutocompleteCreditCardSecurityCode 
AutocompleteCreditCardType 
AutocompleteTransactionCurrency 
AutocompleteTransactionAmount 
AutocompleteLanguage 
AutocompleteBirthday 
AutocompleteBirthdayDay 
AutocompleteBirthdayMonth 
AutocompleteBirthdayYear 
AutocompleteSex 
AutocompleteTelephone 
AutocompleteTelephoneCountryCode 
AutocompleteTelephoneNational 
AutocompleteTelephoneAreaCode 
AutocompleteTelephoneLocal 
AutocompleteTelephoneLocalPrefix 
AutocompleteTelephoneLocalSuffix 
AutocompleteTelephoneExtension 
AutocompleteIMPP 
AutocompleteURL 
AutocompletePhoto 

data MenuType Source #

Instances

Instances details
Eq MenuType Source # 
Instance details

Defined in DOM.HTML.Indexed

Ord MenuType Source # 
Instance details

Defined in DOM.HTML.Indexed

IsProp MenuType Source # 
Instance details

Defined in Halogen.HTML.Core

data StepValue Source #

Constructors

Any 
Step Double 

Instances

Instances details
Eq StepValue Source # 
Instance details

Defined in DOM.HTML.Indexed

Ord StepValue Source # 
Instance details

Defined in DOM.HTML.Indexed

IsProp StepValue Source # 
Instance details

Defined in Halogen.HTML.Core

data CaseType Source #

Constructors

Uppercase 
Lowercase 

Instances

Instances details
Eq CaseType Source # 
Instance details

Defined in DOM.HTML.Indexed

Ord CaseType Source # 
Instance details

Defined in DOM.HTML.Indexed

data WrapValue Source #

Constructors

Hard 
Soft 

Instances

Instances details
Eq WrapValue Source # 
Instance details

Defined in DOM.HTML.Indexed

Ord WrapValue Source # 
Instance details

Defined in DOM.HTML.Indexed

IsProp WrapValue Source # 
Instance details

Defined in Halogen.HTML.Core

type GlobalAttributes (r :: Row Type) = (((((((((((("id" .== Text) .+ ("title" .== Text)) .+ ("class" .== Text)) .+ ("style" .== Text)) .+ ("spellcheck" .== Bool)) .+ ("draggable" .== Bool)) .+ ("lang" .== Text)) .+ ("dir" .== DirValue)) .+ ("hidden" .== Bool)) .+ ("tabIndex" .== Int)) .+ ("accessKey" .== Text)) .+ ("contentEditable" .== Bool)) .+ r Source #

type GlobalEvents (r :: Row Type) = ((("onContextMenu" .== Event) .+ ("onInput" .== Event)) .+ ("onBeforeInput" .== Event)) .+ r Source #

type MouseEvents (r :: Row Type) = (((((((((("onDoubleClick" .== MouseEvent) .+ ("onClick" .== MouseEvent)) .+ ("onAuxClick" .== MouseEvent)) .+ ("onMouseDown" .== MouseEvent)) .+ ("onMouseEnter" .== MouseEvent)) .+ ("onMouseLeave" .== MouseEvent)) .+ ("onMouseMove" .== MouseEvent)) .+ ("onMouseOver" .== MouseEvent)) .+ ("onMouseOut" .== MouseEvent)) .+ ("onMouseUp" .== MouseEvent)) .+ r Source #

type DragEvents (r :: Row Type) = (((((((("onDrag" .== DragEvent) .+ ("onDragEnd" .== DragEvent)) .+ ("onDragExit" .== DragEvent)) .+ ("onDragEnter" .== DragEvent)) .+ ("onDragLeave" .== DragEvent)) .+ ("onDragOver" .== DragEvent)) .+ ("onDragStart" .== DragEvent)) .+ ("onDrop" .== DragEvent)) .+ r Source #

type TouchEvents (r :: Row Type) = (((((("onTouchCancel" .== TouchEvent) .+ ("onTouchEnd" .== TouchEvent)) .+ ("onTouchEnter" .== TouchEvent)) .+ ("onTouchLeave" .== TouchEvent)) .+ ("onTouchMove" .== TouchEvent)) .+ ("onTouchStart" .== TouchEvent)) .+ r Source #

type PointerEvents (r :: Row Type) = (((((((((("onPointerOver" .== PointerEvent) .+ ("onPointerEnter" .== PointerEvent)) .+ ("onPointerDown" .== PointerEvent)) .+ ("onPointerMove" .== PointerEvent)) .+ ("onPointerUp" .== PointerEvent)) .+ ("onPointerCancel" .== PointerEvent)) .+ ("onPointerOut" .== PointerEvent)) .+ ("onPointerLeave" .== PointerEvent)) .+ ("onGotPointerCapture" .== PointerEvent)) .+ ("onLostPointerCapture" .== PointerEvent)) .+ r Source #

type KeyEvents (r :: Row Type) = ((("onKeyDown" .== KeyboardEvent) .+ ("onKeyUp" .== KeyboardEvent)) .+ ("onKeyPress" .== KeyboardEvent)) .+ r Source #

type TransitionEvents (r :: Row Type) = ("onTransitionEnd" .== Event) .+ r Source #

type FocusEvents (r :: Row Type) = (((("onBlur" .== FocusEvent) .+ ("onFocus" .== FocusEvent)) .+ ("onFocusIn" .== FocusEvent)) .+ ("onFocusOut" .== FocusEvent)) .+ r Source #

type ClipboardEvents (r :: Row Type) = ((("onCopy" .== ClipboardEvent) .+ ("onCut" .== ClipboardEvent)) .+ ("onPaste" .== ClipboardEvent)) .+ r Source #

type HTMLa = Interactive (((((("download" .== Text) .+ ("href" .== Text)) .+ ("hrefLang" .== Text)) .+ ("rel" .== Text)) .+ ("target" .== Text)) .+ ("type" .== MediaType)) Source #

type HTMLaddress = Interactive ("onScroll" .== Event) Source #

type HTMLarea = Interactive ((((((((("coords" .== Text) .+ ("download" .== Text)) .+ ("href" .== Text)) .+ ("hrefLang" .== Text)) .+ ("media" .== Text)) .+ ("rel" .== Text)) .+ ("shape" .== Text)) .+ ("target" .== Text)) .+ ("type" .== MediaType)) Source #

type HTMLaudio = Interactive ((((((("autoplay" .== Bool) .+ ("controls" .== Bool)) .+ ("loop" .== Bool)) .+ ("muted" .== Bool)) .+ ("preload" .== PreloadValue)) .+ ("src" .== Text)) .+ ("onError" .== Event)) Source #

type HTMLbase = Noninteractive (("href" .== Text) .+ ("target" .== Text)) Source #

type HTMLblockquote = Interactive (("cite" .== Text) .+ ("onScroll" .== Event)) Source #

type HTMLbody = Interactive (((((((("onBeforeUnload" .== Event) .+ ("onHashChange" .== Event)) .+ ("onLoad" .== Event)) .+ ("onPageShow" .== Event)) .+ ("onPageHide" .== Event)) .+ ("onResize" .== Event)) .+ ("onScroll" .== Event)) .+ ("onUnload" .== Event)) Source #

type HTMLbutton = Interactive ((((((((((("autofocus" .== Bool) .+ ("disabled" .== Bool)) .+ ("form" .== Text)) .+ ("formAction" .== Text)) .+ ("formEncType" .== MediaType)) .+ ("formMethod" .== FormMethod)) .+ ("formNoValidate" .== Bool)) .+ ("formTarget" .== Text)) .+ ("name" .== Text)) .+ ("type" .== ButtonType)) .+ ("value" .== Text)) Source #

type HTMLcanvas = Interactive (("width" .== CSSPixel) .+ ("height" .== CSSPixel)) Source #

type HTMLcaption = Interactive ("onScroll" .== Event) Source #

type HTMLdd = Interactive ("onScroll" .== Event) Source #

type HTMLdel = Interactive (("cite" .== Text) .+ ("UTCTime" .== Text)) Source #

type HTMLdiv = Interactive ("onScroll" .== Event) Source #

type HTMLdl = Interactive ("onScroll" .== Event) Source #

type HTMLdt = Interactive ("onScroll" .== Event) Source #

type HTMLembed = Interactive (((("height" .== CSSPixel) .+ ("src" .== Text)) .+ ("type" .== MediaType)) .+ ("width" .== CSSPixel)) Source #

type HTMLfieldset = Interactive (((("disabled" .== Bool) .+ ("form" .== Text)) .+ ("name" .== Text)) .+ ("onScroll" .== Event)) Source #

type HTMLform = Interactive ((((((((((("acceptCharset" .== Text) .+ ("action" .== Text)) .+ ("autocomplete" .== AutocompleteType)) .+ ("enctype" .== MediaType)) .+ ("method" .== FormMethod)) .+ ("name" .== Text)) .+ ("noValidate" .== Bool)) .+ ("onReset" .== Event)) .+ ("onScroll" .== Event)) .+ ("onSubmit" .== Event)) .+ ("target" .== Text)) Source #

type HTMLh1 = Interactive ("onScroll" .== Event) Source #

type HTMLh2 = Interactive ("onScroll" .== Event) Source #

type HTMLh3 = Interactive ("onScroll" .== Event) Source #

type HTMLh4 = Interactive ("onScroll" .== Event) Source #

type HTMLh5 = Interactive ("onScroll" .== Event) Source #

type HTMLh6 = Interactive ("onScroll" .== Event) Source #

type HTMLhtml = Interactive ((("manifest" .== Text) .+ ("onScroll" .== Event)) .+ ("xmlns" .== Text)) Source #

type HTMLiframe = Noninteractive ((((((("height" .== CSSPixel) .+ ("name" .== Text)) .+ ("onLoad" .== Event)) .+ ("sandbox" .== Text)) .+ ("src" .== Text)) .+ ("srcDoc" .== Text)) .+ ("width" .== CSSPixel)) Source #

type HTMLimg = Interactive ((((((((((("alt" .== Text) .+ ("crossOrigin" .== CrossOriginValue)) .+ ("height" .== CSSPixel)) .+ ("isMap" .== Bool)) .+ ("longDesc" .== Text)) .+ ("onAbort" .== Event)) .+ ("onError" .== Event)) .+ ("onLoad" .== Event)) .+ ("src" .== Text)) .+ ("useMap" .== Text)) .+ ("width" .== CSSPixel)) Source #

type HTMLinput = Interactive (((((((((((((((((((((((((((((((((((("accept" .== InputAcceptType) .+ ("autocomplete" .== AutocompleteType)) .+ ("autofocus" .== Bool)) .+ ("checked" .== Bool)) .+ ("disabled" .== Bool)) .+ ("form" .== Text)) .+ ("formAction" .== Text)) .+ ("formEncType" .== MediaType)) .+ ("formMethod" .== FormMethod)) .+ ("formNoValidate" .== Bool)) .+ ("formTarget" .== Text)) .+ ("height" .== CSSPixel)) .+ ("list" .== Text)) .+ ("max" .== Double)) .+ ("min" .== Double)) .+ ("maxLength" .== Int)) .+ ("minLength" .== Int)) .+ ("multiple" .== Bool)) .+ ("name" .== Text)) .+ ("onAbort" .== Event)) .+ ("onChange" .== Event)) .+ ("onError" .== Event)) .+ ("onInvalid" .== Event)) .+ ("onLoad" .== Event)) .+ ("onSearch" .== Event)) .+ ("onSelect" .== Event)) .+ ("pattern" .== Text)) .+ ("placeholder" .== Text)) .+ ("readOnly" .== Bool)) .+ ("required" .== Bool)) .+ ("size" .== Int)) .+ ("src" .== Text)) .+ ("step" .== StepValue)) .+ ("type" .== InputType)) .+ ("value" .== Text)) .+ ("width" .== CSSPixel)) Source #

type HTMLins = Interactive (("cite" .== Text) .+ ("UTCTime" .== UTCTime)) Source #

type HTMLlabel = Interactive (("for" .== Text) .+ ("form" .== Text)) Source #

type HTMLli = Interactive (("value" .== Int) .+ ("onScroll" .== Event)) Source #

type HTMLlink = Noninteractive (((((((("crossOrigin" .== CrossOriginValue) .+ ("href" .== Text)) .+ ("hreflang" .== Text)) .+ ("media" .== Text)) .+ ("onLoad" .== Event)) .+ ("rel" .== Text)) .+ ("sizes" .== Text)) .+ ("type" .== MediaType)) Source #

type HTMLmenu = Interactive ((("label" .== Text) .+ ("onScroll" .== Event)) .+ ("type" .== MenuType)) Source #

type HTMLmenuitem = Interactive (((((((("checked" .== Bool) .+ ("command" .== Text)) .+ ("default" .== Bool)) .+ ("disabled" .== Bool)) .+ ("icon" .== Text)) .+ ("label" .== Text)) .+ ("radioGroup" .== Text)) .+ ("type" .== MenuitemType)) Source #

type HTMLmeta = Noninteractive (((("charset" .== Text) .+ ("content" .== Text)) .+ ("httpEquiv" .== Text)) .+ ("name" .== Text)) Source #

type HTMLmeter = Interactive ((((((("form" .== Text) .+ ("high" .== Double)) .+ ("low" .== Double)) .+ ("max" .== Double)) .+ ("min" .== Double)) .+ ("optimum" .== Double)) .+ ("value" .== Double)) Source #

type HTMLobject = Interactive ((((((((("data" .== Text) .+ ("form" .== Text)) .+ ("height" .== CSSPixel)) .+ ("name" .== Text)) .+ ("onError" .== Event)) .+ ("onScroll" .== Event)) .+ ("type" .== MediaType)) .+ ("useMap" .== Text)) .+ ("width" .== CSSPixel)) Source #

type HTMLol = Interactive (((("onScroll" .== Event) .+ ("reversed" .== Bool)) .+ ("start" .== Int)) .+ ("type" .== OrderedListType)) Source #

type HTMLoptgroup = Interactive (("disabled" .== Bool) .+ ("label" .== Text)) Source #

type HTMLoption = Interactive (((("disabled" .== Bool) .+ ("label" .== Text)) .+ ("selected" .== Bool)) .+ ("value" .== Text)) Source #

type HTMLoutput = Interactive ((("for" .== Text) .+ ("form" .== Text)) .+ ("name" .== Text)) Source #

type HTMLp = Interactive ("onScroll" .== Event) Source #

type HTMLparam = Noninteractive (("name" .== Text) .+ ("value" .== Text)) Source #

type HTMLpre = Interactive ("onScroll" .== Event) Source #

type HTMLprogress = Interactive (("max" .== Double) .+ ("value" .== Double)) Source #

type HTMLq = Interactive ("cite" .== Text) Source #

type HTMLscript = Noninteractive ((((((("async" .== Bool) .+ ("charset" .== Text)) .+ ("defer" .== Bool)) .+ ("onError" .== Event)) .+ ("onLoad" .== Event)) .+ ("src" .== Text)) .+ ("type" .== MediaType)) Source #

type HTMLselect = Interactive ((((((((((("autofocus" .== Bool) .+ ("disabled" .== Bool)) .+ ("form" .== Text)) .+ ("multiple" .== Bool)) .+ ("name" .== Text)) .+ ("onChange" .== Event)) .+ ("onScroll" .== Event)) .+ ("required" .== Bool)) .+ ("selectedIndex" .== Int)) .+ ("size" .== Int)) .+ ("value" .== Text)) Source #

type HTMLsource = Interactive ((("media" .== Text) .+ ("src" .== Text)) .+ ("type" .== MediaType)) Source #

type HTMLstyle = Noninteractive ((((("media" .== Text) .+ ("onError" .== Event)) .+ ("onLoad" .== Event)) .+ ("scoped" .== Bool)) .+ ("type" .== MediaType)) Source #

type HTMLtable = Interactive ("sortable" .== Bool) Source #

type HTMLtbody = Interactive ("onScroll" .== Event) Source #

type HTMLtd = Interactive ((("colSpan" .== Int) .+ ("headers" .== Text)) .+ ("rowSpan" .== Int)) Source #

type HTMLtextarea = Interactive ((((((((((((((("autofocus" .== Bool) .+ ("cols" .== Int)) .+ ("disabled" .== Bool)) .+ ("form" .== Text)) .+ ("maxLength" .== Int)) .+ ("name" .== Text)) .+ ("onChange" .== Event)) .+ ("onScroll" .== Event)) .+ ("onSelect" .== Event)) .+ ("placeholder" .== Text)) .+ ("readOnly" .== Bool)) .+ ("required" .== Bool)) .+ ("rows" .== Int)) .+ ("value" .== Text)) .+ ("wrap" .== WrapValue)) Source #

type HTMLtfoot = Interactive ("onScroll" .== Event) Source #

type HTMLth = Interactive (((((("abbr" .== Text) .+ ("colSpan" .== Int)) .+ ("headers" .== Text)) .+ ("rowSpan" .== Int)) .+ ("scope" .== ScopeValue)) .+ ("sorted" .== Bool)) Source #

type HTMLtime = Interactive ("UTCTime" .== UTCTime) Source #

type HTMLtrack = Interactive ((((("default" .== Bool) .+ ("kind" .== KindValue)) .+ ("label" .== Text)) .+ ("src" .== Text)) .+ ("srcLang" .== Text)) Source #

type HTMLul = Interactive ("onScroll" .== Event) Source #

type HTMLvideo = Interactive ((((((((((("autoplay" .== Bool) .+ ("controls" .== Bool)) .+ ("height" .== CSSPixel)) .+ ("loop" .== Bool)) .+ ("muted" .== Bool)) .+ ("poster" .== Text)) .+ ("preload" .== PreloadValue)) .+ ("src" .== Text)) .+ ("width" .== CSSPixel)) .+ ("type" .== MediaType)) .+ ("onError" .== Event)) Source #