Module

Flame.HTML.Element

Package
purescript-flame
Repository
easafe/purescript-flame

Definition of HTML elements

#ToHtml Source

class ToHtml a b c | a -> b where

ToHtml simplifies element creation by automating common tag operations

  • tag "my-tag" [] becomes short for tag [id "my-tag"] []
  • tag [] "content" becomes short for tag [] [text "content"]
  • elements with a single attribute or children need not as well to use lists: tag (enabled True) (tag attrs children)

Members

Instances

#ToElement Source

type ToElement a b h = ToHtml a h NodeData => ToHtml b h Element => a -> b -> Element h

#ToElement_ Source

type ToElement_ b h = ToHtml b h Element => b -> Element h

#ToElement' Source

type ToElement' a h = ToHtml a h NodeData => a -> Element h

#createElement Source

createElement :: forall h b a. Tag -> ToElement a b h

Creates a HTML element with attributes and children nodes

#createElement_ Source

createElement_ :: forall h b. Tag -> ToElement_ b h

Creates a HTML element with no attributes but children nodes

#createElement' Source

createElement' :: forall h a. Tag -> ToElement' a h

Creates a HTML element with attributes but no children nodes

#createEmptyElement Source

createEmptyElement :: forall h. Tag -> Element h

Creates a HTML element with no attributes and no children nodes

#text Source

text :: forall h. String -> Element h

Creates a text node

#hr Source

hr :: forall h. Element h

#hr_ Source

hr_ :: forall h b. ToElement_ b h

#hr' Source

hr' :: forall h a. ToElement' a h

#br Source

br :: forall h. Element h

#br' Source

br' :: forall h a. ToElement' a h

#input Source

input :: forall h a. ToElement' a h

#input_ Source

input_ :: forall h a. ToElement_ a h

#a Source

a :: forall h b a. ToElement a b h

#a_ Source

a_ :: forall h b. ToElement_ b h

#a' Source

a' :: forall h a. ToElement' a h

#address Source

address :: forall h b a. ToElement a b h

#address_ Source

address_ :: forall h b. ToElement_ b h

#address' Source

address' :: forall h a. ToElement' a h

#area Source

area :: forall h b a. ToElement a b h

#area_ Source

area_ :: forall h b. ToElement_ b h

#area' Source

area' :: forall h a. ToElement' a h

#article Source

article :: forall h b a. ToElement a b h

#article_ Source

article_ :: forall h b. ToElement_ b h

#article' Source

article' :: forall h a. ToElement' a h

#aside Source

aside :: forall h b a. ToElement a b h

#aside_ Source

aside_ :: forall h b. ToElement_ b h

#aside' Source

aside' :: forall h a. ToElement' a h

#audio Source

audio :: forall h b a. ToElement a b h

#audio_ Source

audio_ :: forall h b. ToElement_ b h

#audio' Source

audio' :: forall h a. ToElement' a h

#b Source

b :: forall h b a. ToElement a b h

#b_ Source

b_ :: forall h b. ToElement_ b h

#b' Source

b' :: forall h a. ToElement' a h

#base Source

base :: forall h b a. ToElement a b h

#base_ Source

base_ :: forall h b. ToElement_ b h

#base' Source

base' :: forall h a. ToElement' a h

#bdi Source

bdi :: forall h b a. ToElement a b h

#bdi_ Source

bdi_ :: forall h b. ToElement_ b h

#bdi' Source

bdi' :: forall h a. ToElement' a h

#bdo Source

bdo :: forall h b a. ToElement a b h

#bdo_ Source

bdo_ :: forall h b. ToElement_ b h

#bdo' Source

bdo' :: forall h a. ToElement' a h

#blockquote Source

blockquote :: forall h b a. ToElement a b h

#blockquote_ Source

blockquote_ :: forall h b. ToElement_ b h

#blockquote' Source

blockquote' :: forall h a. ToElement' a h

#body Source

body :: forall h b a. ToElement a b h

#body_ Source

body_ :: forall h b. ToElement_ b h

#body' Source

body' :: forall h a. ToElement' a h

#button Source

button :: forall h b a. ToElement a b h

#button_ Source

button_ :: forall h b. ToElement_ b h

#button' Source

button' :: forall h a. ToElement' a h

#canvas Source

canvas :: forall h b a. ToElement a b h

#canvas_ Source

canvas_ :: forall h b. ToElement_ b h

#canvas' Source

canvas' :: forall h a. ToElement' a h

#caption Source

caption :: forall h b a. ToElement a b h

#caption_ Source

caption_ :: forall h b. ToElement_ b h

#caption' Source

caption' :: forall h a. ToElement' a h

#cite Source

cite :: forall h b a. ToElement a b h

#cite_ Source

cite_ :: forall h b. ToElement_ b h

#cite' Source

cite' :: forall h a. ToElement' a h

#code Source

code :: forall h b a. ToElement a b h

#code_ Source

code_ :: forall h b. ToElement_ b h

#code' Source

code' :: forall h a. ToElement' a h

