From 12d2bd198c9ff5cb197e50da2d024a2418b8ee36 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sat, 2 Jun 2018 00:47:15 +0200 Subject: Upgrade to 0.0.13 --- api/pl.treksoft.kvision.form.time/-date-time/-init-.html | 6 +++--- .../-date-time/date-time.html | 4 ++-- .../-date-time/get-value-as-string.html | 2 +- api/pl.treksoft.kvision.form.time/-date-time/index.html | 16 ++++++++-------- api/pl.treksoft.kvision.form.time/-date-time/value.html | 4 ++-- 5 files changed, 16 insertions(+), 16 deletions(-) (limited to 'api/pl.treksoft.kvision.form.time/-date-time') diff --git a/api/pl.treksoft.kvision.form.time/-date-time/-init-.html b/api/pl.treksoft.kvision.form.time/-date-time/-init-.html index 723a95b2..c95b6a63 100644 --- a/api/pl.treksoft.kvision.form.time/-date-time/-init-.html +++ b/api/pl.treksoft.kvision.form.time/-date-time/-init-.html @@ -8,8 +8,8 @@ kvision / pl.treksoft.kvision.form.time / DateTime / <init>

<init>

- -DateTime(value: Date? = null, name: String? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false) + +DateTime(value: KDate? = null, name: String? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false)

Parameters

value - date/time input value

@@ -20,7 +20,7 @@

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.time/-date-time/date-time.html b/api/pl.treksoft.kvision.form.time/-date-time/date-time.html index 718c8eaf..0d4b0c06 100644 --- a/api/pl.treksoft.kvision.form.time/-date-time/date-time.html +++ b/api/pl.treksoft.kvision.form.time/-date-time/date-time.html @@ -8,8 +8,8 @@ kvision / pl.treksoft.kvision.form.time / DateTime / dateTime

dateTime

- -fun Container.dateTime(value: Date? = null, name: String? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false, init: DateTime.() -> Unit = null): DateTime + +fun Container.dateTime(value: KDate? = null, name: String? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false, init: DateTime.() -> Unit = null): DateTime

DSL builder extension function.

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

diff --git a/api/pl.treksoft.kvision.form.time/-date-time/get-value-as-string.html b/api/pl.treksoft.kvision.form.time/-date-time/get-value-as-string.html index 8901d009..cfb8f5ce 100644 --- a/api/pl.treksoft.kvision.form.time/-date-time/get-value-as-string.html +++ b/api/pl.treksoft.kvision.form.time/-date-time/get-value-as-string.html @@ -10,7 +10,7 @@

getValueAsString

open fun getValueAsString(): String? -

Overrides DateFormControl.getValueAsString

+

Overrides KDateFormControl.getValueAsString

Returns the value of the control as a String.

diff --git a/api/pl.treksoft.kvision.form.time/-date-time/index.html b/api/pl.treksoft.kvision.form.time/-date-time/index.html index e31348af..74e70252 100644 --- a/api/pl.treksoft.kvision.form.time/-date-time/index.html +++ b/api/pl.treksoft.kvision.form.time/-date-time/index.html @@ -8,7 +8,7 @@ kvision / pl.treksoft.kvision.form.time / DateTime

DateTime

-open class DateTime : SimplePanel, DateFormControl +open class DateTime : SimplePanel, KDateFormControl

Form field date/time chooser component.

Constructors

@@ -18,7 +18,7 @@

<init>

+DateTime(value: KDate? = null, name: String? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false)
-DateTime(value: Date? = null, name: String? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false)
@@ -165,7 +165,7 @@

value

-open var value: Date? +open var value: KDate?

Date/time input value.

@@ -309,10 +309,10 @@ -

getValue

+

getValue

-open fun getValue(): Date? +open fun getValue(): KDate?

Returns the value of the control.

@@ -345,10 +345,10 @@ -

setValue

+

setValue

-open fun setValue(v: Any?): Unit +open fun setValue(v: Any?): Unit

Sets the value of the control.

@@ -362,7 +362,7 @@

dateTime

-fun Container.dateTime(value: Date? = null, name: String? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false, init: DateTime.() -> Unit = null): DateTime +fun Container.dateTime(value: KDate? = null, name: String? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false, init: DateTime.() -> Unit = null): DateTime

DSL builder extension function.

diff --git a/api/pl.treksoft.kvision.form.time/-date-time/value.html b/api/pl.treksoft.kvision.form.time/-date-time/value.html index 0bd1f1ee..34da28a7 100644 --- a/api/pl.treksoft.kvision.form.time/-date-time/value.html +++ b/api/pl.treksoft.kvision.form.time/-date-time/value.html @@ -9,8 +9,8 @@

value

-open var value: Date? -

Overrides DateFormControl.value

+open var value: KDate? +

Overrides KDateFormControl.value

Date/time input value.

-- cgit