From f23e74c2eb0cae2f6ce674881e86ab5d5659ad77 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Tue, 29 Jan 2019 23:41:38 +0100 Subject: API documentation for KVision 0.0.23 --- api/pl.treksoft.kvision.form.spinner/-spinner/-init-.html | 6 +++--- api/pl.treksoft.kvision.form.spinner/-spinner/index.html | 8 ++++---- api/pl.treksoft.kvision.form.spinner/-spinner/max.html | 2 +- api/pl.treksoft.kvision.form.spinner/-spinner/min.html | 2 +- api/pl.treksoft.kvision.form.spinner/-spinner/spinner.html | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) (limited to 'api/pl.treksoft.kvision.form.spinner/-spinner') diff --git a/api/pl.treksoft.kvision.form.spinner/-spinner/-init-.html b/api/pl.treksoft.kvision.form.spinner/-spinner/-init-.html index 64202d9d..c1b6525e 100644 --- a/api/pl.treksoft.kvision.form.spinner/-spinner/-init-.html +++ b/api/pl.treksoft.kvision.form.spinner/-spinner/-init-.html @@ -9,16 +9,16 @@

<init>

-Spinner(value: Number? = null, name: String? = null, min: Int = 0, max: Int = DEFAULT_MAX, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: ButtonsType = ButtonsType.VERTICAL, forceType: ForceType = ForceType.NONE, label: String? = null, rich: Boolean = false) +Spinner(value: Number? = null, name: String? = null, min: Int? = null, max: Int? = null, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: ButtonsType = ButtonsType.VERTICAL, forceType: ForceType = ForceType.NONE, label: String? = null, rich: Boolean = false)

Parameters

value - spinner value

name - the name attribute of the generated HTML input element

-min - minimal value (default 0)

+min - minimal value

-max - maximal value (default 100)

+max - maximal value

step - step value (default 1)

diff --git a/api/pl.treksoft.kvision.form.spinner/-spinner/index.html b/api/pl.treksoft.kvision.form.spinner/-spinner/index.html index f2d8bda6..fed522a0 100644 --- a/api/pl.treksoft.kvision.form.spinner/-spinner/index.html +++ b/api/pl.treksoft.kvision.form.spinner/-spinner/index.html @@ -18,7 +18,7 @@

<init>

-Spinner(value: Number? = null, name: String? = null, min: Int = 0, max: Int = DEFAULT_MAX, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: ButtonsType = ButtonsType.VERTICAL, forceType: ForceType = ForceType.NONE, label: String? = null, rich: Boolean = false) +Spinner(value: Number? = null, name: String? = null, min: Int? = null, max: Int? = null, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: ButtonsType = ButtonsType.VERTICAL, forceType: ForceType = ForceType.NONE, label: String? = null, rich: Boolean = false) @@ -100,7 +100,7 @@

max

-var max: Int +var max: Int?

Maximal value.

@@ -109,7 +109,7 @@

min

-var min: Int +var min: Int?

Minimal value.

@@ -360,7 +360,7 @@

spinner

-fun Container.spinner(value: Number? = null, name: String? = null, min: Int = 0, max: Int = DEFAULT_MAX, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: ButtonsType = ButtonsType.VERTICAL, forceType: ForceType = ForceType.NONE, label: String? = null, rich: Boolean = false, init: Spinner.() -> Unit = null): Spinner +fun Container.spinner(value: Number? = null, name: String? = null, min: Int? = null, max: Int? = null, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: ButtonsType = ButtonsType.VERTICAL, forceType: ForceType = ForceType.NONE, label: String? = null, rich: Boolean = false, init: Spinner.() -> Unit = null): Spinner

DSL builder extension function.

diff --git a/api/pl.treksoft.kvision.form.spinner/-spinner/max.html b/api/pl.treksoft.kvision.form.spinner/-spinner/max.html index 713b977d..9316fe68 100644 --- a/api/pl.treksoft.kvision.form.spinner/-spinner/max.html +++ b/api/pl.treksoft.kvision.form.spinner/-spinner/max.html @@ -9,7 +9,7 @@

max

-var max: Int +var max: Int?

Maximal value.

diff --git a/api/pl.treksoft.kvision.form.spinner/-spinner/min.html b/api/pl.treksoft.kvision.form.spinner/-spinner/min.html index 9cbca796..1ff8c2ad 100644 --- a/api/pl.treksoft.kvision.form.spinner/-spinner/min.html +++ b/api/pl.treksoft.kvision.form.spinner/-spinner/min.html @@ -9,7 +9,7 @@

min

-var min: Int +var min: Int?

Minimal value.

diff --git a/api/pl.treksoft.kvision.form.spinner/-spinner/spinner.html b/api/pl.treksoft.kvision.form.spinner/-spinner/spinner.html index ee16eaa9..e156f60f 100644 --- a/api/pl.treksoft.kvision.form.spinner/-spinner/spinner.html +++ b/api/pl.treksoft.kvision.form.spinner/-spinner/spinner.html @@ -9,7 +9,7 @@

spinner

-fun Container.spinner(value: Number? = null, name: String? = null, min: Int = 0, max: Int = DEFAULT_MAX, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: ButtonsType = ButtonsType.VERTICAL, forceType: ForceType = ForceType.NONE, label: String? = null, rich: Boolean = false, init: Spinner.() -> Unit = null): Spinner +fun Container.spinner(value: Number? = null, name: String? = null, min: Int? = null, max: Int? = null, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: ButtonsType = ButtonsType.VERTICAL, forceType: ForceType = ForceType.NONE, label: String? = null, rich: Boolean = false, init: Spinner.() -> Unit = null): Spinner

DSL builder extension function.

It takes the same parameters as the constructor of the built component.

-- cgit