From 7c2850063697f94a0d8b8d8f8588136dd4b3d05e Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sun, 21 Oct 2018 23:59:34 +0200 Subject: API documentation for KVision 0.0.19 --- .../-component/add-css-class.html | 20 --- .../-component/add-surrounding-css-class.html | 20 --- .../-component/get-element-j-query-d.html | 17 --- .../-component/get-element-j-query.html | 17 --- .../-component/get-element.html | 17 --- api/pl.treksoft.kvision.core/-component/index.html | 144 --------------------- .../-component/parent.html | 15 --- .../-component/remove-css-class.html | 20 --- .../-component/remove-surrounding-css-class.html | 20 --- .../-component/visible.html | 15 --- 10 files changed, 305 deletions(-) delete mode 100644 api/pl.treksoft.kvision.core/-component/add-css-class.html delete mode 100644 api/pl.treksoft.kvision.core/-component/add-surrounding-css-class.html delete mode 100644 api/pl.treksoft.kvision.core/-component/get-element-j-query-d.html delete mode 100644 api/pl.treksoft.kvision.core/-component/get-element-j-query.html delete mode 100644 api/pl.treksoft.kvision.core/-component/get-element.html delete mode 100644 api/pl.treksoft.kvision.core/-component/index.html delete mode 100644 api/pl.treksoft.kvision.core/-component/parent.html delete mode 100644 api/pl.treksoft.kvision.core/-component/remove-css-class.html delete mode 100644 api/pl.treksoft.kvision.core/-component/remove-surrounding-css-class.html delete mode 100644 api/pl.treksoft.kvision.core/-component/visible.html (limited to 'api/pl.treksoft.kvision.core/-component') diff --git a/api/pl.treksoft.kvision.core/-component/add-css-class.html b/api/pl.treksoft.kvision.core/-component/add-css-class.html deleted file mode 100644 index 971670b4..00000000 --- a/api/pl.treksoft.kvision.core/-component/add-css-class.html +++ /dev/null @@ -1,20 +0,0 @@ - - - -Component.addCssClass - kvision - - - -kvision / pl.treksoft.kvision.core / Component / addCssClass
-
-

addCssClass

- -abstract fun addCssClass(css: String): Component -

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

-

Parameters

-

-css - CSS class name

-

Return
-current component

- - diff --git a/api/pl.treksoft.kvision.core/-component/add-surrounding-css-class.html b/api/pl.treksoft.kvision.core/-component/add-surrounding-css-class.html deleted file mode 100644 index 20d8527a..00000000 --- a/api/pl.treksoft.kvision.core/-component/add-surrounding-css-class.html +++ /dev/null @@ -1,20 +0,0 @@ - - - -Component.addSurroundingCssClass - kvision - - - -kvision / pl.treksoft.kvision.core / Component / addSurroundingCssClass
-
-

addSurroundingCssClass

- -abstract fun addSurroundingCssClass(css: String): Component -

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

-

Parameters

-

-css - CSS class name

-

Return
-current component

- - diff --git a/api/pl.treksoft.kvision.core/-component/get-element-j-query-d.html b/api/pl.treksoft.kvision.core/-component/get-element-j-query-d.html deleted file mode 100644 index 1f811a99..00000000 --- a/api/pl.treksoft.kvision.core/-component/get-element-j-query-d.html +++ /dev/null @@ -1,17 +0,0 @@ - - - -Component.getElementJQueryD - kvision - - - -kvision / pl.treksoft.kvision.core / Component / getElementJQueryD
-
-

getElementJQueryD

- -abstract fun getElementJQueryD(): dynamic -

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

-

Return
-JQuery element as a dynamic type

- - diff --git a/api/pl.treksoft.kvision.core/-component/get-element-j-query.html b/api/pl.treksoft.kvision.core/-component/get-element-j-query.html deleted file mode 100644 index b5782d0b..00000000 --- a/api/pl.treksoft.kvision.core/-component/get-element-j-query.html +++ /dev/null @@ -1,17 +0,0 @@ - - - -Component.getElementJQuery - kvision - - - -kvision / pl.treksoft.kvision.core / Component / getElementJQuery
-
-

getElementJQuery

