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 --- .../-rich-text/-init-.html | 8 +++--- .../-rich-text/index.html | 31 ++-------------------- .../-rich-text/rich-text.html | 4 +-- 3 files changed, 9 insertions(+), 34 deletions(-) (limited to 'api/pl.treksoft.kvision.form.text/-rich-text') diff --git a/api/pl.treksoft.kvision.form.text/-rich-text/-init-.html b/api/pl.treksoft.kvision.form.text/-rich-text/-init-.html index d0880ff1..218a6e93 100644 --- a/api/pl.treksoft.kvision.form.text/-rich-text/-init-.html +++ b/api/pl.treksoft.kvision.form.text/-rich-text/-init-.html @@ -8,15 +8,17 @@ kvision / pl.treksoft.kvision.form.text / RichText / <init>

<init>

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

Parameters

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/-rich-text/index.html b/api/pl.treksoft.kvision.form.text/-rich-text/index.html index 00a424f6..71ee0dc8 100644 --- a/api/pl.treksoft.kvision.form.text/-rich-text/index.html +++ b/api/pl.treksoft.kvision.form.text/-rich-text/index.html @@ -18,7 +18,7 @@

<init>

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

disabled

- - -open var disabled: Boolean -

Determines if the field is disabled.

- - - -

flabel

@@ -95,15 +86,6 @@ -

name

- - -var name: String? -

The name attribute of the generated HTML input element.

- - - -

placeholder

@@ -131,15 +113,6 @@ -

size

- - -open var size: InputSize? -

Input control size.

- - - -

startValue

@@ -227,7 +200,7 @@

richText

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

DSL builder extension function.

diff --git a/api/pl.treksoft.kvision.form.text/-rich-text/rich-text.html b/api/pl.treksoft.kvision.form.text/-rich-text/rich-text.html index 55ed8174..2dd27587 100644 --- a/api/pl.treksoft.kvision.form.text/-rich-text/rich-text.html +++ b/api/pl.treksoft.kvision.form.text/-rich-text/rich-text.html @@ -8,8 +8,8 @@ kvision / pl.treksoft.kvision.form.text / RichText / richText

richText

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

DSL builder extension function.

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

-- cgit