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 --- .../-styled-component/index.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'api/pl.treksoft.kvision.core/-styled-component/index.html') diff --git a/api/pl.treksoft.kvision.core/-styled-component/index.html b/api/pl.treksoft.kvision.core/-styled-component/index.html index b56957df..44386ffe 100644 --- a/api/pl.treksoft.kvision.core/-styled-component/index.html +++ b/api/pl.treksoft.kvision.core/-styled-component/index.html @@ -625,6 +625,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.

@@ -634,6 +636,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.

@@ -670,6 +674,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.

@@ -679,6 +685,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.

@@ -702,6 +710,15 @@ +

Style

+ + +open class Style : StyledComponent +

CSS style object.

+ + + +

Widget

-- cgit