- -abstract fun getElementJQuery(): JQuery? -

Returns JQuery element bound to the current component.

-

Return
-JQuery element

- - diff --git a/api/pl.treksoft.kvision.core/-component/get-element.html b/api/pl.treksoft.kvision.core/-component/get-element.html deleted file mode 100644 index 934cb2c1..00000000 --- a/api/pl.treksoft.kvision.core/-component/get-element.html +++ /dev/null @@ -1,17 +0,0 @@ - - - -Component.getElement - kvision - - - -kvision / pl.treksoft.kvision.core / Component / getElement
-
-

getElement

- -abstract fun getElement(): Node? -

Returns DOM element bound to the current component.

-

Return
-DOM element

- - diff --git a/api/pl.treksoft.kvision.core/-component/index.html b/api/pl.treksoft.kvision.core/-component/index.html deleted file mode 100644 index 3cc489db..00000000 --- a/api/pl.treksoft.kvision.core/-component/index.html +++ /dev/null @@ -1,144 +0,0 @@ - - - -Component - kvision - - - -kvision / pl.treksoft.kvision.core / Component
-
-

Component

-interface Component -

Base interface for all components.

-

Properties

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

parent

-
-abstract var parent: Container? -

Parent of the current component.

-
-

visible

-
-abstract var visible: Boolean -

Visibility state of the current component.

-
-

Functions

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

addCssClass

-
-abstract fun addCssClass(css: String): Component -

Adds given value 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.

-
-

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.

-
-

removeSurroundingCssClass

-
-abstract fun removeSurroundingCssClass(css: String): Component -

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

-
-

Inheritors

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

Container

-
-interface Container : Component -

Base interface for all containers.

-
-

FormControl

-
-interface FormControl : Component -

Base interface of a form control.

-
-

FormInput

-
-interface FormInput : Component
-

StyledComponent

-
-abstract class StyledComponent : Component -

Base class for components supporting CSS styling.

-
- - diff --git a/api/pl.treksoft.kvision.core/-component/parent.html b/api/pl.treksoft.kvision.core/-component/parent.html deleted file mode 100644 index 2c055b91..00000000 --- a/api/pl.treksoft.kvision.core/-component/parent.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Component.parent - kvision - - - -kvision / pl.treksoft.kvision.core / Component / parent
-
-

parent

- -abstract var parent: Container? -

Parent of the current component.

- - diff --git a/api/pl.treksoft.kvision.core/-component/remove-css-class.html b/api/pl.treksoft.kvision.core/-component/remove-css-class.html deleted file mode 100644 index ccd69681..00000000 --- a/api/pl.treksoft.kvision.core/-component/remove-css-class.html +++ /dev/null @@ -1,20 +0,0 @@ - - - -Component.removeCssClass - kvision - - - -kvision / pl.treksoft.kvision.core / Component / removeCssClass
-
-

removeCssClass

- -abstract fun removeCssClass(css: String): Component -

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

-

Parameters

-

-css - CSS class name

-

Return
-current component

- - diff --git a/api/pl.treksoft.kvision.core/-component/remove-surrounding-css-class.html b/api/pl.treksoft.kvision.core/-component/remove-surrounding-css-class.html deleted file mode 100644 index 57f9acb1..00000000 --- a/api/pl.treksoft.kvision.core/-component/remove-surrounding-css-class.html +++ /dev/null @@ -1,20 +0,0 @@ - - - -Component.removeSurroundingCssClass - kvision - - - -kvision / pl.treksoft.kvision.core / Component / removeSurroundingCssClass
-
-

removeSurroundingCssClass

- -abstract fun removeSurroundingCssClass(css: String): Component -

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

-

Parameters

-

-css - CSS class name

-

Return
-current component

- - diff --git a/api/pl.treksoft.kvision.core/-component/visible.html b/api/pl.treksoft.kvision.core/-component/visible.html deleted file mode 100644 index f9f7397d..00000000 --- a/api/pl.treksoft.kvision.core/-component/visible.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Component.visible - kvision - - - -kvision / pl.treksoft.kvision.core / Component / visible
-
-

visible

- -abstract var visible: Boolean -

Visibility state of the current component.

- - -- cgit