From 806edfceeefe7fda47924f97237974e99fe28a02 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 2 Apr 2018 01:35:47 +0200 Subject: API documentantion update --- .../-check-box/-init-.html | 8 +++--- .../-check-box/check-box.html | 4 +-- .../-check-box/disabled.html | 16 ----------- .../-check-box/index.html | 31 ++-------------------- .../-check-box/name.html | 15 ----------- .../-check-box/size.html | 16 ----------- 6 files changed, 9 insertions(+), 81 deletions(-) delete mode 100644 api/pl.treksoft.kvision.form.check/-check-box/disabled.html delete mode 100644 api/pl.treksoft.kvision.form.check/-check-box/name.html delete mode 100644 api/pl.treksoft.kvision.form.check/-check-box/size.html (limited to 'api/pl.treksoft.kvision.form.check/-check-box') diff --git a/api/pl.treksoft.kvision.form.check/-check-box/-init-.html b/api/pl.treksoft.kvision.form.check/-check-box/-init-.html index cecdf1d3..a3796cd8 100644 --- a/api/pl.treksoft.kvision.form.check/-check-box/-init-.html +++ b/api/pl.treksoft.kvision.form.check/-check-box/-init-.html @@ -8,15 +8,17 @@ kvision / pl.treksoft.kvision.form.check / CheckBox / <init>

<init>

- -CheckBox(value: Boolean = false, label: String? = null, rich: Boolean = false) + +CheckBox(value: Boolean = false, name: String? = null, label: String? = null, rich: Boolean = false)

Parameters

value - selection state

+

+name - the name of the input element

label - label text bound to the input element

-rich - determines if label can contain HTML code

+rich - determines if label can contain HTML code

Constructor

diff --git a/api/pl.treksoft.kvision.form.check/-check-box/check-box.html b/api/pl.treksoft.kvision.form.check/-check-box/check-box.html index 6a137610..31c07058 100644 --- a/api/pl.treksoft.kvision.form.check/-check-box/check-box.html +++ b/api/pl.treksoft.kvision.form.check/-check-box/check-box.html @@ -8,8 +8,8 @@ kvision / pl.treksoft.kvision.form.check / CheckBox / checkBox

checkBox

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

DSL builder extension function.

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

diff --git a/api/pl.treksoft.kvision.form.check/-check-box/disabled.html b/api/pl.treksoft.kvision.form.check/-check-box/disabled.html deleted file mode 100644 index 7fb35ea8..00000000 --- a/api/pl.treksoft.kvision.form.check/-check-box/disabled.html +++ /dev/null @@ -1,16 +0,0 @@ - - - -CheckBox.disabled - kvision - - - -kvision / pl.treksoft.kvision.form.check / CheckBox / disabled
-
-

disabled

- -open var disabled: Boolean -

Overrides FormControl.disabled

-

Determines if the field is disabled.

- - diff --git a/api/pl.treksoft.kvision.form.check/-check-box/index.html b/api/pl.treksoft.kvision.form.check/-check-box/index.html index 9f9cd319..dbcc8daa 100644 --- a/api/pl.treksoft.kvision.form.check/-check-box/index.html +++ b/api/pl.treksoft.kvision.form.check/-check-box/index.html @@ -18,7 +18,7 @@

<init>

-CheckBox(value: Boolean = false, label: String? = null, rich: Boolean = false) +CheckBox(value: Boolean = false, name: String? = null, label: String? = null, rich: Boolean = false) @@ -36,15 +36,6 @@ -

disabled

- - -open var disabled: Boolean -

Determines if the field is disabled.

- - - -

flabel

@@ -81,15 +72,6 @@ -

name

- - -var name: String? -

The name attribute of the generated HTML input element.

- - - -

rich

@@ -99,15 +81,6 @@ -

size

- - -open var size: InputSize? -

The size of the input.

- - - -

startValue

@@ -317,7 +290,7 @@

checkBox

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

DSL builder extension function.

diff --git a/api/pl.treksoft.kvision.form.check/-check-box/name.html b/api/pl.treksoft.kvision.form.check/-check-box/name.html deleted file mode 100644 index 6002ecca..00000000 --- a/api/pl.treksoft.kvision.form.check/-check-box/name.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -CheckBox.name - kvision - - - -kvision / pl.treksoft.kvision.form.check / CheckBox / name
-
-

name

- -var name: String? -

The name attribute of the generated HTML input element.

- - diff --git a/api/pl.treksoft.kvision.form.check/-check-box/size.html b/api/pl.treksoft.kvision.form.check/-check-box/size.html deleted file mode 100644 index 2cfda2b5..00000000 --- a/api/pl.treksoft.kvision.form.check/-check-box/size.html +++ /dev/null @@ -1,16 +0,0 @@ - - - -CheckBox.size - kvision - - - -kvision / pl.treksoft.kvision.form.check / CheckBox / size
-
-

size

- -open var size: InputSize? -

Overrides FormControl.size

-

The size of the input.

- - -- cgit