Area

open class Area(id: String?, baseClass: String?, job: Job, scope: Scope) : Tag<HTMLAreaElement> , WithText<HTMLAreaElement>

Exposes the JavaScript HTMLAreaElement to Kotlin

Constructors

Area
Link copied to clipboard
js
fun Area(id: String? = null, baseClass: String? = null, job: Job, scope: Scope)

Functions

a
Link copied to clipboard
js
open fun a(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: A.() -> Unit): A
abbr
Link copied to clipboard
js
open fun abbr(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
address
Link copied to clipboard
js
open fun address(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
alt
Link copied to clipboard
js
fun alt(value: String)
fun alt(value: Flow<String>)
area
Link copied to clipboard
js
open fun area(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Area.() -> Unit): Area
article
Link copied to clipboard
js
open fun article(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
asDataAttr
Link copied to clipboard
js
fun Scope.asDataAttr()
Sets all scope-entries as data-attributes to the element.
fun <T : Any> Scope.asDataAttr(key: Scope.Key<T>)
Sets scope-entry for the given key as data-attribute to the element when available.
aside
Link copied to clipboard
js
open fun aside(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
asString
Link copied to clipboard
js
open fun <T> Flow<T>.asString(): Flow<String>
Converts the content of a Flow to String by using toString method.
attr
Link copied to clipboard
js
fun <T> attr(name: String, value: T)
Sets an attribute.
fun attr(name: String, value: String)
Sets an attribute.
fun attr(name: String, value: String?)
Sets an attribute only if its value is not null.
fun <T> attr(name: String, value: Flow<T>)
Sets an attribute.
fun attr(name: String, value: Flow<String?>)
Sets an attribute only for all none null values of the flow.
fun attr(name: String, value: Flow<String>)
Sets an attribute.
fun attr(name: String, value: Boolean, trueValue: String = "")
Sets an attribute when value is true otherwise removes it.
fun attr(name: String, value: Boolean?, trueValue: String = "")
Sets an attribute when value is true otherwise removes it.
fun attr(name: String, values: List<String>, separator: String = " ")
Sets an attribute from a List of Strings.
fun attr(name: String, values: Map<String, Boolean>, separator: String = " ")
Sets an attribute from a Map of Strings and Booleans.
fun attr(name: String, value: Flow<Boolean?>, trueValue: String = "")
Sets an attribute when value is true otherwise removes it.
fun attr(name: String, value: Flow<Boolean>, trueValue: String = "")
Sets an attribute when value is true otherwise removes it.
fun attr(name: String, values: Flow<List<String>>, separator: String = " ")
Sets an attribute from a List of Strings.
fun attr(name: String, values: Flow<Map<String, Boolean>>, separator: String = " ")
Sets an attribute from a Map of Strings and Booleans.
audio
Link copied to clipboard
js
open fun audio(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Audio.() -> Unit): Audio
b
Link copied to clipboard
js
open fun b(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
bdi
Link copied to clipboard
js
open fun bdi(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
bdo
Link copied to clipboard
js
open fun bdo(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
blockquote
Link copied to clipboard
js
open fun blockquote(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
br
Link copied to clipboard
js
open fun br(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Br.() -> Unit): Br
button
Link copied to clipboard
js
open fun button(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Button.() -> Unit): Button
canvas
Link copied to clipboard
js
open fun canvas(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Canvas.() -> Unit): Canvas
caption
Link copied to clipboard
js
open fun caption(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Caption.() -> Unit): Caption
cite
Link copied to clipboard
js
open fun cite(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
classList
Link copied to clipboard
js
fun classList(values: List<String>)
Sets the class attribute from a List of Strings.
fun classList(values: Flow<List<String>>)
Sets the class attribute from a List of Strings.
classMap
Link copied to clipboard
js
fun classMap(values: Map<String, Boolean>)
Sets the class attribute from a Map of String to Boolean.
fun classMap(values: Flow<Map<String, Boolean>>)
Sets the class attribute from a Map of String to Boolean.
className
Link copied to clipboard
js
fun className(value: String)
Sets the class attribute.
fun className(value: Flow<String>)
Sets the class attribute.
code
Link copied to clipboard
js
open fun code(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
col
Link copied to clipboard
js
open fun col(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Col.() -> Unit): Col
colgroup
Link copied to clipboard
js
open fun colgroup(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Colgroup.() -> Unit): Colgroup
command
Link copied to clipboard
js
open fun command(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
coords
Link copied to clipboard
js
fun coords(value: String)
fun coords(value: Flow<String>)
custom
Link copied to clipboard
js
open fun custom(tagName: String, baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Tag<*>.() -> Unit): Tag<*>
Creates a custom Tag with the provided content.
data
Link copied to clipboard
js
open fun data(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Data.() -> Unit): Data
datalist
Link copied to clipboard
js
open fun datalist(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: DataList.() -> Unit): DataList
dd
Link copied to clipboard
js
open fun dd(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
del
Link copied to clipboard
js
open fun del(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Del.() -> Unit): Del
details
Link copied to clipboard
js
open fun details(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Details.() -> Unit): Details
dfn
Link copied to clipboard
js
open fun dfn(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
dialog
Link copied to clipboard
js
open fun dialog(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Dialog.() -> Unit): Dialog
div
Link copied to clipboard
js
open fun div(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Div.() -> Unit): Div
dl
Link copied to clipboard
js
open fun dl(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Dl.() -> Unit): Dl
download
Link copied to clipboard
js
fun download(value: String)
fun download(value: Flow<String>)
dt
Link copied to clipboard
js
open fun dt(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
em
Link copied to clipboard
js
open fun em(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
embed
Link copied to clipboard
js
open fun embed(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Embed.() -> Unit): Embed
fieldset
Link copied to clipboard
js
open fun fieldset(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: FieldSet.() -> Unit): FieldSet
figcaption
Link copied to clipboard
js
open fun figcaption(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
figure
Link copied to clipboard
js
open fun figure(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
footer
Link copied to clipboard
js
open fun footer(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
form
Link copied to clipboard
js
open fun form(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Form.() -> Unit): Form
h1
Link copied to clipboard
js
open fun h1(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: H.() -> Unit): H
h2
Link copied to clipboard
js
open fun h2(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: H.() -> Unit): H
h3
Link copied to clipboard
js
open fun h3(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: H.() -> Unit): H
h4
Link copied to clipboard
js
open fun h4(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: H.() -> Unit): H
h5
Link copied to clipboard
js
open fun h5(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: H.() -> Unit): H
h6
Link copied to clipboard
js
open fun h6(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: H.() -> Unit): H
handledBy
Link copied to clipboard
js
open infix fun <E : Event, X : Element> DomListener<E, X>.handledBy(handler: Handler<Unit>)
Connects Events to a Handler.
open infix fun <E : Event, X : Element> DomListener<E, X>.handledBy(execute: suspend (E) -> Unit): Job
Connects a Flow to a suspendable execute function.
open infix fun <E : Event> WindowListener<E>.handledBy(handler: Handler<Unit>)
Connects Events to a Handler.
open infix fun <E : Event> WindowListener<E>.handledBy(execute: suspend (E) -> Unit): Job
Connects a Flow to a suspendable execute function.
open infix fun <A> Flow<A>.handledBy(handler: Handler<A>)
Connects a Flow to a Handler.
open infix fun <A> Flow<A>.handledBy(execute: suspend (A) -> Unit): Job
Connects a Flow to a suspendable execute function.
hash
Link copied to clipboard
js
fun hash(value: String)
fun hash(value: Flow<String>)
header
Link copied to clipboard
js
open fun header(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
host
Link copied to clipboard
js
fun host(value: String)
fun host(value: Flow<String>)
hostname
Link copied to clipboard
js
fun hostname(value: String)
fun hostname(value: Flow<String>)
hr
Link copied to clipboard
js
open fun hr(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Hr.() -> Unit): Hr
href
Link copied to clipboard
js
fun href(value: String)
fun href(value: Flow<String>)
i
Link copied to clipboard
js
open fun i(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
iframe
Link copied to clipboard
js
open fun iframe(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: IFrame.() -> Unit): IFrame
img
Link copied to clipboard
js
open fun img(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Img.() -> Unit): Img
inlineStyle
Link copied to clipboard
js
fun inlineStyle(value: String)
Sets the style attribute.
fun inlineStyle(values: List<String>)
Sets the style attribute from a List of Strings.
fun inlineStyle(values: Map<String, Boolean>)
Sets the style attribute from a Map of String to Boolean.
fun inlineStyle(value: Flow<String>)
Sets the style attribute.
fun inlineStyle(values: Flow<List<String>>)
Sets the style attribute from a List of Strings.
fun inlineStyle(values: Flow<Map<String, Boolean>>)
Sets the style attribute from a Map of String to Boolean.
input
Link copied to clipboard
js
open fun input(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Input.() -> Unit): Input
ins
Link copied to clipboard
js
open fun ins(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Ins.() -> Unit): Ins
kbd
Link copied to clipboard
js
open fun kbd(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
label
Link copied to clipboard
js
open fun label(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Label.() -> Unit): Label
legend
Link copied to clipboard
js
open fun legend(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Legend.() -> Unit): Legend
li
Link copied to clipboard
js
open fun li(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Li.() -> Unit): Li
main
Link copied to clipboard
js
open fun main(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
map
Link copied to clipboard
js
open fun map(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Map.() -> Unit): Map
mark
Link copied to clipboard
js
open fun mark(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
meter
Link copied to clipboard
js
open fun meter(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Meter.() -> Unit): Meter
nav
Link copied to clipboard
js
open fun nav(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
noscript
Link copied to clipboard
js
open fun noscript(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
not
Link copied to clipboard
js
open operator fun String.not(): Node
Adds a comment in your HTML by using !"Comment Text".
object
Link copied to clipboard
js
open fun object(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Object.() -> Unit): Object
ol
Link copied to clipboard
js
open fun ol(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Ol.() -> Unit): Ol
optgroup
Link copied to clipboard
js
open fun optgroup(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Optgroup.() -> Unit): Optgroup
option
Link copied to clipboard
js
open fun option(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Option.() -> Unit): Option
output
Link copied to clipboard
js
open fun output(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Output.() -> Unit): Output
p
Link copied to clipboard
js
open fun p(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: P.() -> Unit): P
param
Link copied to clipboard
js
open fun param(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Param.() -> Unit): Param
password
Link copied to clipboard
js
fun password(value: String)
fun password(value: Flow<String>)
path
Link copied to clipboard
js
open fun path(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Path.() -> Unit): Path
pathname
Link copied to clipboard
js
fun pathname(value: String)
fun pathname(value: Flow<String>)
picture
Link copied to clipboard
js
open fun picture(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Picture.() -> Unit): Picture
ping
Link copied to clipboard
js
fun ping(value: String)
fun ping(value: Flow<String>)
port
Link copied to clipboard
js
fun port(value: String)
fun port(value: Flow<String>)
pre
Link copied to clipboard
js
open fun pre(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Pre.() -> Unit): Pre
progress
Link copied to clipboard
js
open fun progress(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Progress.() -> Unit): Progress
protocol
Link copied to clipboard
js
fun protocol(value: String)
fun protocol(value: Flow<String>)
q
Link copied to clipboard
js
open fun q(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
quote
Link copied to clipboard
js
open fun quote(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Quote.() -> Unit): Quote
referrerPolicy
Link copied to clipboard
js
fun referrerPolicy(value: String)
fun referrerPolicy(value: Flow<String>)
register
Link copied to clipboard
js
open override fun <N : Node, W : WithDomNode<N>> register(element: W, content: (W) -> Unit): W
Creates the content of the Tag and appends it as a child to the wrapped Element.
rel
Link copied to clipboard
js
fun rel(value: String)
fun rel(value: Flow<String>)
render
Link copied to clipboard
js
open fun <V> Flow<V>.render(into: Tag<HTMLElement>? = null, content: RenderContext.(V) -> Unit)
Renders the data of a Flow as Tags to the DOM.
renderEach
Link copied to clipboard
js
open fun <V> Store<List<V>>.renderEach(idProvider: IdProvider<V, *>, into: Tag<HTMLElement>? = null, content: RenderContext.(Store<V>) -> Tag<HTMLElement>)
Renders each element of a Stores List content.
open fun <V> Flow<List<V>>.renderEach(idProvider: IdProvider<V, *>? = null, into: Tag<HTMLElement>? = null, content: RenderContext.(V) -> Tag<HTMLElement>)
Renders each element of a Flows content.
renderText
Link copied to clipboard
js
open fun <T> Flow<T>.renderText(into: WithText<HTMLAreaElement>? = null)
Adds text-content of a Flow at this position
open fun Flow<String>.renderText(into: WithText<HTMLAreaElement>? = null)
Adds text-content of a Flow at this position
rp
Link copied to clipboard
js
open fun rp(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
rt
Link copied to clipboard
js
open fun rt(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
ruby
Link copied to clipboard
js
open fun ruby(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
s
Link copied to clipboard
js
open fun s(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
samp
Link copied to clipboard
js
open fun samp(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
script
Link copied to clipboard
js
open fun script(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Script.() -> Unit): Script
search
Link copied to clipboard
js
fun search(value: String)
fun search(value: Flow<String>)
section
Link copied to clipboard
js
open fun section(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
select
Link copied to clipboard
js
open fun select(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Select.() -> Unit): Select
shape
Link copied to clipboard
js
fun shape(value: String)
fun shape(value: Flow<String>)
small
Link copied to clipboard
js
open fun small(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
span
Link copied to clipboard
js
open fun span(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Span.() -> Unit): Span
strong
Link copied to clipboard
js
open fun strong(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
sub
Link copied to clipboard
js
open fun sub(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
summary
Link copied to clipboard
js
open fun summary(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
sup
Link copied to clipboard
js
open fun sup(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
svg
Link copied to clipboard
js
open fun svg(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Svg.() -> Unit): Svg
table
Link copied to clipboard
js
open fun table(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Table.() -> Unit): Table
target
Link copied to clipboard
js
fun target(value: String)
fun target(value: Flow<String>)
tbody
Link copied to clipboard
js
open fun tbody(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TBody.() -> Unit): TBody
td
Link copied to clipboard
js
open fun td(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Td.() -> Unit): Td
textarea
Link copied to clipboard
js
open fun textarea(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextArea.() -> Unit): TextArea
tfoot
Link copied to clipboard
js
open fun tfoot(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TFoot.() -> Unit): TFoot
th
Link copied to clipboard
js
open fun th(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Th.() -> Unit): Th
thead
Link copied to clipboard
js
open fun thead(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: THead.() -> Unit): THead
time
Link copied to clipboard
js
open fun time(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Time.() -> Unit): Time
tr
Link copied to clipboard
js
open fun tr(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Tr.() -> Unit): Tr
track
Link copied to clipboard
js
open fun track(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Track.() -> Unit): Track
u
Link copied to clipboard
js
open fun u(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
ul
Link copied to clipboard
js
open fun ul(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Ul.() -> Unit): Ul
unaryPlus
Link copied to clipboard
js
open operator fun String.unaryPlus(): Node
Adds static text-content at this position
username
Link copied to clipboard
js
fun username(value: String)
fun username(value: Flow<String>)
var
Link copied to clipboard
js
open fun var(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement
video
Link copied to clipboard
js
open fun video(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: Video.() -> Unit): Video
wbr
Link copied to clipboard
js
open fun wbr(baseClass: String? = null, id: String? = null, scope: ScopeContext.() -> Unit = {}, content: TextElement.() -> Unit): TextElement

Properties

aborts
Link copied to clipboard
js
open val aborts: DomListener<UIEvent, HTMLAreaElement>
afterprints
Link copied to clipboard
js
open val afterprints: DomListener<Event, HTMLAreaElement>
annex
Link copied to clipboard
js
val annex: RenderContext
provides RenderContext next to this Tag on the same DOM-level.
baseClass
Link copied to clipboard
js
val baseClass: String?
a static base value for the class-attribute.
beforeprints
Link copied to clipboard
js
open val beforeprints: DomListener<Event, HTMLAreaElement>
beforeunloads
Link copied to clipboard
js
open val beforeunloads: DomListener<UIEvent, HTMLAreaElement>
blurs
Link copied to clipboard
js
open val blurs: DomListener<FocusEvent, HTMLAreaElement>
canplays
Link copied to clipboard
js
open val canplays: DomListener<Event, HTMLAreaElement>
canplaythroughs
Link copied to clipboard
js
open val canplaythroughs: DomListener<Event, HTMLAreaElement>
changes
Link copied to clipboard
js
open val changes: DomListener<Event, HTMLAreaElement>
clicks
Link copied to clipboard
js
open val clicks: DomListener<MouseEvent, HTMLAreaElement>
contextmenus
Link copied to clipboard
js
open val contextmenus: DomListener<MouseEvent, HTMLAreaElement>
copys
Link copied to clipboard
js
open val copys: DomListener<ClipboardEvent, HTMLAreaElement>
cuts
Link copied to clipboard
js
open val cuts: DomListener<ClipboardEvent, HTMLAreaElement>
dblclicks
Link copied to clipboard
js
open val dblclicks: DomListener<MouseEvent, HTMLAreaElement>
domNode
Link copied to clipboard
js
open override val domNode: HTMLAreaElement
the wrapped Node
dragends
Link copied to clipboard
js
open val dragends: DomListener<DragEvent, HTMLAreaElement>
dragenters
Link copied to clipboard
js
open val dragenters: DomListener<DragEvent, HTMLAreaElement>
dragleaves
Link copied to clipboard
js
open val dragleaves: DomListener<DragEvent, HTMLAreaElement>
dragovers
Link copied to clipboard
js
open val dragovers: DomListener<DragEvent, HTMLAreaElement>
drags
Link copied to clipboard
js
open val drags: DomListener<DragEvent, HTMLAreaElement>
dragstarts
Link copied to clipboard
js
open val dragstarts: DomListener<DragEvent, HTMLAreaElement>
drops
Link copied to clipboard
js
open val drops: DomListener<DragEvent, HTMLAreaElement>
durationchanges
Link copied to clipboard
js
open val durationchanges: DomListener<Event, HTMLAreaElement>
endeds
Link copied to clipboard
js
open val endeds: DomListener<Event, HTMLAreaElement>
focusins
Link copied to clipboard
js
open val focusins: DomListener<FocusEvent, HTMLAreaElement>
focusouts
Link copied to clipboard
js
open val focusouts: DomListener<FocusEvent, HTMLAreaElement>
focuss
Link copied to clipboard
js
open val focuss: DomListener<FocusEvent, HTMLAreaElement>
fullscreenchanges
Link copied to clipboard
js
open val fullscreenchanges: DomListener<Event, HTMLAreaElement>
fullscreenerrors
Link copied to clipboard
js
open val fullscreenerrors: DomListener<Event, HTMLAreaElement>
hashchanges
Link copied to clipboard
js
open val hashchanges: DomListener<HashChangeEvent, HTMLAreaElement>
id
Link copied to clipboard
js
val id: String?
the DOM-id of the element to be created
inputs
Link copied to clipboard
js
open val inputs: DomListener<Event, HTMLAreaElement>
invalids
Link copied to clipboard
js
open val invalids: DomListener<Event, HTMLAreaElement>
job
Link copied to clipboard
js
open override val job: Job
used for launching coroutines in
keydowns
Link copied to clipboard
js
open val keydowns: DomListener<KeyboardEvent, HTMLAreaElement>
keypresss
Link copied to clipboard
js
open val keypresss: DomListener<KeyboardEvent, HTMLAreaElement>
keyups
Link copied to clipboard
js
open val keyups: DomListener<KeyboardEvent, HTMLAreaElement>
loadeddatas
Link copied to clipboard
js
open val loadeddatas: DomListener<Event, HTMLAreaElement>
loadedmetadatas
Link copied to clipboard
js
open val loadedmetadatas: DomListener<Event, HTMLAreaElement>
loads
Link copied to clipboard
js
open val loads: DomListener<UIEvent, HTMLAreaElement>
loadstarts
Link copied to clipboard
js
open val loadstarts: DomListener<ProgressEvent, HTMLAreaElement>
messages
Link copied to clipboard
js
open val messages: DomListener<Event, HTMLAreaElement>
mousedowns
Link copied to clipboard
js
open val mousedowns: DomListener<MouseEvent, HTMLAreaElement>
mouseenters
Link copied to clipboard
js
open val mouseenters: DomListener<MouseEvent, HTMLAreaElement>
mouseleaves
Link copied to clipboard
js
open val mouseleaves: DomListener<MouseEvent, HTMLAreaElement>
mousemoves
Link copied to clipboard
js
open val mousemoves: DomListener<MouseEvent, HTMLAreaElement>
mouseouts
Link copied to clipboard
js
open val mouseouts: DomListener<MouseEvent, HTMLAreaElement>
mouseovers
Link copied to clipboard
js
open val mouseovers: DomListener<MouseEvent, HTMLAreaElement>
mouseups
Link copied to clipboard
js
open val mouseups: DomListener<MouseEvent, HTMLAreaElement>
offlines
Link copied to clipboard
js
open val offlines: DomListener<Event, HTMLAreaElement>
onlines
Link copied to clipboard
js
open val onlines: DomListener<Event, HTMLAreaElement>
opens
Link copied to clipboard
js
open val opens: DomListener<Event, HTMLAreaElement>
pagehides
Link copied to clipboard
js
open val pagehides: DomListener<PageTransitionEvent, HTMLAreaElement>
pageshows
Link copied to clipboard
js
open val pageshows: DomListener<PageTransitionEvent, HTMLAreaElement>
pastes
Link copied to clipboard
js
open val pastes: DomListener<ClipboardEvent, HTMLAreaElement>
pauses
Link copied to clipboard
js
open val pauses: DomListener<Event, HTMLAreaElement>
playings
Link copied to clipboard
js
open val playings: DomListener<Event, HTMLAreaElement>
plays
Link copied to clipboard
js
open val plays: DomListener<Event, HTMLAreaElement>
popstates
Link copied to clipboard
js
open val popstates: DomListener<PopStateEvent, HTMLAreaElement>
progresss
Link copied to clipboard
js
open val progresss: DomListener<Event, HTMLAreaElement>
ratechanges
Link copied to clipboard
js
open val ratechanges: DomListener<Event, HTMLAreaElement>
resets
Link copied to clipboard
js
open val resets: DomListener<Event, HTMLAreaElement>
resizes
Link copied to clipboard
js
open val resizes: DomListener<UIEvent, HTMLAreaElement>
scope
Link copied to clipboard
js
open override val scope: Scope
set some arbitrary scope entries into the Tag's scope
scrolls
Link copied to clipboard
js
open val scrolls: DomListener<UIEvent, HTMLAreaElement>
searchs
Link copied to clipboard
js
open val searchs: DomListener<Event, HTMLAreaElement>
seekeds
Link copied to clipboard
js
open val seekeds: DomListener<Event, HTMLAreaElement>
seekings
Link copied to clipboard
js
open val seekings: DomListener<Event, HTMLAreaElement>
selects
Link copied to clipboard
js
open val selects: DomListener<UIEvent, HTMLAreaElement>
shows
Link copied to clipboard
js
open val shows: DomListener<Event, HTMLAreaElement>
stalleds
Link copied to clipboard
js
open val stalleds: DomListener<Event, HTMLAreaElement>
storages
Link copied to clipboard
js
open val storages: DomListener<StorageEvent, HTMLAreaElement>
submits
Link copied to clipboard
js
open val submits: DomListener<Event, HTMLAreaElement>
suspends
Link copied to clipboard
js
open val suspends: DomListener<Event, HTMLAreaElement>
timeupdates
Link copied to clipboard
js
open val timeupdates: DomListener<Event, HTMLAreaElement>
toggles
Link copied to clipboard
js
open val toggles: DomListener<Event, HTMLAreaElement>
touchcancels
Link copied to clipboard
js
open val touchcancels: DomListener<TouchEvent, HTMLAreaElement>
touchends
Link copied to clipboard
js
open val touchends: DomListener<TouchEvent, HTMLAreaElement>
touchmoves
Link copied to clipboard
js
open val touchmoves: DomListener<TouchEvent, HTMLAreaElement>
touchstarts
Link copied to clipboard
js
open val touchstarts: DomListener<TouchEvent, HTMLAreaElement>
unloads
Link copied to clipboard
js
open val unloads: DomListener<UIEvent, HTMLAreaElement>
volumechanges
Link copied to clipboard
js
open val volumechanges: DomListener<Event, HTMLAreaElement>
waitings
Link copied to clipboard
js
open val waitings: DomListener<Event, HTMLAreaElement>
wheels
Link copied to clipboard
js
open val wheels: DomListener<WheelEvent, HTMLAreaElement>