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 --- .../-text-area/-init-.html | 8 +++--- .../-text-area/index.html | 31 ++-------------------- .../-text-area/text-area.html | 4 +-- 3 files changed, 9 insertions(+), 34 deletions(-) (limited to 'api/pl.treksoft.kvision.form.text/-text-area') diff --git a/api/pl.treksoft.kvision.form.text/-text-area/-init-.html b/api/pl.treksoft.kvision.form.text/-text-area/-init-.html index cfd6c895..27a727b5 100644 --- a/api/pl.treksoft.kvision.form.text/-text-area/-init-.html +++ b/api/pl.treksoft.kvision.form.text/-text-area/-init-.html @@ -8,8 +8,8 @@ kvision / pl.treksoft.kvision.form.text / TextArea / <init>

<init>

- -TextArea(cols: Int? = null, rows: Int? = null, value: String? = null, label: String? = null, rich: Boolean = false) + +TextArea(cols: Int? = null, rows: Int? = null, value: String? = null, name: String? = null, label: String? = null, rich: Boolean = false)

Parameters

cols - number of columns

@@ -17,10 +17,12 @@ rows - number of rows

value - text input value

+

+name - the name attribute of the generated HTML 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.text/-text-area/index.html b/api/pl.treksoft.kvision.form.text/-text-area/index.html index a7ae8d8c..be73c823 100644 --- a/api/pl.treksoft.kvision.form.text/-text-area/index.html +++ b/api/pl.treksoft.kvision.form.text/-text-area/index.html @@ -18,7 +18,7 @@

<init>

-TextArea(cols: Int? = null, rows: Int? = null, value: String? = null, label: String? = null, rich: Boolean = false) +TextArea(cols: Int? = null, rows: Int? = null, value: String? = null, name: String? = null, label: String? = null, rich: Boolean = false) @@ -77,15 +77,6 @@ -

disabled

- - -open var disabled: Boolean -

Determines if the field is disabled.

- - - -

flabel

@@ -113,15 +104,6 @@ -

name

- - -var name: String? -

The name attribute of the generated HTML input element.

- - - -

placeholder

@@ -149,15 +131,6 @@ -

size

- - -open var size: InputSize? -

Input control size.

- - - -

startValue

@@ -245,7 +218,7 @@

textArea

-fun Container.textArea(cols: Int? = null, rows: Int? = null, value: String? = null, label: String? = null, rich: Boolean = false, init: TextArea.() -> Unit = null): TextArea +fun Container.textArea(cols: Int? = null, rows: Int? = null, value: String? = null, name: String? = null, label: String? = null, rich: Boolean = false, init: TextArea.() -> Unit = null): TextArea

DSL builder extension function.

diff --git a/api/pl.treksoft.kvision.form.text/-text-area/text-area.html b/api/pl.treksoft.kvision.form.text/-text-area/text-area.html index 392f8a3a..0aa43c36 100644 --- a/api/pl.treksoft.kvision.form.text/-text-area/text-area.html +++ b/api/pl.treksoft.kvision.form.text/-text-area/text-area.html @@ -8,8 +8,8 @@ kvision / pl.treksoft.kvision.form.text / TextArea / textArea

textArea

- -fun Container.textArea(cols: Int? = null, rows: Int? = null, value: String? = null, label: String? = null, rich: Boolean = false, init: TextArea.() -> Unit = null): TextArea + +fun Container.textArea(cols: Int? = null, rows: Int? = null, value: String? = null, name: String? = null, label: String? = null, rich: Boolean = false, init: TextArea.() -> Unit = null): TextArea

DSL builder extension function.

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

-- cgit