short

scalatags.Text.short

Attributes

Graph
Supertypes
trait AbstractShort[Builder, String, String]
trait Aggregate
trait Aggregate[Builder, String, String]
trait Aliases[Builder, String, String]
trait Tags
trait Tags[Builder, String, String]
trait Cap
trait TagFactory
trait Util[Builder, String, String]
trait LowPriUtil[Builder, String, String]
class Object
trait Matchable
class Any
Show all
Self type
short.type

Members list

Type members

Classlikes

object * extends Cap, Attrs, Styles

Attributes

Supertypes
trait Styles[Builder, String, String]
trait StyleMisc[Builder, String, String]
trait Attrs[Builder, String, String]
trait AnchorElementAttrs[Builder, String, String]
trait FormEventAttrs[Builder, String, String]
trait WindowEventAttrs[Builder, String, String]
trait MouseEventAttrs[Builder, String, String]
trait KeyboardEventAttrs[Builder, String, String]
trait MiscellaneousEventAttrs[Builder, String, String]
trait MediaEventAttrs[Builder, String, String]
trait SharedEventAttrs[Builder, String, String]
trait ClipboardEventAttrs[Builder, String, String]
trait InputAttrs[Builder, String, String]
trait GlobalAttrs[Builder, String, String]
trait Cap
trait TagFactory
trait Util[Builder, String, String]
trait LowPriUtil[Builder, String, String]
class Object
trait Matchable
class Any
Show all
Self type
*.type

Inherited classlikes

class CssNumber[T](x: T)(implicit evidence$1: Numeric[T])

Extends numbers to provide a bunch of useful methods, allowing you to write CSS-lengths in a nice syntax without resorting to strings.

Extends numbers to provide a bunch of useful methods, allowing you to write CSS-lengths in a nice syntax without resorting to strings.

Attributes

Inherited from:
DataConverters
Supertypes
class Object
trait Matchable
class Any
implicit class GeneratorFrag[A](xs: Generator[A])(implicit ev: A => Frag) extends Frag

Attributes

Inherited from:
Cap
Supertypes
trait Frag[Builder, String]
trait Modifier[Builder]
class Object
trait Matchable
class Any
implicit class SeqFrag[A](xs: Seq[A])(implicit ev: A => Frag) extends Frag

Attributes

Inherited from:
Cap
Supertypes
trait Frag[Builder, String]
trait Modifier[Builder]
class Object
trait Matchable
class Any
implicit class SeqNode[A](xs: Seq[A])(implicit ev: A => Modifier[Builder]) extends Modifier[Builder]

Allows you to modify a ConcreteHtmlTag by adding a Seq containing other nest-able objects to its list of children.

Allows you to modify a ConcreteHtmlTag by adding a Seq containing other nest-able objects to its list of children.

Attributes

Inherited from:
Util
Supertypes
trait Modifier[Builder]
class Object
trait Matchable
class Any
implicit class StyleFrag(s: StylePair[Builder, _]) extends StyleSheetFrag

Attributes

Inherited from:
Aggregate
Supertypes
class Object
trait Matchable
class Any
case class doctype(s: String)(content: Frag) extends Writable

Attributes

Inherited from:
Cap
Supertypes
trait Serializable
trait Product
trait Equals
trait Writable
class Object
trait Matchable
class Any
Show all

Inherited types

type Attr = Attr

Attributes

Inherited from:
Aliases
type AttrPair = AttrPair[Builder, _]

Attributes

Inherited from:
Aliases
type AttrValue[V] = AttrValue[Builder, V]

Attributes

Inherited from:
Aliases
type Attrs = Attrs[Builder, Output, FragT]

Attributes

Inherited from:
Aliases
type BaseTagType = TypedTag[String]

Attributes

Inherited from:
Cap
type ConcreteHtmlTag[T <: String] = TypedTag[T]

Attributes

Inherited from:
Cap
type Frag = Frag[Builder, FragT]

Attributes

Inherited from:
Aliases
type Modifier = Modifier[Builder]

Attributes

Inherited from:
Aliases
type PixelStyleValue[V] = PixelStyleValue[Builder, V]

Attributes

Inherited from:
Aliases
type RawFrag = RawFrag

A Modifier which contains a String which will not be escaped.

A Modifier which contains a String which will not be escaped.

Attributes

Inherited from:
Aggregate

A Modifier which contains a String.

A Modifier which contains a String.

Attributes

Inherited from:
Aggregate
type Style = Style

Attributes

