From bc2152266d0aa8b749d5202d54f9e7c4a5db5b5b Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sun, 23 Jun 2019 14:12:10 +0200 Subject: API documentation for KVision 0.0.37 --- .../-styled-component/index.html | 103 +-------------------- 1 file changed, 2 insertions(+), 101 deletions(-) (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 70940517..e7079ebf 100644 --- a/api/pl.treksoft.kvision.core/-styled-component/index.html +++ b/api/pl.treksoft.kvision.core/-styled-component/index.html @@ -8,7 +8,7 @@ kvision / pl.treksoft.kvision.core / StyledComponent

StyledComponent

-abstract class StyledComponent : Component +abstract class StyledComponent

Base class for components supporting CSS styling.

Constructors

@@ -551,29 +551,6 @@
-

Inherited Properties

- - - - - - - - - - - -
-

parent

-
-abstract var parent: Container? -

Parent of the current component.

-
-

visible

-
-abstract var visible: Boolean -

Visibility state of the current component.

-

Functions

@@ -595,82 +572,6 @@
-

Inherited Functions

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-

addCssClass

-
-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.

-
-

addSurroundingCssClass

-
-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.

-
-

getElement

-
-abstract fun getElement(): Node? -

Returns DOM element bound to the current component.

-
-

getElementJQuery

-
-abstract fun getElementJQuery(): JQuery? -

Returns JQuery element bound to the current component.

-
-

getElementJQueryD

-
-abstract fun getElementJQueryD(): dynamic -

Returns JQuery element bound to the current component as a dynamic type.

-
-

removeCssClass

-
-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.

-
-

removeSurroundingCssClass

-
-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.

-

Extension Functions

@@ -702,7 +603,7 @@

Widget

-- cgit
-open class Widget : StyledComponent +open class Widget : StyledComponent, Component

Base widget class. The parent of all component classes.