Idris2Doc : Rhone.JS.Reactimate

Rhone.JS.Reactimate

(source)

Definitions

registerDOMEvent : HandlerJSIOe=>EventTarget->DOMEvente->JSIO ()
  Low level method for registering `DOMEvents` at
HTML elements.

Use this, for instance, to register `DOMEvents` at
a HTMLElement of a static document.

Totality: total
Visibility: export
handleEvent : HandlerJSIOe=>ElemReft->DOMEvente->JSIO ()
  Manually register an event handler at the given element

Totality: total
Visibility: export
setAttribute : HandlerJSIOe=>Element->Attributee->JSIO ()
Totality: total
Visibility: export
setAttributeRef : HandlerJSIOe=>ElemReft->Attributee->JSIO ()
Totality: total
Visibility: export
setAttributesRef : HandlerJSIOe=>ElemReft->List (Attributee) ->JSIO ()
Totality: total
Visibility: export
replaceChildren : Element->DocumentFragment->JSIO ()
  Replaces all children of the given node with a new document fragment.

Totality: total
Visibility: export
appendDF : Element->DocumentFragment->JSIO ()
  Appends the given document fragment to a DOM element's children

Totality: total
Visibility: export
prependDF : Element->DocumentFragment->JSIO ()
  Prepends the given document fragment to a DOM element's children

Totality: total
Visibility: export
afterDF : Element->DocumentFragment->JSIO ()
  Inserts the given document fragment after a DOM element.

Totality: total
Visibility: export
beforeDF : Element->DocumentFragment->JSIO ()
  Inserts the given document fragment before a DOM element.

Totality: total
Visibility: export
replaceDF : Element->DocumentFragment->JSIO ()
  Inserts the given document fragment before a DOM element.

Totality: total
Visibility: export
dataDOMUpdate : Type->Type
Totality: total
Visibility: public export
Constructors:
Children : ElemReft->List (Nodee) ->DOMUpdatee
Replace : ElemReft->List (Nodee) ->DOMUpdatee
Append : ElemReft->List (Nodee) ->DOMUpdatee
Prepend : ElemReft->List (Nodee) ->DOMUpdatee
After : ElemReft->List (Nodee) ->DOMUpdatee
Before : ElemReft->List (Nodee) ->DOMUpdatee
Attr : ElemReft->Attributee->DOMUpdatee
Remove : ElemReft->DOMUpdatee
innerHtmlAtN : HandlerJSIOe=>ElemReft->List (Nodee) ->JSIO ()
  Sets up the reactive behavior of the given `Node`s and
inserts them as the children of the given target.

Totality: total
Visibility: export
innerHtmlAt : HandlerJSIOe=>ElemReft->Nodee->JSIO ()
  Sets up the reactive behavior of the given `Node` and
inserts it as the only child of the given target.

Totality: total
Visibility: export
afterN : HandlerJSIOe=>ElemReft->List (Nodee) ->JSIO ()
  Sets up the reactive behavior of the given `Node`s and
inserts them after the given child node.

Totality: total
Visibility: export
after : HandlerJSIOe=>ElemReft->Nodee->JSIO ()
  Sets up the reactive behavior of the given `Node` and
inserts it after the given child node.

Totality: total
Visibility: export
beforeN : HandlerJSIOe=>ElemReft->List (Nodee) ->JSIO ()
  Sets up the reactive behavior of the given `Node`s and
inserts them before the given child node.

Totality: total
Visibility: export
before : HandlerJSIOe=>ElemReft->Nodee->JSIO ()
  Sets up the reactive behavior of the given `Node` and
inserts it before the given child node.

Totality: total
Visibility: export
appendN : HandlerJSIOe=>ElemReft->List (Nodee) ->JSIO ()
  Sets up the reactive behavior of the given `Node`s and
appends them to the given element's list of children

Totality: total
Visibility: export
append : HandlerJSIOe=>ElemReft->Nodee->JSIO ()
  Sets up the reactive behavior of the given `Node` and
appends it to the given element's list of children

Totality: total
Visibility: export
prependN : HandlerJSIOe=>ElemReft->List (Nodee) ->JSIO ()
  Sets up the reactive behavior of the given `Node`s and
prepends them to the given element's list of children

Totality: total
Visibility: export
prepend : HandlerJSIOe=>ElemReft->Nodee->JSIO ()
  Sets up the reactive behavior of the given `Node` and
prepends it to the given element's list of children

Totality: total
Visibility: export
replaceN : HandlerJSIOe=>ElemReft->List (Nodee) ->JSIO ()
  Sets up the reactive behavior of the given `Node`s and
replaces the given element.

Totality: total
Visibility: export
replace : HandlerJSIOe=>ElemReft->Nodee->JSIO ()
  Sets up the reactive behavior of the given `Node` and
replaces the given element.

Totality: total
Visibility: export
updateDOM1 : HandlerJSIOe=>DOMUpdatee->JSIO ()
  Execute a single DOM update instruction

Totality: total
Visibility: export
updateDOM : HandlerJSIOe=>List (DOMUpdatee) ->JSIO ()
  Execute several DOM update instructions

Totality: total
Visibility: export