Inherited from:
Aliases
type StyleValue[V] = StyleValue[Builder, V]

Attributes

Inherited from:
Aliases
type Styles = Styles[Builder, Output, FragT]

Attributes

Inherited from:
Aliases
type Styles2 = Styles2[Builder, Output, FragT]

Attributes

Inherited from:
Aliases
type SvgAttrs = SvgAttrs[Builder, Output, FragT]

Attributes

Inherited from:
Aliases
type SvgTags = SvgTags[Builder, Output, FragT]

Attributes

Inherited from:
Aliases
type Tag = TypedTag[Builder, Output, FragT]

Attributes

Inherited from:
Aliases
type Tags = Tags[Builder, Output, FragT]

Attributes

Inherited from:
Aliases
type Tags2 = Tags2[Builder, Output, FragT]

Attributes

Inherited from:
Aliases
type Util = Util[Builder, Output, FragT]

Attributes

Inherited from:
Aliases

Value members

Inherited methods

def attr(s: String, ns: Namespace, raw: Boolean): Attr

Constructs an Attr attribute object from a string; can be used inline:

Constructs an Attr attribute object from a string; can be used inline:

 div(
   attr("hello-world-special-attr") := "foo
 )

Or assigned to a name and used later

 val hello = attr("hello-world-special-attr")
 div(
   hello := "foo
 )

Attributes

Inherited from:
Util
def css(s: String): Style

Constructs a CSS Style from a string, can be used inline

Constructs a CSS Style from a string, can be used inline

 div(
   css("-moz-special-style") := "foo"
 )

Or assigned to a name and used later

 val mozSpecial := css("-moz-special-style")
 div(
   mozSpecial := "foo"
 )

Attributes

Inherited from:
Util
def frag(frags: Frag[Builder, String]*): Frag[Builder, FragT]

Attributes

Inherited from:
Util
def genericAttr[T]: AttrValue[T]

Attributes

Inherited from:
Aggregate
def genericPixelStyle[T](implicit ev: StyleValue[T]): PixelStyleValue[T]

Attributes

Inherited from:
Aggregate
def genericPixelStylePx[T](implicit ev: StyleValue[String]): PixelStyleValue[T]

Attributes

Inherited from:
Aggregate

Attributes

Inherited from:
Aggregate
def makeAbstractTypedTag[T <: String](tag: String, void: Boolean, namespaceConfig: Namespace): TypedTag[T]

Attributes

Inherited from:
Cap
def modifier(mods: Modifier[Builder]*): Modifier[Builder]

Attributes

Inherited from:
Util
def raw(s: String): RawFrag

Delimits a string that should be included in the result as raw, un-escaped HTML

Delimits a string that should be included in the result as raw, un-escaped HTML

Attributes

Inherited from:
Aggregate
def tag(s: String, void: Boolean): ConcreteHtmlTag[String]

Attributes

Inherited from:
TagFactory

Inherited fields

val RawFrag: RawFrag.type

Attributes

Inherited from:
Aggregate
val StringFrag: StringFrag.type

Attributes

Inherited from:
Aggregate
val Tag: TypedTag.type

Attributes

Inherited from:
Aggregate
lazy val `object`: TypedTag[String]

Represents an external resource, which is treated as an image, an HTML sub-document, or an external resource to be processed by a plug-in.

Represents an external resource, which is treated as an image, an HTML sub-document, or an external resource to be processed by a plug-in.

MDN

Attributes

Inherited from:
Tags
lazy val a: TypedTag[String]

Represents a hyperlink, linking to another resource.

Represents a hyperlink, linking to another resource.

MDN

Attributes

Inherited from:
Tags
lazy val area: TypedTag[String]

In conjunction with map, defines an image map

In conjunction with map, defines an image map

MDN

Attributes

Inherited from:
Tags
lazy val audio: TypedTag[String]

Represents a sound or an audio stream.

Represents a sound or an audio stream.

MDN

Attributes

Inherited from:
Tags
lazy val b: TypedTag[String]

Bold text.

Bold text.

MDN

Attributes

Inherited from:
Tags
lazy val base: TypedTag[String]

Defines the base URL for relative URLs in the page.

Defines the base URL for relative URLs in the page.

MDN

Attributes

Inherited from:
Tags
lazy val blockquote: TypedTag[String]

Represents a content that is quoted from another source.

Represents a content that is quoted from another source.

MDN

Attributes

Inherited from:
Tags
lazy val body: TypedTag[String]

Represents the content of an HTML document. There is only one body element in a document.

