Package-level declarations

Text input components, with password, text area, rich text area and typeahead support.

Types

Link copied to clipboard
open class RichText(value: String? = null, name: String? = null, label: String? = null, rich: Boolean = false, allowFileUploads: Boolean = false, init: RichText.() -> Unit? = null) : AbstractText

Form field rich text component.

Link copied to clipboard
open class RichTextInput(value: String? = null, allowFileUploads: Boolean = false, className: String? = null, init: RichTextInput.() -> Unit? = null) : AbstractTextInput

Basic rich text component.

Functions

Link copied to clipboard
fun Container.richText(value: String? = null, name: String? = null, label: String? = null, rich: Boolean = false, allowFileUploads: Boolean = false, init: RichText.() -> Unit? = null): RichText

DSL builder extension function.

Link copied to clipboard
fun Container.richTextInput(value: String? = null, allowFileUploads: Boolean = false, className: String? = null, init: RichTextInput.() -> Unit? = null): RichTextInput

DSL builder extension function.