#col Source

col :: forall h b a. ToElement a b h

#col_ Source

col_ :: forall h b. ToElement_ b h

#col' Source

col' :: forall h a. ToElement' a h

#colgroup Source

colgroup :: forall h b a. ToElement a b h

#colgroup_ Source

colgroup_ :: forall h b. ToElement_ b h

#colgroup' Source

colgroup' :: forall h a. ToElement' a h

#data_ Source

data_ :: forall h b. ToElement_ b h

#data' Source

data' :: forall h a. ToElement' a h

#datalist Source

datalist :: forall h b a. ToElement a b h

#datalist_ Source

datalist_ :: forall h b. ToElement_ b h

#datalist' Source

datalist' :: forall h a. ToElement' a h

#dd Source

dd :: forall h b a. ToElement a b h

#dd_ Source

dd_ :: forall h b. ToElement_ b h

#dd' Source

dd' :: forall h a. ToElement' a h

#del Source

del :: forall h b a. ToElement a b h

#del_ Source

del_ :: forall h b. ToElement_ b h

#del' Source

del' :: forall h a. ToElement' a h

#details Source

details :: forall h b a. ToElement a b h

#details_ Source

details_ :: forall h b. ToElement_ b h

#details' Source

details' :: forall h a. ToElement' a h

#dfn Source

dfn :: forall h b a. ToElement a b h

#dfn_ Source

dfn_ :: forall h b. ToElement_ b h

#dfn' Source

dfn' :: forall h a. ToElement' a h

#dialog Source

dialog :: forall h b a. ToElement a b h

#dialog_ Source

dialog_ :: forall h b. ToElement_ b h

#dialog' Source

dialog' :: forall h a. ToElement' a h

#div Source

div :: forall h b a. ToElement a b h

#div_ Source

div_ :: forall h b. ToElement_ b h

#div' Source

div' :: forall h a. ToElement' a h

#dl Source

dl :: forall h b a. ToElement a b h

#dl_ Source

dl_ :: forall h b. ToElement_ b h

#dl' Source

dl' :: forall h a. ToElement' a h

#dt Source

dt :: forall h b a. ToElement a b h

#dt_ Source

dt_ :: forall h b. ToElement_ b h

#dt' Source

dt' :: forall h a. ToElement' a h

#em Source

em :: forall h b a. ToElement a b h

#em_ Source

em_ :: forall h b. ToElement_ b h

#em' Source

em' :: forall h a. ToElement' a h

#embed Source

embed :: forall h b a. ToElement a b h

#embed_ Source

embed_ :: forall h b. ToElement_ b h

#embed' Source

embed' :: forall h a. ToElement' a h

#fieldset Source

fieldset :: forall h b a. ToElement a b h

#fieldset_ Source

fieldset_ :: forall h b. ToElement_ b h

#fieldset' Source

fieldset' :: forall h a. ToElement' a h

#figure Source

figure :: forall h b a. ToElement a b h

#figure_ Source

figure_ :: forall h b. ToElement_ b h

#figure' Source

figure' :: forall h a. ToElement' a h

#footer Source

footer :: forall h b a. ToElement a b h

#footer_ Source

footer_ :: forall h b. ToElement_ b h

#footer' Source

footer' :: forall h a. ToElement' a h

#form Source

form :: forall h b a. ToElement a b h

#form_ Source

form_ :: forall h b. ToElement_ b h

#form' Source

form' :: forall h a. ToElement' a h

#h1 Source

h1 :: forall h b a. ToElement a b h

#h1_ Source

h1_ :: forall h b. ToElement_ b h

#h1' Source

h1' :: forall h a. ToElement' a h

#h2 Source

h2 :: forall h b a. ToElement a b h

#h2_ Source

h2_ :: forall h b. ToElement_ b h

#h2' Source

h2' :: forall h a. ToElement' a h

#h3 Source

h3 :: forall h b a. ToElement a b h

#h3_ Source

h3_ :: forall h b. ToElement_ b h

#h3' Source

h3' :: forall h a. ToElement' a h

#h4 Source

h4 :: forall h b a. ToElement a b h

#h4_ Source

h4_ :: forall h b. ToElement_ b h

#h4' Source

h4' :: forall h a. ToElement' a h

#h5 Source

h5 :: forall h b a. ToElement a b h

#h5_ Source

h5_ :: forall h b. ToElement_ b h

#h5' Source

h5' :: forall h a. ToElement' a h

#h6 Source

h6 :: forall h b a. ToElement a b h

#h6_ Source

h6_ :: forall h b. ToElement_ b h

#h6' Source

h6' :: forall h a. ToElement' a h

#head Source

head :: forall h b a. ToElement a b h

#head_ Source

head_ :: forall h b. ToElement_ b h

#head' Source

head' :: forall h a. ToElement' a h

#header Source

header :: forall h b a. ToElement a b h

#header_ Source

header_ :: forall h b. ToElement_ b h

#header' Source

header' :: forall h a. ToElement' a h

#hgroup Source