Represents the content of an HTML document. There is only one body element in a document.

MDN

Attributes

Inherited from:
Tags
lazy val br: TypedTag[String]

Represents a line break.

Represents a line break.

MDN

Attributes

Inherited from:
Tags
lazy val button: TypedTag[String]

A button

A button

MDN

Attributes

Inherited from:
Tags
lazy val canvas: TypedTag[String]

Represents a bitmap area that scripts can use to render graphics like graphs, games or any visual images on the fly.

Represents a bitmap area that scripts can use to render graphics like graphs, games or any visual images on the fly.

MDN

Attributes

Inherited from:
Tags
lazy val caption: TypedTag[String]

The title of a table.

The title of a table.

MDN

Attributes

Inherited from:
Tags
lazy val cite: TypedTag[String]

Represents the title of a work being cited.

Represents the title of a work being cited.

MDN

Attributes

Inherited from:
Tags
lazy val code: TypedTag[String]

Represents computer code.

Represents computer code.

MDN

Attributes

Inherited from:
Tags
lazy val col: TypedTag[String]

A single column.

A single column.

MDN

Attributes

Inherited from:
Tags
lazy val colgroup: TypedTag[String]

A set of columns.

A set of columns.

MDN

Attributes

Inherited from:
Tags
lazy val datalist: TypedTag[String]

A set of predefined options for other controls.

A set of predefined options for other controls.

MDN

Attributes

Inherited from:
Tags
lazy val dd: TypedTag[String]

Represents the definition of the terms immediately listed before it.

Represents the definition of the terms immediately listed before it.

MDN

Attributes

Inherited from:
Tags
lazy val del: TypedTag[String]

Defines a removal from the document.

Defines a removal from the document.

MDN

Attributes

Inherited from:
Tags
lazy val div: TypedTag[String]

Represents a generic container with no special meaning.

Represents a generic container with no special meaning.

MDN

Attributes

Inherited from:
Tags
lazy val dl: TypedTag[String]

Defines a definition list; a list of terms and their associated definitions.

Defines a definition list; a list of terms and their associated definitions.

MDN

Attributes

Inherited from:
Tags
lazy val dt: TypedTag[String]

Represents a term defined by the next dd

Represents a term defined by the next dd

MDN

Attributes

Inherited from:
Tags
lazy val em: TypedTag[String]

Represents emphasized text.

Represents emphasized text.

MDN

Attributes

Inherited from:
Tags
lazy val embed: TypedTag[String]

Represents a integration point for an external, often non-HTML, application or interactive content.

Represents a integration point for an external, often non-HTML, application or interactive content.

MDN

Attributes

Inherited from:
Tags
lazy val fieldset: TypedTag[String]

A set of fields.

A set of fields.

MDN

Attributes

Inherited from:
Tags
lazy val figcaption: TypedTag[String]

Represents the legend of a figure.

Represents the legend of a figure.

MDN

Attributes

Inherited from:
Tags
lazy val figure: TypedTag[String]

Represents a figure illustrated as part of the document.

Represents a figure illustrated as part of the document.

MDN

Attributes

Inherited from:
Tags
lazy val form: TypedTag[String]

Represents a form, consisting of controls, that can be submitted to a server for processing.

Represents a form, consisting of controls, that can be submitted to a server for processing.

MDN

Attributes

Inherited from:
Tags
lazy val h1: TypedTag[String]

Heading level 1

Heading level 1

MDN

Attributes

Inherited from:
Tags
lazy val h2: TypedTag[String]

Heading level 2

Heading level 2

MDN

Attributes

Inherited from:
Tags
lazy val h3: TypedTag[String]

Heading level 3

Heading level 3

MDN

Attributes

Inherited from:
Tags
lazy val h4: TypedTag[String]

Heading level 4

Heading level 4

MDN

Attributes

Inherited from:
Tags
lazy val h5: TypedTag[String]

Heading level 5

Heading level 5

MDN

Attributes

Inherited from:
Tags
lazy val h6: TypedTag[String]

Heading level 6

Heading level 6

MDN

Attributes

Inherited from:
Tags
lazy val head: TypedTag[String]

Represents a collection of metadata about the document, including links to, or definitions of, scripts and style sheets.

Represents a collection of metadata about the document, including links to, or definitions of, scripts and style sheets.

MDN

Attributes

Inherited from:
Tags
lazy val header: TypedTag[String]

Defines the header of a page or section. It often contains a logo, the title of the Web site, and a navigational table of content.

Defines the header of a page or section. It often contains a logo, the title of the Web site, and a navigational table of content.

