Package io.kvision.table

Clasess supporting HTML tables.

Types

Link copied to clipboard
open class Cell(    content: String? = null,     rich: Boolean = false,     align: <Error class: unknown class>? = null,     className: String? = null,     init: Cell.() -> Unit? = null)

HTML table cell component.

Link copied to clipboard
open class HeaderCell(    content: String? = null,     rich: Boolean = false,     align: <Error class: unknown class>? = null,     scope: Scope? = null,     className: String? = null,     init: HeaderCell.() -> Unit? = null)

HTML table header cell component.

Link copied to clipboard
enum ResponsiveType : Enum<ResponsiveType>

HTML table responsive types.

Link copied to clipboard
open class Row(className: String? = null, init: Row.() -> Unit? = null)

HTML table row component.

Link copied to clipboard
enum Scope : Enum<Scope>
Link copied to clipboard
open class Table(    headerNames: List<String>? = null,     types: Set<TableType> = setOf(),     caption: String? = null,     responsiveType: ResponsiveType? = null,     tableColor: TableColor? = null,     val theadColor: TableColor? = null,     className: String? = null,     init: Table.() -> Unit? = null)

HTML table component.

Link copied to clipboard
enum TableColor : Enum<TableColor>

HTML table color variants.

Link copied to clipboard
enum TableType : Enum<TableType>

HTML table types.

Functions

Link copied to clipboard
fun Row.cell(    content: String? = null,     rich: Boolean = false,     align: <Error class: unknown class>? = null,     className: String? = null,     init: Cell.() -> Unit? = null): Cell

DSL builder extension function.

Link copied to clipboard
fun Row.headerCell(    content: String? = null,     rich: Boolean = false,     align: <Error class: unknown class>? = null,     scope: Scope? = null,     className: String? = null,     init: HeaderCell.() -> Unit? = null): HeaderCell
fun Table.headerCell(    content: String? = null,     rich: Boolean = false,     align: <Error class: unknown class>? = null,     scope: Scope? = null,     className: String? = null,     init: HeaderCell.() -> Unit? = null): HeaderCell

DSL builder extension function.

Link copied to clipboard
fun Table.row(className: String? = null, init: Row.() -> Unit? = null): Row

DSL builder extension function.

Link copied to clipboard
fun <Error class: unknown class>.table(    headerNames: List<String>? = null,     types: Set<TableType> = setOf(),     caption: String? = null,     responsiveType: ResponsiveType? = null,     tableColor: TableColor? = null,     theadColor: TableColor? = null,     className: String? = null,     init: Table.() -> Unit? = null): Table

DSL builder extension function.

Link copied to clipboard
fun Row.thcell(    content: String? = null,     rich: Boolean = false,     align: <Error class: unknown class>? = null,     className: String? = null,     init: HeaderCell.() -> Unit? = null): HeaderCell

DSL builder extension function.