hgroup :: forall h b a. ToElement a b h

#hgroup_ Source

hgroup_ :: forall h b. ToElement_ b h

#hgroup' Source

hgroup' :: forall h a. ToElement' a h

#html Source

html :: forall h b a. ToElement a b h

#html_ Source

html_ :: forall h b. ToElement_ b h

#html' Source

html' :: forall h a. ToElement' a h

#i Source

i :: forall h b a. ToElement a b h

#i_ Source

i_ :: forall h b. ToElement_ b h

#i' Source

i' :: forall h a. ToElement' a h

#iframe Source

iframe :: forall h b a. ToElement a b h

#iframe_ Source

iframe_ :: forall h b. ToElement_ b h

#iframe' Source

iframe' :: forall h a. ToElement' a h

#ins Source

ins :: forall h b a. ToElement a b h

#ins_ Source

ins_ :: forall h b. ToElement_ b h

#ins' Source

ins' :: forall h a. ToElement' a h

#keygen Source

keygen :: forall h b a. ToElement a b h

#keygen_ Source

keygen_ :: forall h b. ToElement_ b h

#keygen' Source

keygen' :: forall h a. ToElement' a h

#label Source

label :: forall h b a. ToElement a b h

#label_ Source

label_ :: forall h b. ToElement_ b h

#label' Source

label' :: forall h a. ToElement' a h

#legend Source

legend :: forall h b a. ToElement a b h

#legend_ Source

legend_ :: forall h b. ToElement_ b h

#legend' Source

legend' :: forall h a. ToElement' a h

#li Source

li :: forall h b a. ToElement a b h

#li_ Source

li_ :: forall h b. ToElement_ b h

#li' Source

li' :: forall h a. ToElement' a h

#main Source

main :: forall h b a. ToElement a b h

#main_ Source

main_ :: forall h b. ToElement_ b h

#main' Source

main' :: forall h a. ToElement' a h

#map Source

map :: forall h b a. ToElement a b h

#map_ Source

map_ :: forall h b. ToElement_ b h

#map' Source

map' :: forall h a. ToElement' a h

#mark Source

mark :: forall h b a. ToElement a b h

#mark_ Source

mark_ :: forall h b. ToElement_ b h

#mark' Source

mark' :: forall h a. ToElement' a h

#menu Source

menu :: forall h b a. ToElement a b h

#menu_ Source

menu_ :: forall h b. ToElement_ b h

#menu' Source

menu' :: forall h a. ToElement' a h

#menuitem Source

menuitem :: forall h b a. ToElement a b h

#menuitem_ Source

menuitem_ :: forall h b. ToElement_ b h

#menuitem' Source

menuitem' :: forall h a. ToElement' a h

#meta Source

meta :: forall h a. ToElement' a h

#meter Source

meter :: forall h b a. ToElement a b h

#meter_ Source

meter_ :: forall h b. ToElement_ b h

#meter' Source

meter' :: forall h a. ToElement' a h

#nav Source

nav :: forall h b a. ToElement a b h

#nav_ Source

nav_ :: forall h b. ToElement_ b h

#nav' Source

nav' :: forall h a. ToElement' a h

#noscript Source

noscript :: forall h b a. ToElement a b h

#noscript_ Source

noscript_ :: forall h b. ToElement_ b h

#noscript' Source

noscript' :: forall h a. ToElement' a h

#object Source

object :: forall h b a. ToElement a b h

#object_ Source

object_ :: forall h b. ToElement_ b h

#object' Source

object' :: forall h a. ToElement' a h

#ol Source

ol :: forall h b a. ToElement a b h

#ol_ Source

ol_ :: forall h b. ToElement_ b h

#ol' Source

ol' :: forall h a. ToElement' a h

#img Source

img :: forall h b a. ToElement a b h

#img' Source

img' :: forall h a. ToElement' a h

#optgroup Source

optgroup :: forall h b a. ToElement a b h

#optgroup_ Source

optgroup_ :: forall h b. ToElement_ b h

#optgroup' Source

optgroup' :: forall h a. ToElement' a h

#option Source

option :: forall h b a. ToElement a b h

#option_ Source

option_ :: forall h b. ToElement_ b h

#option' Source

option' :: forall h a. ToElement' a h

#output Source

output :: forall h b a. ToElement a b h

#output_ Source

output_ :: forall h b. ToElement_ b h

#output' Source

output' :: forall h a. ToElement' a h

#p Source

p :: forall h b a. ToElement a b h

#p_ Source

p_ :: forall h b. ToElement_ b h

#p' Source

p' :: forall h a. ToElement' a h

#param Source

param :: forall h b a. ToElement a b h

#param_ Source

param_ :: forall h b. ToElement_ b h

#param' Source

param' :: forall h a. ToElement' a h

#pre Source

pre :: forall h b a. ToElement a b h

#pre_ Source

pre_ :: forall h b. ToElement_ b h

#pre' Source

pre' :: forall h a. ToElement' a h

#progress Source

progress :: forall h b a. ToElement a b h