MDN

Attributes

Inherited from:
Tags
lazy val hr: TypedTag[String]

Represents a thematic break between paragraphs of a section or article or any longer content.

Represents a thematic break between paragraphs of a section or article or any longer content.

MDN

Attributes

Inherited from:
Tags
lazy val html: TypedTag[String]

Represents the root of an HTML or XHTML document. All other elements must be descendants of this element.

Represents the root of an HTML or XHTML document. All other elements must be descendants of this element.

MDN

Attributes

Inherited from:
Tags
lazy val i: TypedTag[String]

Italicized text.

Italicized text.

MDN

Attributes

Inherited from:
Tags
lazy val iframe: TypedTag[String]

Represents a nested browsing context, that is an embedded HTML document.

Represents a nested browsing context, that is an embedded HTML document.

MDN

Attributes

Inherited from:
Tags
lazy val img: TypedTag[String]

Represents an image.

Represents an image.

MDN

Attributes

Inherited from:
Tags
lazy val input: TypedTag[String]

A typed data field allowing the user to input data.

A typed data field allowing the user to input data.

MDN

Attributes

Inherited from:
Tags
lazy val ins: TypedTag[String]

Defines an addition to the document.

Defines an addition to the document.

MDN

Attributes

Inherited from:
Tags
lazy val label: TypedTag[String]

The caption of a single field

The caption of a single field

MDN

Attributes

Inherited from:
Tags
lazy val legend: TypedTag[String]

The caption for a fieldset.

The caption for a fieldset.

MDN

Attributes

Inherited from:
Tags
lazy val li: TypedTag[String]

Defines an item of an list.

Defines an item of an list.

MDN

Attributes

Inherited from:
Tags
lazy val map: TypedTag[String]

In conjunction with area, defines an image map.

In conjunction with area, defines an image map.

MDN

Attributes

Inherited from:
Tags
lazy val meta: TypedTag[String]

Defines metadata that can't be defined using another HTML element.

Defines metadata that can't be defined using another HTML element.

MDN

Attributes

Inherited from:
Tags
lazy val ol: TypedTag[String]

Defines an ordered list of items.

Defines an ordered list of items.

MDN

Attributes

Inherited from:
Tags
lazy val optgroup: TypedTag[String]

A set of options, logically grouped.

A set of options, logically grouped.

MDN

Attributes

Inherited from:
Tags
lazy val option: TypedTag[String]

An option in a select element.

An option in a select element.

MDN

Attributes

Inherited from:
Tags
lazy val p: TypedTag[String]

Defines a portion that should be displayed as a paragraph.

Defines a portion that should be displayed as a paragraph.

MDN

Attributes

Inherited from:
Tags
lazy val param: TypedTag[String]

Defines parameters for use by plug-ins invoked by object elements.

Defines parameters for use by plug-ins invoked by object elements.

MDN

Attributes

Inherited from:
Tags
lazy val pre: TypedTag[String]

Indicates that its content is preformatted and that this format must be preserved.

Indicates that its content is preformatted and that this format must be preserved.

MDN

Attributes

Inherited from:
Tags
lazy val s: TypedTag[String]

Strikethrough element, used for that is no longer accurate or relevant.

Strikethrough element, used for that is no longer accurate or relevant.

MDN

Attributes

Inherited from:
Tags
lazy val script: TypedTag[String]

Defines either an internal script or a link to an external script. The script language is JavaScript.

Defines either an internal script or a link to an external script. The script language is JavaScript.

MDN

Attributes

Inherited from:
Tags
lazy val select: TypedTag[String]

A control that allows the user to select one of a set of options.

A control that allows the user to select one of a set of options.

MDN

Attributes

Inherited from:
Tags
lazy val small: TypedTag[String]

Represents a side comment; text like a disclaimer or copyright, which is not essential to the comprehension of the document.

Represents a side comment; text like a disclaimer or copyright, which is not essential to the comprehension of the document.

MDN

Attributes

Inherited from:
Tags
lazy val source: TypedTag[String]

Allows the authors to specify alternate media resources for media elements like video or audio

Allows the authors to specify alternate media resources for media elements like video or audio

MDN

Attributes

Inherited from:
Tags
lazy val span: TypedTag[String]

Represents text with no specific meaning. This has to be used when no other text-semantic element conveys an adequate meaning, which, in this case, is often brought by global attributes like class, lang, or dir.

Represents text with no specific meaning. This has to be used when no other text-semantic element conveys an adequate meaning, which, in this case, is often brought by global attributes like class, lang, or dir.

