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.form.check/index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'api/pl.treksoft.kvision.form.check/index.html') diff --git a/api/pl.treksoft.kvision.form.check/index.html b/api/pl.treksoft.kvision.form.check/index.html index 3cb679bc..9eea4f3d 100644 --- a/api/pl.treksoft.kvision.form.check/index.html +++ b/api/pl.treksoft.kvision.form.check/index.html @@ -19,7 +19,7 @@

The form field component rendered as HTML input type="checkbox".

-open class CheckBox : SimplePanel, BoolFormControl +open class CheckBox : SimplePanel, BoolFormControl, ObservableState<Boolean> @@ -46,7 +46,7 @@

The basic input component rendered as HTML input type="checkbox" or input type="radio".

-abstract class CheckInput : Widget, FormInput +abstract class CheckInput : Widget, FormInput, ObservableState<Boolean> @@ -64,7 +64,7 @@

The form field component rendered as HTML input type="radio".

-open class Radio : SimplePanel, BoolFormControl +open class Radio : SimplePanel, BoolFormControl, ObservableState<Boolean> @@ -73,7 +73,7 @@

The form field component rendered as a group of HTML input type="radio" elements with the same name attribute.

-open class RadioGroup : SimplePanel, StringFormControl +open class RadioGroup : SimplePanel, StringFormControl, ObservableState<String?> @@ -82,7 +82,7 @@

The input component rendered as a group of HTML input type="radio" elements with the same name attribute.

-open class RadioGroupInput : SimplePanel, FormInput +open class RadioGroupInput : SimplePanel, FormInput, ObservableState<String?> @@ -123,7 +123,7 @@

DSL builder extension function.

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

DSL builder extension function.

-fun Container.radioInput(value: Boolean = false, classes: Set<String> = setOf(), init: (CheckInput.() -> Unit)? = null): RadioInput +fun Container.radioInput(value: Boolean = false, classes: Set<String>? = null, className: String? = null, init: (CheckInput.() -> Unit)? = null): RadioInput -- cgit