#progress_ Source

progress_ :: forall h b. ToElement_ b h

#progress' Source

progress' :: forall h a. ToElement' a h

#q Source

q :: forall h b a. ToElement a b h

#q_ Source

q_ :: forall h b. ToElement_ b h

#q' Source

q' :: forall h a. ToElement' a h

#rb Source

rb :: forall h b a. ToElement a b h

#rb_ Source

rb_ :: forall h b. ToElement_ b h

#rb' Source

rb' :: forall h a. ToElement' a h

#rp Source

rp :: forall h b a. ToElement a b h

#rp_ Source

rp_ :: forall h b. ToElement_ b h

#rp' Source

rp' :: forall h a. ToElement' a h

#rt Source

rt :: forall h b a. ToElement a b h

#rt_ Source

rt_ :: forall h b. ToElement_ b h

#rt' Source

rt' :: forall h a. ToElement' a h

#rtc Source

rtc :: forall h b a. ToElement a b h

#rtc_ Source

rtc_ :: forall h b. ToElement_ b h

#rtc' Source

rtc' :: forall h a. ToElement' a h

#ruby Source

ruby :: forall h b a. ToElement a b h

#ruby_ Source

ruby_ :: forall h b. ToElement_ b h

#ruby' Source

ruby' :: forall h a. ToElement' a h

#s Source

s :: forall h b a. ToElement a b h

#s_ Source

s_ :: forall h b. ToElement_ b h

#s' Source

s' :: forall h a. ToElement' a h

#section Source

section :: forall h b a. ToElement a b h

#section_ Source

section_ :: forall h b. ToElement_ b h

#section' Source

section' :: forall h a. ToElement' a h

#select Source

select :: forall h b a. ToElement a b h

#select_ Source

select_ :: forall h b. ToElement_ b h

#select' Source

select' :: forall h a. ToElement' a h

#small Source

small :: forall h b a. ToElement a b h

#small_ Source

small_ :: forall h b. ToElement_ b h

#small' Source

small' :: forall h a. ToElement' a h

#source Source

source :: forall h b a. ToElement a b h

#source_ Source

source_ :: forall h b. ToElement_ b h

#source' Source

source' :: forall h a. ToElement' a h

#span Source

span :: forall h b a. ToElement a b h

#span_ Source

span_ :: forall h b. ToElement_ b h

#span' Source

span' :: forall h a. ToElement' a h

#strong Source

strong :: forall h b a. ToElement a b h

#strong_ Source

strong_ :: forall h b. ToElement_ b h

#strong' Source

strong' :: forall h a. ToElement' a h

#style Source

style :: forall h b a. ToElement a b h

#style_ Source

style_ :: forall h b. ToElement_ b h

#style' Source

style' :: forall h a. ToElement' a h

#sub Source

sub :: forall h b a. ToElement a b h

#sub_ Source

sub_ :: forall h b. ToElement_ b h

#sub' Source

sub' :: forall h a. ToElement' a h

#summary Source

summary :: forall h b a. ToElement a b h

#summary_ Source

summary_ :: forall h b. ToElement_ b h

#summary' Source

summary' :: forall h a. ToElement' a h

#sup Source

sup :: forall h b a. ToElement a b h

#sup_ Source

sup_ :: forall h b. ToElement_ b h

#sup' Source

sup' :: forall h a. ToElement' a h

#table Source

table :: forall h b a. ToElement a b h

#table_ Source

table_ :: forall h b. ToElement_ b h

#table' Source

table' :: forall h a. ToElement' a h

#tbody Source

tbody :: forall h b a. ToElement a b h

#tbody_ Source

tbody_ :: forall h b. ToElement_ b h

#tbody' Source

tbody' :: forall h a. ToElement' a h

#td Source

td :: forall h b a. ToElement a b h

#td_ Source

td_ :: forall h b. ToElement_ b h

#td' Source

td' :: forall h a. ToElement' a h

#template Source

template :: forall h b a. ToElement a b h

#template_ Source

template_ :: forall h b. ToElement_ b h

#template' Source

template' :: forall h a. ToElement' a h

#textarea Source

textarea :: forall h b a. ToElement a b h

#textarea_ Source

textarea_ :: forall h b. ToElement_ b h

#textarea' Source

textarea' :: forall h a. ToElement' a h

#tfoot Source

tfoot :: forall h b a. ToElement a b h

#tfoot_ Source

tfoot_ :: forall h b. ToElement_ b h

#tfoot' Source

tfoot' :: forall h a. ToElement' a h

#th Source

th :: forall h b a. ToElement a b h

#th_ Source

th_ :: forall h b. ToElement_ b h

#th' Source

th' :: forall h a. ToElement' a h

#thead Source

thead :: forall h b a. ToElement a b h

#thead_ Source

thead_ :: forall h b. ToElement_ b h

#thead' Source

thead' :: forall h a. ToElement' a h

#time Source

time :: forall h b a. ToElement a b h

#time_ Source

time_ :: forall h b. ToElement_ b h