MDN

Attributes

Inherited from:
Tags
lazy val strong: TypedTag[String]

Represents especially important text.

Represents especially important text.

MDN

Attributes

Inherited from:
Tags
lazy val sub: TypedTag[String]

Subscript tag

Subscript tag

MDN

Attributes

Inherited from:
Tags
lazy val sup: TypedTag[String]

Superscript tag.

Superscript tag.

MDN

Attributes

Inherited from:
Tags
lazy val table: TypedTag[String]

Represents data with more than one dimension.

Represents data with more than one dimension.

MDN

Attributes

Inherited from:
Tags
lazy val tbody: TypedTag[String]

The table body.

The table body.

MDN

Attributes

Inherited from:
Tags
lazy val td: TypedTag[String]

A single cell in a table.

A single cell in a table.

MDN

Attributes

Inherited from:
Tags
lazy val textarea: TypedTag[String]

A multiline text edit control.

A multiline text edit control.

MDN

Attributes

Inherited from:
Tags
lazy val tfoot: TypedTag[String]

The table footer.

The table footer.

MDN

Attributes

Inherited from:
Tags
lazy val th: TypedTag[String]

A header cell in a table.

A header cell in a table.

MDN

Attributes

Inherited from:
Tags
lazy val thead: TypedTag[String]

The table headers.

The table headers.

MDN

Attributes

Inherited from:
Tags
lazy val tr: TypedTag[String]

A single row in a table.

A single row in a table.

MDN

Attributes

Inherited from:
Tags
lazy val track: TypedTag[String]

Allows authors to specify timed text track for media elements like video or audio

Allows authors to specify timed text track for media elements like video or audio

MDN

Attributes

Inherited from:
Tags
lazy val u: TypedTag[String]

Underlined text.

Underlined text.

MDN

Attributes

Inherited from:
Tags
lazy val ul: TypedTag[String]

Defines an unordered list of items.

Defines an unordered list of items.

MDN

Attributes

Inherited from:
Tags
lazy val video: TypedTag[String]

Represents a video, and its associated audio files and captions, with the necessary interface to play it.

Represents a video, and its associated audio files and captions, with the necessary interface to play it.

MDN

Attributes

Inherited from:
Tags
lazy val wbr: TypedTag[String]

Represents a line break opportunity, that is a suggested point for wrapping text in order to improve readability of text split on several lines.

Represents a line break opportunity, that is a suggested point for wrapping text in order to improve readability of text split on several lines.

MDN

Attributes

Inherited from:
Tags

Implicits

Inherited implicits

implicit def ArrayFrag[A](xs: Array[A])(implicit ev: A => Frag[Builder, String]): Frag[Builder, FragT]

Renders an Seq of FragT into a single FragT

Renders an Seq of FragT into a single FragT

Attributes

Inherited from:
LowPriUtil
implicit def ArrayNode[A](xs: Array[A])(implicit ev: A => Modifier[Builder]): SeqNode[A]

Allows you to modify a ConcreteHtmlTag by adding an Array containing other nest-able objects to its list of children.

Allows you to modify a ConcreteHtmlTag by adding an Array containing other nest-able objects to its list of children.

Attributes

Inherited from:
Util
implicit def Byte2CssNumber(x: Byte): CssNumber[Byte]

Attributes

Inherited from:
DataConverters
implicit def ClsModifier(s: Cls): Modifier

Attributes

Inherited from:
Aggregate
implicit def Double2CssNumber(x: Double): CssNumber[Double]

Attributes

Inherited from:
DataConverters
implicit def Float2CssNumber(x: Float): CssNumber[Float]

Attributes

Inherited from:
DataConverters
final implicit def GeneratorFrag[A](xs: Generator[A])(implicit ev: A => Frag): GeneratorFrag[A]

Renders an Seq of FragT into a single FragT

Renders an Seq of FragT into a single FragT

Attributes

Inherited from:
Cap
implicit def Int2CssNumber(x: Int): CssNumber[Int]

Attributes

Inherited from:
DataConverters
implicit def Long2CssNumber(x: Long): CssNumber[Long]

Attributes

Inherited from:
DataConverters
implicit def OptionFrag[A](xs: Option[A])(implicit ev: A => Frag[Builder, String]): Frag[Builder, FragT]

Renders an Option of FragT into a single FragT

Renders an Option of FragT into a single FragT

Attributes

