Module
Flame.Html.Attribute.Internal
- Package
- purescript-flame
- Repository
- easafe/purescript-flame
Definition of HTML attributes
#ToClassList Source
class ToClassList a whereEnables either strings or records be used as an argument to class'
Members
Instances
ToClassList StringToClassList (Array String)(Homogeneous r Boolean) => ToClassList (Record r)
#ToStyleList Source
class ToStyleList a whereEnables either tuples, arrays or records be used as an argument to style
Members
toStyleList :: a -> Object String
Instances
ToStyleList (Tuple String String)(Homogeneous r String) => ToStyleList (Record r)(Foldable f) => ToStyleList (f (Tuple String String))
#ToBooleanAttribute Source
type ToBooleanAttribute = ToNodeData Boolean#ToIntAttribute Source
type ToIntAttribute = ToNodeData Int#ToNumberAttribute Source
type ToNumberAttribute = ToNodeData Number#ToStringAttribute Source
type ToStringAttribute = ToNodeData String#class' Source
class' :: forall a b. ToClassList b => b -> NodeData a#createAttribute Source
createAttribute :: forall message. String -> String -> NodeData messageCreates a HTML attribute
#createProperty Source
createProperty :: forall message. String -> String -> NodeData messageSets a DOM property
#key Source
key :: ToStringAttributeSet the key attribute for "keyed" rendering
#style Source
style :: forall a r. ToStyleList r => r -> NodeData aSets the node style
https://developer.mozilla.org/en-US/docs/Web/API/ElementCSSInlineStyle/style
- Modules
- Flame
- Flame.
Application - Flame.
Application. Internal. Dom - Flame.
Application. Internal. PreMount - Flame.
Html. Attribute - Flame.
Html. Attribute. Internal - Flame.
Html. Element - Flame.
Html. Event - Flame.
Internal. Equality - Flame.
Internal. Fragment - Flame.
Renderer. Internal. Dom - Flame.
Renderer. String - Flame.
Serialization - Flame.
Subscription - Flame.
Subscription. Document - Flame.
Subscription. Internal. Create - Flame.
Subscription. Internal. Listener - Flame.
Subscription. Unsafe. CustomEvent - Flame.
Subscription. Window - Flame.
Types