#time' Source

time' :: forall h a. ToElement' a h

#title Source

title :: forall h b. ToElement_ b h

#tr Source

tr :: forall h b a. ToElement a b h

#tr_ Source

tr_ :: forall h b. ToElement_ b h

#tr' Source

tr' :: forall h a. ToElement' a h

#track Source

track :: forall h b a. ToElement a b h

#track_ Source

track_ :: forall h b. ToElement_ b h

#track' Source

track' :: forall h a. ToElement' a h

#u Source

u :: forall h b a. ToElement a b h

#u_ Source

u_ :: forall h b. ToElement_ b h

#u' Source

u' :: forall h a. ToElement' a h

#ul Source

ul :: forall h b a. ToElement a b h

#ul_ Source

ul_ :: forall h b. ToElement_ b h

#ul' Source

ul' :: forall h a. ToElement' a h

#var Source

var :: forall h b a. ToElement a b h

#var_ Source

var_ :: forall h b. ToElement_ b h

#var' Source

var' :: forall h a. ToElement' a h

#video Source

video :: forall h b a. ToElement a b h

#video_ Source

video_ :: forall h b. ToElement_ b h

#video' Source

video' :: forall h a. ToElement' a h

#wbr Source

wbr :: forall h b a. ToElement a b h

#wbr_ Source

wbr_ :: forall h b. ToElement_ b h

#wbr' Source

wbr' :: forall h a. ToElement' a h

#animate Source

animate :: forall h b a. ToElement a b h

#animate_ Source

animate_ :: forall h b. ToElement_ b h

#animate' Source

animate' :: forall h a. ToElement' a h

#animateColor Source

animateColor :: forall h b a. ToElement a b h

#animateColor_ Source

animateColor_ :: forall h b. ToElement_ b h

#animateColor' Source

animateColor' :: forall h a. ToElement' a h

#animateMotion Source

animateMotion :: forall h b a. ToElement a b h

#animateMotion_ Source

animateMotion_ :: forall h b. ToElement_ b h

#animateMotion' Source

animateMotion' :: forall h a. ToElement' a h

#animateTransform Source

animateTransform :: forall h b a. ToElement a b h

#animateTransform_ Source

animateTransform_ :: forall h b. ToElement_ b h

#animateTransform' Source

animateTransform' :: forall h a. ToElement' a h

#circle Source

circle :: forall h b a. ToElement a b h

#circle_ Source

circle_ :: forall h b. ToElement_ b h

#circle' Source

circle' :: forall h a. ToElement' a h

#clipPath Source

clipPath :: forall h b a. ToElement a b h

#clipPath_ Source

clipPath_ :: forall h b. ToElement_ b h

#clipPath' Source

clipPath' :: forall h a. ToElement' a h

#colorProfile Source

colorProfile :: forall h b a. ToElement a b h

#colorProfile_ Source

colorProfile_ :: forall h b. ToElement_ b h

#colorProfile' Source

colorProfile' :: forall h a. ToElement' a h

#cursor Source

cursor :: forall h b a. ToElement a b h

#cursor_ Source

cursor_ :: forall h b. ToElement_ b h

#cursor' Source

cursor' :: forall h a. ToElement' a h

#defs Source

defs :: forall h b a. ToElement a b h

#defs_ Source

defs_ :: forall h b. ToElement_ b h

#defs' Source

defs' :: forall h a. ToElement' a h

#desc Source

desc :: forall h b a. ToElement a b h

#desc_ Source

desc_ :: forall h b. ToElement_ b h

#desc' Source

desc' :: forall h a. ToElement' a h

#discard Source

discard :: forall h b a. ToElement a b h

#discard_ Source

discard_ :: forall h b. ToElement_ b h

#discard' Source

discard' :: forall h a. ToElement' a h

#ellipse Source

ellipse :: forall h b a. ToElement a b h

#ellipse_ Source

ellipse_ :: forall h b. ToElement_ b h

#ellipse' Source

ellipse' :: forall h a. ToElement' a h

#feBlend Source

feBlend :: forall h b a. ToElement a b h

#feBlend_ Source

feBlend_ :: forall h b. ToElement_ b h

#feBlend' Source

feBlend' :: forall h a. ToElement' a h

#feColorMatrix Source

feColorMatrix :: forall h b a. ToElement a b h

#feColorMatrix_ Source

feColorMatrix_ :: forall h b. ToElement_ b h

#feColorMatrix' Source

feColorMatrix' :: forall h a. ToElement' a h

#feComponentTransfer Source

feComponentTransfer :: forall h b a. ToElement a b h

#feComponentTransfer_ Source

feComponentTransfer_ :: forall h b. ToElement_ b h

#feComponentTransfer' Source

feComponentTransfer' :: forall h a. ToElement' a h

#feComposite Source

feComposite :: forall h b a. ToElement a b h

#feComposite_ Source

feComposite_ :: forall h b. ToElement_ b h

#feComposite' Source

feComposite' :: forall h a. ToElement' a h