Inherited from:
LowPriUtil
implicit def OptionNode[A](xs: Option[A])(implicit ev: A => Modifier[Builder]): SeqNode[A]

Allows you to modify a ConcreteHtmlTag by adding an Option containing other nest-able objects to its list of children.

Allows you to modify a ConcreteHtmlTag by adding an Option containing other nest-able objects to its list of children.

Attributes

Inherited from:
Util
final implicit def SeqFrag[A](xs: Seq[A])(implicit ev: A => Frag): SeqFrag[A]

Renders an Seq of FragT into a single FragT

Renders an Seq of FragT into a single FragT

Attributes

Inherited from:
Cap
final implicit def SeqNode[A](xs: Seq[A])(implicit ev: A => Modifier[Builder]): SeqNode[A]

Allows you to modify a ConcreteHtmlTag by adding a Seq containing other nest-able objects to its list of children.

Allows you to modify a ConcreteHtmlTag by adding a Seq containing other nest-able objects to its list of children.

Attributes

Inherited from:
Util
implicit def Short2CssNumber(x: Short): CssNumber[Short]

Attributes

Inherited from:
DataConverters
final implicit def StyleFrag(s: StylePair[Builder, _]): StyleFrag

Attributes

Inherited from:
Aggregate
implicit def UnitFrag(u: Unit): Frag[Builder, String]

Lets you put Unit into a scalatags tree, as a no-op.

Lets you put Unit into a scalatags tree, as a no-op.

Attributes

Inherited from:
Cap
implicit val booleanAttr: AttrValue[Boolean]

Attributes

Inherited from:
Aggregate
implicit val booleanPixelStyle: PixelStyleValue[Boolean]

Attributes

Inherited from:
Aggregate
implicit val booleanStyle: StyleValue[Boolean]

Attributes

Inherited from:
Aggregate
implicit val byteAttr: AttrValue[Byte]

Attributes

Inherited from:
Aggregate
implicit def byteFrag(v: Byte): Frag

Attributes

Inherited from:
Aggregate
implicit val bytePixelStyle: PixelStyleValue[Byte]

Attributes

Inherited from:
Aggregate
implicit val byteStyle: StyleValue[Byte]

Attributes

Inherited from:
Aggregate
implicit val doubleAttr: AttrValue[Double]

Attributes

Inherited from:
Aggregate
implicit def doubleFrag(v: Double): Frag

Attributes

Inherited from:
Aggregate
implicit val doublePixelStyle: PixelStyleValue[Double]

Attributes

Inherited from:
Aggregate
implicit val doubleStyle: StyleValue[Double]

Attributes

Inherited from:
Aggregate
implicit val floatAttr: AttrValue[Float]

Attributes

Inherited from:
Aggregate
implicit def floatFrag(v: Float): Frag

Attributes

Inherited from:
Aggregate
implicit val floatPixelStyle: PixelStyleValue[Float]

Attributes

Inherited from:
Aggregate
implicit val floatStyle: StyleValue[Float]

Attributes

Inherited from:
Aggregate
implicit val intAttr: AttrValue[Int]

Attributes

Inherited from:
Aggregate
implicit def intFrag(v: Int): Frag

Attributes

Inherited from:
Aggregate
implicit val intPixelStyle: PixelStyleValue[Int]

Attributes

Inherited from:
Aggregate
implicit val intStyle: StyleValue[Int]

Attributes

Inherited from:
Aggregate
implicit val longAttr: AttrValue[Long]

Attributes

Inherited from:
Aggregate
implicit def longFrag(v: Long): Frag

Attributes

Inherited from:
Aggregate
implicit val longPixelStyle: PixelStyleValue[Long]

Attributes

Inherited from:
Aggregate
implicit val longStyle: StyleValue[Long]

Attributes

Inherited from:
Aggregate
implicit val shortAttr: AttrValue[Short]

Attributes

Inherited from:
Aggregate
implicit def shortFrag(v: Short): Frag

Attributes

Inherited from:
Aggregate
implicit val shortPixelStyle: PixelStyleValue[Short]

Attributes

Inherited from:
Aggregate
implicit val shortStyle: StyleValue[Short]

Attributes

Inherited from:
Aggregate
implicit val stringAttr: AttrValue[String]

Attributes

Inherited from:
Aggregate
implicit def stringFrag(v: String): Frag

Attributes

Inherited from:
Aggregate
implicit val stringPixelStyle: PixelStyleValue[String]

Attributes

Inherited from:
Aggregate
implicit val stringStyle: StyleValue[String]

Attributes

Inherited from:
Aggregate