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.spinner/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'api/pl.treksoft.kvision.form.spinner/index.html') diff --git a/api/pl.treksoft.kvision.form.spinner/index.html b/api/pl.treksoft.kvision.form.spinner/index.html index e8d31bb0..683aa688 100644 --- a/api/pl.treksoft.kvision.form.spinner/index.html +++ b/api/pl.treksoft.kvision.form.spinner/index.html @@ -37,7 +37,7 @@

The form field component for spinner control.

-open class Spinner : SimplePanel, NumberFormControl +open class Spinner : SimplePanel, NumberFormControl, ObservableState<Number?> @@ -46,7 +46,7 @@

The basic component for spinner control.

-open class SpinnerInput : Widget, FormInput +open class SpinnerInput : Widget, FormInput, ObservableState<Number?> @@ -69,7 +69,7 @@

DSL builder extension function.

-fun Container.spinnerInput(value: Number? = null, min: Number? = null, max: Number? = null, step: Number = DEFAULT_STEP, decimals: Int = 0, buttonsType: ButtonsType = ButtonsType.VERTICAL, forceType: ForceType = ForceType.NONE, buttonStyle: ButtonStyle? = null, classes: Set<String> = setOf(), init: (SpinnerInput.() -> Unit)? = null): SpinnerInput +fun Container.spinnerInput(value: Number? = null, min: Number? = null, max: Number? = null, step: Number = DEFAULT_STEP, decimals: Int = 0, buttonsType: ButtonsType = ButtonsType.VERTICAL, forceType: ForceType = ForceType.NONE, buttonStyle: ButtonStyle? = null, classes: Set<String>? = null, className: String? = null, init: (SpinnerInput.() -> Unit)? = null): SpinnerInput -- cgit