#feConvolveMatrix Source

feConvolveMatrix :: forall h b a. ToElement a b h

#feConvolveMatrix_ Source

feConvolveMatrix_ :: forall h b. ToElement_ b h

#feConvolveMatrix' Source

feConvolveMatrix' :: forall h a. ToElement' a h

#feDiffuseLighting Source

feDiffuseLighting :: forall h b a. ToElement a b h

#feDiffuseLighting_ Source

feDiffuseLighting_ :: forall h b. ToElement_ b h

#feDiffuseLighting' Source

feDiffuseLighting' :: forall h a. ToElement' a h

#feDisplacementMap Source

feDisplacementMap :: forall h b a. ToElement a b h

#feDisplacementMap_ Source

feDisplacementMap_ :: forall h b. ToElement_ b h

#feDisplacementMap' Source

feDisplacementMap' :: forall h a. ToElement' a h

#feDistantLight Source

feDistantLight :: forall h b a. ToElement a b h

#feDistantLight_ Source

feDistantLight_ :: forall h b. ToElement_ b h

#feDistantLight' Source

feDistantLight' :: forall h a. ToElement' a h

#feDropShadow Source

feDropShadow :: forall h b a. ToElement a b h

#feDropShadow_ Source

feDropShadow_ :: forall h b. ToElement_ b h

#feDropShadow' Source

feDropShadow' :: forall h a. ToElement' a h

#feFlood Source

feFlood :: forall h b a. ToElement a b h

#feFlood_ Source

feFlood_ :: forall h b. ToElement_ b h

#feFlood' Source

feFlood' :: forall h a. ToElement' a h

#feFuncA Source

feFuncA :: forall h b a. ToElement a b h

#feFuncA_ Source

feFuncA_ :: forall h b. ToElement_ b h

#feFuncA' Source

feFuncA' :: forall h a. ToElement' a h

#feFuncB Source

feFuncB :: forall h b a. ToElement a b h

#feFuncB_ Source

feFuncB_ :: forall h b. ToElement_ b h

#feFuncB' Source

feFuncB' :: forall h a. ToElement' a h

#feFuncG Source

feFuncG :: forall h b a. ToElement a b h

#feFuncG_ Source

feFuncG_ :: forall h b. ToElement_ b h

#feFuncG' Source

feFuncG' :: forall h a. ToElement' a h

#feFuncR Source

feFuncR :: forall h b a. ToElement a b h

#feFuncR_ Source

feFuncR_ :: forall h b. ToElement_ b h

#feFuncR' Source

feFuncR' :: forall h a. ToElement' a h

#feGaussianBlur Source

feGaussianBlur :: forall h b a. ToElement a b h

#feGaussianBlur_ Source

feGaussianBlur_ :: forall h b. ToElement_ b h

#feGaussianBlur' Source

feGaussianBlur' :: forall h a. ToElement' a h

#feImage Source

feImage :: forall h b a. ToElement a b h

#feImage_ Source

feImage_ :: forall h b. ToElement_ b h

#feImage' Source

feImage' :: forall h a. ToElement' a h

#feMerge Source

feMerge :: forall h b a. ToElement a b h

#feMerge_ Source

feMerge_ :: forall h b. ToElement_ b h

#feMerge' Source

feMerge' :: forall h a. ToElement' a h

#feMergeNode Source

feMergeNode :: forall h b a. ToElement a b h

#feMergeNode_ Source

feMergeNode_ :: forall h b. ToElement_ b h

#feMergeNode' Source

feMergeNode' :: forall h a. ToElement' a h

#feMorphology Source

feMorphology :: forall h b a. ToElement a b h

#feMorphology_ Source

feMorphology_ :: forall h b. ToElement_ b h

#feMorphology' Source

feMorphology' :: forall h a. ToElement' a h

#feOffset Source

feOffset :: forall h b a. ToElement a b h

#feOffset_ Source

feOffset_ :: forall h b. ToElement_ b h

#feOffset' Source

feOffset' :: forall h a. ToElement' a h

#fePointLight Source

fePointLight :: forall h b a. ToElement a b h

#fePointLight_ Source

fePointLight_ :: forall h b. ToElement_ b h

#fePointLight' Source

fePointLight' :: forall h a. ToElement' a h

#feSpecularLighting Source

feSpecularLighting :: forall h b a. ToElement a b h

#feSpecularLighting_ Source

feSpecularLighting_ :: forall h b. ToElement_ b h

#feSpecularLighting' Source

feSpecularLighting' :: forall h a. ToElement' a h

#feSpotLight Source

feSpotLight :: forall h b a. ToElement a b h

#feSpotLight_ Source

feSpotLight_ :: forall h b. ToElement_ b h

#feSpotLight' Source

feSpotLight' :: forall h a. ToElement' a h

#feTile Source

feTile :: forall h b a. ToElement a b h

#feTile_ Source

feTile_ :: forall h b. ToElement_ b h

#feTile' Source

feTile' :: forall h a. ToElement' a h

#feTurbulence Source

