From bfd5aa358e141d6c86d476d8bb66b104a80a3b96 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Thu, 21 May 2020 00:13:50 +0200 Subject: API documentation for KVision 3.10.0 --- api/pl.treksoft.kvision.html/-fieldset/-init-.html | 27 + api/pl.treksoft.kvision.html/-fieldset/index.html | 1043 ++++++++++++++++++++ 2 files changed, 1070 insertions(+) create mode 100644 api/pl.treksoft.kvision.html/-fieldset/-init-.html create mode 100644 api/pl.treksoft.kvision.html/-fieldset/index.html (limited to 'api/pl.treksoft.kvision.html/-fieldset') diff --git a/api/pl.treksoft.kvision.html/-fieldset/-init-.html b/api/pl.treksoft.kvision.html/-fieldset/-init-.html new file mode 100644 index 00000000..2bcf80a2 --- /dev/null +++ b/api/pl.treksoft.kvision.html/-fieldset/-init-.html @@ -0,0 +1,27 @@ + + + +Fieldset.<init> - kvision + + + +kvision / pl.treksoft.kvision.html / Fieldset / <init>
+
+

<init>

+(js) +Fieldset(content: String? = null, rich: Boolean = false, align: Align? = null, classes: Set<String> = setOf(), init: (Fieldset.() -> Unit)? = null) +

Parameters

+

+content - element text

+

+rich - determines if content can contain HTML code

+

+align - content align

+

+classes - a set of CSS class names

+

+init - an initializer extension function

+

Constructor
+

+ + diff --git a/api/pl.treksoft.kvision.html/-fieldset/index.html b/api/pl.treksoft.kvision.html/-fieldset/index.html new file mode 100644 index 00000000..f86d2f31 --- /dev/null +++ b/api/pl.treksoft.kvision.html/-fieldset/index.html @@ -0,0 +1,1043 @@ + + + +Fieldset - kvision + + + +kvision / pl.treksoft.kvision.html / Fieldset
+
+

Fieldset

+(js) open class Fieldset : Tag +

Simple component rendered as fieldset.

+

Constructors

+ + + + + + + +
+(js) +

<init>

+
+Fieldset(content: String? = null, rich: Boolean = false, align: Align? = null, classes: Set<String> = setOf(), init: (Fieldset.() -> Unit)? = null)
+

Extension Properties

+ + + + + + + + + + + + + + + +
+(js) +

changeFlow

+
+

Extension property returning Flow for a change event.

+val <T : Widget> T.changeFlow: Flow<T>
+(js) +

clickFlow

+
+

Extension property returning Flow for a click event.

+val <T : Widget> T.clickFlow: Flow<T>
+(js) +

inputFlow

+
+

Extension property returning Flow for an input event.

+val <T : Widget> T.inputFlow: Flow<T>
+

Extension Functions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+(js) +

addBsBgColor

+
+fun Component.addBsBgColor(bsBgColor: BsBgColor): Unit
+(js) +

addBsBorder

+
+fun Component.addBsBorder(vararg bsBorder: BsBorder): Unit
+(js) +

addBsClearfix

+
+fun Component.addBsClearfix(): Unit
+(js) +

addBsColor

+
+fun Component.addBsColor(bsColor: BsColor): Unit
+(js) +

addBsRounded

+
+fun Component.addBsRounded(vararg bsRounded: BsRounded): Unit
+(js) +

bind

+
+

An extension function which binds the widget to the observable state.

+fun <S, W : Widget> W.bind(observableState: ObservableState<S>, factory: W.(S) -> Unit): W
+(js) +

bold

+
+

DSL builder extension function.

+fun Container.bold(content: String? = null, rich: Boolean = false, align: Align? = null, classes: Set<String>? = null, className: String? = null, init: (Bold.() -> Unit)? = null): Bold
+(js) +

button

+
+

DSL builder extension function.

+fun Container.button(text: String, icon: String? = null, style: ButtonStyle = ButtonStyle.PRIMARY, type: ButtonType = ButtonType.BUTTON, disabled: Boolean = false, separator: String? = null, labelFirst: Boolean = true, classes: Set<String>? = null, className: String? = null, init: (Button.() -> Unit)? = null): Button
+(js) +

buttonGroup

+
+

DSL builder extension function.

+fun Container.buttonGroup(size: ButtonGroupSize? = null, vertical: Boolean = false, classes: Set<String>? = null, className: String? = null, init: (ButtonGroup.() -> Unit)? = null): ButtonGroup
+(js) +

canvas

+
+

DSL builder extension function.

+fun Container.canvas(canvasWidth: Int? = null, canvasHeight: Int? = null, classes: Set<String>? = null, className: String? = null, init: (Canvas.() -> Unit)? = null): Canvas
+(js) +

chart

+
+

DSL builder extension function.

+fun Container.chart(configuration: Configuration, chartWidth: Int? = null, chartHeight: Int? = null, classes: Set<String>? = null, className: String? = null, init: (Chart.() -> Unit)? = null): Chart
+(js) +

checkBox

+
+

DSL builder extension function.

+fun Container.checkBox(value: Boolean = false, name: String? = null, label: String? = null, rich: Boolean = false, init: (CheckBox.() -> Unit)? = null): CheckBox
+(js) +

checkBoxInput

+
+

DSL builder extension function.

+fun Container.checkBoxInput(value: Boolean = false, classes: Set<String>? = null, className: String? = null, init: (CheckInput.() -> Unit)? = null): CheckBoxInput
+(js) +

contextMenu

+
+

DSL builder extension function.

+fun Widget.contextMenu(fixedPosition: Boolean = false, classes: Set<String>? = null, className: String? = null, init: (ContextMenu.() -> Unit)? = null): ContextMenu
+(js) +

customTag

+
+

DSL builder extension function.

+fun Container.customTag(elementName: String, content: String? = null, rich: Boolean = false, align: Align? = null, classes: Set<String>? = null, className: String? = null, attributes: Map<String, String> = mapOf(), init: (CustomTag.() -> Unit)? = null): CustomTag
+(js) +

dataContainer

+
+

DSL builder extension function.

+fun <M, C : Component, CONT : Container> Container.dataContainer(model: MutableList<M>, factory: Container.(M, Int, MutableList<M>) -> C, container: CONT, containerAdd: (CONT.(C, M) -> Unit)? = null, filter: ((M) -> Bo