From 8883419bfcec00947863741d48dbd89cc877615a Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Thu, 4 Apr 2019 13:10:28 +0200 Subject: API documentation for KVision 0.0.32 --- api/pl.treksoft.kvision.form/-form-input/index.html | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'api/pl.treksoft.kvision.form/-form-input') diff --git a/api/pl.treksoft.kvision.form/-form-input/index.html b/api/pl.treksoft.kvision.form/-form-input/index.html index d4024b35..e641183d 100644 --- a/api/pl.treksoft.kvision.form/-form-input/index.html +++ b/api/pl.treksoft.kvision.form/-form-input/index.html @@ -74,6 +74,8 @@ abstract fun addCssClass(css: String): Component

Adds given value to the set of CSS classes generated in html code of current component.

+abstract fun addCssClass(css: Style): Component +

Adds given style object to the set of CSS classes generated in html code of current component.

@@ -83,6 +85,8 @@ abstract fun addSurroundingCssClass(css: String): Component

Adds given value to the set of CSS classes generated in html code of parent component.

+abstract fun addSurroundingCssClass(css: Style): Component +

Adds given style object to the set of CSS classes generated in html code of parent component.

@@ -119,6 +123,8 @@ abstract fun removeCssClass(css: String): Component

Removes given value from the set of CSS classes generated in html code of current component.

+abstract fun removeCssClass(css: Style): Component +

Removes given style object from the set of CSS classes generated in html code of current component.

@@ -128,6 +134,8 @@ abstract fun removeSurroundingCssClass(css: String): Component

Removes given value from the set of CSS classes generated in html code of parent component.

+abstract fun removeSurroundingCssClass(css: Style): Component +

Removes given style object from the set of CSS classes generated in html code of parent component.

-- cgit