From fb7ff5b8bf2073a8d7b78011b9edffc830dc63cb Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sat, 26 Oct 2019 00:17:24 +0200 Subject: API documentation for KVision 2.0.0 --- .../-abstract-text-input/index.html | 124 +++++++++++++++++++-- .../-abstract-text-input/validation-status.html | 22 ++++ 2 files changed, 137 insertions(+), 9 deletions(-) create mode 100644 api/pl.treksoft.kvision.form.text/-abstract-text-input/validation-status.html (limited to 'api/pl.treksoft.kvision.form.text/-abstract-text-input') diff --git a/api/pl.treksoft.kvision.form.text/-abstract-text-input/index.html b/api/pl.treksoft.kvision.form.text/-abstract-text-input/index.html index 362afc78..11a6de61 100644 --- a/api/pl.treksoft.kvision.form.text/-abstract-text-input/index.html +++ b/api/pl.treksoft.kvision.form.text/-abstract-text-input/index.html @@ -99,6 +99,15 @@ +

validationStatus

+ + +open var validationStatus: ValidationStatus? +

The validation status of the input.

+ + + +

value

@@ -177,6 +186,15 @@ +

tabindex

+ + +var tabindex: Int? +

A tabindex attribute of generated HTML element.

+ + + +

title

@@ -505,15 +523,6 @@ -

setContextMenu

- - -open fun setContextMenu(contextMenu: ContextMenu): Widget -

Sets context menu for the current widget.

- - - -

setDragDropData

@@ -608,6 +617,50 @@ +

addBsBgColor

+ + +fun Component.addBsBgColor(bsBgColor: BsBgColor): Unit + + + +

addBsBorder

+ + +fun Component.addBsBorder(vararg bsBorder: BsBorder): Unit + + + +

addBsClearfix

+ + +fun Component.addBsClearfix(): Unit + + + +

addBsColor

+ + +fun Component.addBsColor(bsColor: BsColor): Unit + + + +

addBsRounded

+ + +fun Component.addBsRounded(vararg bsRounded: BsRounded): Unit + + + +

contextMenu

+ + +fun Widget.contextMenu(fixedPosition: Boolean = false, classes: Set<String> = setOf(), init: (ContextMenu.() -> Unit)? = null): ContextMenu +

DSL builder extension function.

+ + + +

createInstance

@@ -615,6 +668,59 @@

Helper function for creating JavaScript objects from dynamic constructors.

+ + +

removeBsBgColor

+ + +fun Component.removeBsBgColor(bsBgColor: BsBgColor): Unit + + + +

removeBsBorder

+ + +fun Component.removeBsBorder(vararg bsBorder: BsBorder): Unit + + + +

removeBsClearfix

+ + +fun Component.removeBsClearfix(): Unit + + + +

removeBsColor

+ + +fun Component.removeBsColor(bsColor: BsColor): Unit + + + +

removeBsRounded

+ + +fun Component.removeBsRounded(vararg bsRounded: BsRounded): Unit + + + +

setContextMenu

+ + +fun Widget.setContextMenu(contextMenu: ContextMenu): Widget +

Sets context menu for the current widget.

+ + + + +

style

+ + +fun Widget.style(className: String? = null, init: (Style.() -> Unit)? = null): Style +

DSL builder extension function.

+ +

Inheritors

diff --git a/api/pl.treksoft.kvision.form.text/-abstract-text-input/validation-status.html b/api/pl.treksoft.kvision.form.text/-abstract-text-input/validation-status.html new file mode 100644 index 00000000..c25776d3 --- /dev/null +++ b/api/pl.treksoft.kvision.form.text/-abstract-text-input/validation-status.html @@ -0,0 +1,22 @@ + + + +AbstractTextInput.validationStatus - kvision + + + +kvision / pl.treksoft.kvision.form.text / AbstractTextInput / validationStatus
+
+

validationStatus

+ +open var validationStatus: ValidationStatus? +

Overrides FormInput.validationStatus

+

The validation status of the input.

+

Getter
+

The validation status of the input.

+

+

Setter
+

The validation status of the input.

+

+ + -- cgit