feTurbulence :: forall h b a. ToElement a b h

#feTurbulence_ Source

feTurbulence_ :: forall h b. ToElement_ b h

#feTurbulence' Source

feTurbulence' :: forall h a. ToElement' a h

#filter Source

filter :: forall h b a. ToElement a b h

#filter_ Source

filter_ :: forall h b. ToElement_ b h

#filter' Source

filter' :: forall h a. ToElement' a h

#font Source

font :: forall h b a. ToElement a b h

#font_ Source

font_ :: forall h b. ToElement_ b h

#font' Source

font' :: forall h a. ToElement' a h

#fontFace Source

fontFace :: forall h b a. ToElement a b h

#fontFace_ Source

fontFace_ :: forall h b. ToElement_ b h

#fontFace' Source

fontFace' :: forall h a. ToElement' a h

#fontFaceFormat Source

fontFaceFormat :: forall h b a. ToElement a b h

#fontFaceFormat_ Source

fontFaceFormat_ :: forall h b. ToElement_ b h

#fontFaceFormat' Source

fontFaceFormat' :: forall h a. ToElement' a h

#fontFaceName Source

fontFaceName :: forall h b a. ToElement a b h

#fontFaceName_ Source

fontFaceName_ :: forall h b. ToElement_ b h

#fontFaceName' Source

fontFaceName' :: forall h a. ToElement' a h

#fontFaceSrc Source

fontFaceSrc :: forall h b a. ToElement a b h

#fontFaceSrc_ Source

fontFaceSrc_ :: forall h b. ToElement_ b h

#fontFaceSrc' Source

fontFaceSrc' :: forall h a. ToElement' a h

#fontFaceUri Source

fontFaceUri :: forall h b a. ToElement a b h

#fontFaceUri_ Source

fontFaceUri_ :: forall h b. ToElement_ b h

#fontFaceUri' Source

fontFaceUri' :: forall h a. ToElement' a h

#foreignObject Source

foreignObject :: forall h b a. ToElement a b h

#foreignObject_ Source

foreignObject_ :: forall h b. ToElement_ b h

#foreignObject' Source

foreignObject' :: forall h a. ToElement' a h

#g Source

g :: forall h b a. ToElement a b h

#g_ Source

g_ :: forall h b. ToElement_ b h

#g' Source

g' :: forall h a. ToElement' a h

#glyph Source

glyph :: forall h b a. ToElement a b h

#glyph_ Source

glyph_ :: forall h b. ToElement_ b h

#glyph' Source

glyph' :: forall h a. ToElement' a h

#glyphRef Source

glyphRef :: forall h b a. ToElement a b h

#glyphRef_ Source

glyphRef_ :: forall h b. ToElement_ b h

#glyphRef' Source

glyphRef' :: forall h a. ToElement' a h

#hatch Source

hatch :: forall h b a. ToElement a b h

#hatch_ Source

hatch_ :: forall h b. ToElement_ b h

#hatch' Source

hatch' :: forall h a. ToElement' a h

#hatchpath Source

hatchpath :: forall h b a. ToElement a b h

#hatchpath_ Source

hatchpath_ :: forall h b. ToElement_ b h

#hatchpath' Source

hatchpath' :: forall h a. ToElement' a h

#hkern Source

hkern :: forall h b a. ToElement a b h

#hkern_ Source

hkern_ :: forall h b. ToElement_ b h

#hkern' Source

hkern' :: forall h a. ToElement' a h

#image Source

image :: forall h b a. ToElement a b h

#image_ Source

image_ :: forall h b. ToElement_ b h

#image' Source

image' :: forall h a. ToElement' a h

#line Source

line :: forall h b a. ToElement a b h

#line_ Source

line_ :: forall h b. ToElement_ b h

#line' Source

line' :: forall h a. ToElement' a h

#linearGradient Source

linearGradient :: forall h b a. ToElement a b h

#linearGradient_ Source

linearGradient_ :: forall h b. ToElement_ b h

#linearGradient' Source

linearGradient' :: forall h a. ToElement' a h

#marker Source

marker :: forall h b a. ToElement a b h

#marker_ Source

marker_ :: forall h b. ToElement_ b h

#marker' Source

marker' :: forall h a. ToElement' a h

#mask Source

mask :: forall h b a. ToElement a b h

#mask_ Source

mask_ :: forall h b. ToElement_ b h

#mask' Source

mask' :: forall h a. ToElement' a h

#mesh Source

mesh :: forall h b a. ToElement a b h

#mesh_ Source

mesh_ :: forall h b. ToElement_ b h

#mesh' Source

mesh' :: forall h a. ToElement' a h

#meshgradient Source

meshgradient :: forall h b a. ToElement a b h

#meshgradient_ Source

meshgradient_ :: forall h b. ToElement_ b h

#meshgradient' Source

meshgradient' :: forall h a. ToElement' a h

#meshpatch Source

meshpatch :: forall h b a. ToElement a b h

#meshpatch_ Source

meshpatch_ :: forall h b. ToElement_ b h

