Module

Halogen.HTML.Core

#HTML

newtype HTML p i

Constructors

Instances

#slot

slot :: forall p q. p -> HTML p q

A smart constructor for widget slots in the HTML.

#text

text :: forall p i. String -> HTML p i

Constructs a text node HTML value.

#element

element :: forall p i. Maybe Namespace -> ElemName -> Array (Prop i) -> Array (HTML p i) -> HTML p i

A smart constructor for HTML elements.

#keyed

keyed :: forall p i. Maybe Namespace -> ElemName -> Array (Prop i) -> Array (Tuple String (HTML p i)) -> HTML p i

A smart constructor for HTML elements with keyed children.

#prop

prop :: forall value i. IsProp value => PropName value -> value -> Prop i

Create a HTML property.

#attr

attr :: forall i. Maybe Namespace -> AttrName -> String -> Prop i

Create a HTML attribute.

#handler

handler :: forall i. EventType -> (Event -> Maybe i) -> Prop i

Create an event handler.

#ref

ref :: forall i. (Maybe Element -> Maybe i) -> Prop i

#PropName

newtype PropName value

A type-safe wrapper for property names.

The phantom type value describes the type of value which this property requires.

Constructors

Instances

#AttrName

newtype AttrName

A type-safe wrapper for attribute names.

Constructors

Instances

#ClassName

newtype ClassName

A wrapper for strings which are used as CSS classes.

Constructors

Instances

Re-exports from Halogen.VDom

#Namespace

#ElemName

Re-exports from Halogen.VDom.DOM.Prop

#PropValue

data PropValue :: Type

#Prop

data Prop a

Attributes, properties, event handlers, and element lifecycles. Parameterized by the type of handlers outputs.

Constructors

Instances

Modules