sketch/lustre/element/keyed

This module is a drop-in replacement for lustre/element/keyed. Just use the new functions, and everything will automagically be styled.

Values

pub fn div(
  class: @internal Class,
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
pub fn div_(
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
pub fn dl(
  class: @internal Class,
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
pub fn dl_(
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
pub fn element(
  tag: String,
  class: @internal Class,
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
pub fn element_(
  tag: String,
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
pub const fragment: fn(List(#(String, @internal Element(a)))) -> @internal Element(
  a,
)
pub fn namespaced(
  namespace: String,
  tag: String,
  class: @internal Class,
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
pub fn namespaced_(
  namespace: String,
  tag: String,
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
pub fn ol(
  class: @internal Class,
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
pub fn ol_(
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
pub fn tbody(
  class: @internal Class,
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
pub fn tbody_(
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
pub fn ul(
  class: @internal Class,
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
pub fn ul_(
  attributes: List(@internal Attribute(msg)),
  children: List(#(String, @internal Element(msg))),
) -> @internal Element(msg)
Search Document