#meshpatch' Source

meshpatch' :: forall h a. ToElement' a h

#meshrow Source

meshrow :: forall h b a. ToElement a b h

#meshrow_ Source

meshrow_ :: forall h b. ToElement_ b h

#meshrow' Source

meshrow' :: forall h a. ToElement' a h

#metadata Source

metadata :: forall h b a. ToElement a b h

#metadata_ Source

metadata_ :: forall h b. ToElement_ b h

#metadata' Source

metadata' :: forall h a. ToElement' a h

#missingGlyph Source

missingGlyph :: forall h b a. ToElement a b h

#missingGlyph_ Source

missingGlyph_ :: forall h b. ToElement_ b h

#missingGlyph' Source

missingGlyph' :: forall h a. ToElement' a h

#mpath Source

mpath :: forall h b a. ToElement a b h

#mpath_ Source

mpath_ :: forall h b. ToElement_ b h

#mpath' Source

mpath' :: forall h a. ToElement' a h

#path Source

path :: forall h b a. ToElement a b h

#path_ Source

path_ :: forall h b. ToElement_ b h

#path' Source

path' :: forall h a. ToElement' a h

#pattern Source

pattern :: forall h b a. ToElement a b h

#pattern_ Source

pattern_ :: forall h b. ToElement_ b h

#pattern' Source

pattern' :: forall h a. ToElement' a h

#polygon Source

polygon :: forall h b a. ToElement a b h

#polygon_ Source

polygon_ :: forall h b. ToElement_ b h

#polygon' Source

polygon' :: forall h a. ToElement' a h

#polyline Source

polyline :: forall h b a. ToElement a b h

#polyline_ Source

polyline_ :: forall h b. ToElement_ b h

#polyline' Source

polyline' :: forall h a. ToElement' a h

#radialGradient Source

radialGradient :: forall h b a. ToElement a b h

#radialGradient_ Source

radialGradient_ :: forall h b. ToElement_ b h

#radialGradient' Source

radialGradient' :: forall h a. ToElement' a h

#rect Source

rect :: forall h b a. ToElement a b h

#rect_ Source

rect_ :: forall h b. ToElement_ b h

#rect' Source

rect' :: forall h a. ToElement' a h

#script Source

script :: forall h b a. ToElement a b h

#script_ Source

script_ :: forall h b. ToElement_ b h

#script' Source

script' :: forall h a. ToElement' a h

#set Source

set :: forall h b a. ToElement a b h

#set_ Source

set_ :: forall h b. ToElement_ b h

#set' Source

set' :: forall h a. ToElement' a h

#solidcolor Source

solidcolor :: forall h b a. ToElement a b h

#solidcolor_ Source

solidcolor_ :: forall h b. ToElement_ b h

#solidcolor' Source

solidcolor' :: forall h a. ToElement' a h

#stop Source

stop :: forall h b a. ToElement a b h

#stop_ Source

stop_ :: forall h b. ToElement_ b h

#stop' Source

stop' :: forall h a. ToElement' a h

#svg Source

svg :: forall h b a. ToElement a b h

#svg_ Source

svg_ :: forall h b. ToElement_ b h

#svg' Source

svg' :: forall h a. ToElement' a h

#switch Source

switch :: forall h b a. ToElement a b h

#switch_ Source

switch_ :: forall h b. ToElement_ b h

#switch' Source

switch' :: forall h a. ToElement' a h

#symbol Source

symbol :: forall h b a. ToElement a b h

#symbol_ Source

symbol_ :: forall h b. ToElement_ b h

#symbol' Source

symbol' :: forall h a. ToElement' a h

#textPath Source

textPath :: forall h b a. ToElement a b h

#textPath_ Source

textPath_ :: forall h b. ToElement_ b h

#textPath' Source

textPath' :: forall h a. ToElement' a h

#tref Source

tref :: forall h b a. ToElement a b h

#tref_ Source

tref_ :: forall h b. ToElement_ b h

#tref' Source

tref' :: forall h a. ToElement' a h

#tspan Source

tspan :: forall h b a. ToElement a b h

#tspan_ Source

tspan_ :: forall h b. ToElement_ b h

#tspan' Source

tspan' :: forall h a. ToElement' a h

#unknown Source

unknown :: forall h b a. ToElement a b h

#unknown_ Source

unknown_ :: forall h b. ToElement_ b h

#unknown' Source

unknown' :: forall h a. ToElement' a h

#use Source

use :: forall h b a. ToElement a b h

#use_ Source

use_ :: forall h b. ToElement_ b h

#use' Source

use' :: forall h a. ToElement' a h

#view Source

view :: forall h b a. ToElement a b h

#view_ Source

view_ :: forall h b. ToElement_ b h

#view' Source

view' :: forall h a. ToElement' a h

#vkern Source

vkern :: forall h b a. ToElement a b h

#vkern_ Source

vkern_ :: forall h b. ToElement_ b h

#vkern' Source

vkern' :: forall h a. ToElement' a h