From 4191287261b46b95908469c2ec3fa9d886681861 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 12 Feb 2018 10:51:45 +0100 Subject: Updated API doc --- .../-check-box/check-box.html | 16 ++++++++++++++++ .../pl.treksoft.kvision.form.check/-check-box/index.html | 14 ++++++++++++++ .../-check-input/check-input.html | 16 ++++++++++++++++ .../-check-input/index.html | 14 ++++++++++++++ .../-radio-group/index.html | 14 ++++++++++++++ .../-radio-group/radio-group.html | 16 ++++++++++++++++ .../api/pl.treksoft.kvision.form.check/-radio/index.html | 14 ++++++++++++++ .../api/pl.treksoft.kvision.form.check/-radio/radio.html | 16 ++++++++++++++++ 8 files changed, 120 insertions(+) create mode 100644 docs/api/pl.treksoft.kvision.form.check/-check-box/check-box.html create mode 100644 docs/api/pl.treksoft.kvision.form.check/-check-input/check-input.html create mode 100644 docs/api/pl.treksoft.kvision.form.check/-radio-group/radio-group.html create mode 100644 docs/api/pl.treksoft.kvision.form.check/-radio/radio.html (limited to 'docs/api/pl.treksoft.kvision.form.check') diff --git a/docs/api/pl.treksoft.kvision.form.check/-check-box/check-box.html b/docs/api/pl.treksoft.kvision.form.check/-check-box/check-box.html new file mode 100644 index 00000000..d87d621a --- /dev/null +++ b/docs/api/pl.treksoft.kvision.form.check/-check-box/check-box.html @@ -0,0 +1,16 @@ + + + +CheckBox.checkBox - kvision + + + +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): Unit +

DSL builder extension function

+

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

+ + diff --git a/docs/api/pl.treksoft.kvision.form.check/-check-box/index.html b/docs/api/pl.treksoft.kvision.form.check/-check-box/index.html index 1881f122..eea261ae 100644 --- a/docs/api/pl.treksoft.kvision.form.check/-check-box/index.html +++ b/docs/api/pl.treksoft.kvision.form.check/-check-box/index.html @@ -291,5 +291,19 @@ +

Companion Object Functions

+ + + + + + + +
+

checkBox

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

DSL builder extension function

+
diff --git a/docs/api/pl.treksoft.kvision.form.check/-check-input/check-input.html b/docs/api/pl.treksoft.kvision.form.check/-check-input/check-input.html new file mode 100644 index 00000000..74197067 --- /dev/null +++ b/docs/api/pl.treksoft.kvision.form.check/-check-input/check-input.html @@ -0,0 +1,16 @@ + + + +CheckInput.checkInput - kvision + + + +kvision / pl.treksoft.kvision.form.check / CheckInput / checkInput
+
+

checkInput

+ +fun Container.checkInput(type: CHECKINPUTTYPE = CHECKINPUTTYPE.CHECKBOX, value: Boolean = false, classes: Set<String> = setOf(), init: CheckInput.() -> Unit = null): Unit +

DSL builder extension function

+

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

+ + diff --git a/docs/api/pl.treksoft.kvision.form.check/-check-input/index.html b/docs/api/pl.treksoft.kvision.form.check/-check-input/index.html index 5f486534..6ceb25f4 100644 --- a/docs/api/pl.treksoft.kvision.form.check/-check-input/index.html +++ b/docs/api/pl.treksoft.kvision.form.check/-check-input/index.html @@ -360,5 +360,19 @@ +

Companion Object Functions

+ + + + + + + +
+

checkInput

+
+fun Container.checkInput(type: CHECKINPUTTYPE = CHECKINPUTTYPE.CHECKBOX, value: Boolean = false, classes: Set<String> = setOf(), init: CheckInput.() -> Unit = null): Unit +

DSL builder extension function

+
diff --git a/docs/api/pl.treksoft.kvision.form.check/-radio-group/index.html b/docs/api/pl.treksoft.kvision.form.check/-radio-group/index.html index 79778fc4..20bd4a77 100644 --- a/docs/api/pl.treksoft.kvision.form.check/-radio-group/index.html +++ b/docs/api/pl.treksoft.kvision.form.check/-radio-group/index.html @@ -237,5 +237,19 @@ +

Companion Object Functions

+ + + + + + + +
+

radioGroup

+
+fun Container.radioGroup(options: List<StringPair>? = null, value: String? = null, inline: Boolean = false, label: String? = null, rich: Boolean = false, init: RadioGroup.() -> Unit = null): Unit +

DSL builder extension function

+
diff --git a/docs/api/pl.treksoft.kvision.form.check/-radio-group/radio-group.html b/docs/api/pl.treksoft.kvision.form.check/-radio-group/radio-group.html new file mode 100644 index 00000000..6fb79085 --- /dev/null +++ b/docs/api/pl.treksoft.kvision.form.check/-radio-group/radio-group.html @@ -0,0 +1,16 @@ + + + +RadioGroup.radioGroup - kvision + + + +kvision / pl.treksoft.kvision.form.check / RadioGroup / radioGroup
+
+

radioGroup

+ +fun Container.radioGroup(options: List<StringPair>? = null, value: String? = null, inline: Boolean = false, label: String? = null, rich: Boolean = false, init: RadioGroup.() -> Unit = null): Unit +

DSL builder extension function

+

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

+ + diff --git a/docs/api/pl.treksoft.kvision.form.check/-radio/index.html b/docs/api/pl.treksoft.kvision.form.check/-radio/index.html index 914d5277..b40efb6d 100644 --- a/docs/api/pl.treksoft.kvision.form.check/-radio/index.html +++ b/docs/api/pl.treksoft.kvision.form.check/-radio/index.html @@ -300,5 +300,19 @@ +

Companion Object Functions

+ + + + + + + +
+

radio

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

DSL builder extension function

+
diff --git a/docs/api/pl.treksoft.kvision.form.check/-radio/radio.html b/docs/api/pl.treksoft.kvision.form.check/-radio/radio.html new file mode 100644 index 00000000..04f101b4 --- /dev/null +++ b/docs/api/pl.treksoft.kvision.form.check/-radio/radio.html @@ -0,0 +1,16 @@ + + + +Radio.radio - kvision + + + +kvision / pl.treksoft.kvision.form.check / Radio / radio
+
+

radio

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

DSL builder extension function

+

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

+ + -- cgit