From f3c9d405382dd81d426c7eab1f6390ec8e6dad00 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 5 Mar 2018 08:45:25 +0100 Subject: Documentation update. --- .../pl.treksoft.kvision.panel/-v-panel/-init-.html | 27 ---- .../pl.treksoft.kvision.panel/-v-panel/index.html | 152 --------------------- .../-v-panel/v-panel.html | 16 --- 3 files changed, 195 deletions(-) delete mode 100644 docs/api/pl.treksoft.kvision.panel/-v-panel/-init-.html delete mode 100644 docs/api/pl.treksoft.kvision.panel/-v-panel/index.html delete mode 100644 docs/api/pl.treksoft.kvision.panel/-v-panel/v-panel.html (limited to 'docs/api/pl.treksoft.kvision.panel/-v-panel') diff --git a/docs/api/pl.treksoft.kvision.panel/-v-panel/-init-.html b/docs/api/pl.treksoft.kvision.panel/-v-panel/-init-.html deleted file mode 100644 index e3c17b67..00000000 --- a/docs/api/pl.treksoft.kvision.panel/-v-panel/-init-.html +++ /dev/null @@ -1,27 +0,0 @@ - - - -VPanel.<init> - kvision - - - -kvision / pl.treksoft.kvision.panel / VPanel / <init>
-
-

<init>

- -VPanel(justify: FlexJustify? = null, alignItems: FlexAlignItems? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: VPanel.() -> Unit = null) -

Parameters

-

-justify - flexbox content justification

-

-alignItems - flexbox items alignment

-

-spacing - spacing between columns/rows

-

-classes - a set of CSS class names

-

-init - an initializer extension function

-

Constructor
-

- - diff --git a/docs/api/pl.treksoft.kvision.panel/-v-panel/index.html b/docs/api/pl.treksoft.kvision.panel/-v-panel/index.html deleted file mode 100644 index dbca034b..00000000 --- a/docs/api/pl.treksoft.kvision.panel/-v-panel/index.html +++ /dev/null @@ -1,152 +0,0 @@ - - - -VPanel - kvision - - - -kvision / pl.treksoft.kvision.panel / VPanel
-
-

VPanel

-open class VPanel : FlexPanel -

The container with vertical layout.

-

This is a special case of the flexbox layout.

-

Constructors

- - - - - - - -
-

<init>

-
-VPanel(justify: FlexJustify? = null, alignItems: FlexAlignItems? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: VPanel.() -> Unit = null)
-

Inherited Properties

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

alignContent

-
-var alignContent: FlexAlignContent? -

CSS flexbox content alignment.

-
-

alignItems

-
-var alignItems: FlexAlignItems? -

CSS flexbox items alignment.

-
-

direction

-
-var direction: FlexDir? -

CSS flexbox direction.

-
-

justify

-
-var justify: FlexJustify? -

CSS flexbox content justification.

-
-

spacing

-
-var spacing: Int? -

The spacing between columns/rows.

-
-

wrap

-
-var wrap: FlexWrap? -

CSS flexbox wrap mode.

-
-

Inherited Functions

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

add

-
-fun add(child: Component, order: Int? = null, grow: Int? = null, shrink: Int? = null, basis: Int? = null, alignSelf: FlexAlignItems? = null, classes: Set<String> = setOf()): FlexPanel -

Adds a component to the flexbox container.

-open fun add(child: Component): FlexPanel -

Adds given component to the current container.

-
-

addAll

-
-open fun addAll(children: List<Component>): FlexPanel -

Adds a list of components to the current container.

-
-

getSnStyle

-
-open fun getSnStyle(): List<StringPair> -

Returns the list of String pairs defining CSS style attributes and their values.

-
-

remove

-
-open fun remove(child: Component): FlexPanel -

Removes given component from the current container.

-
-

removeAll

-
-open fun removeAll(): FlexPanel -

Removes all children from the current container.

-
-

Companion Object Functions

- - - - - - - -
-

vPanel

-
-fun Container.vPanel(justify: FlexJustify? = null, alignItems: FlexAlignItems? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: VPanel.() -> Unit = null): VPanel -

DSL builder extension function.

-
- - diff --git a/docs/api/pl.treksoft.kvision.panel/-v-panel/v-panel.html b/docs/api/pl.treksoft.kvision.panel/-v-panel/v-panel.html deleted file mode 100644 index ee5236b5..00000000 --- a/docs/api/pl.treksoft.kvision.panel/-v-panel/v-panel.html +++ /dev/null @@ -1,16 +0,0 @@ - - - -VPanel.vPanel - kvision - - - -kvision / pl.treksoft.kvision.panel / VPanel / vPanel
-
-

vPanel

- -fun Container.vPanel(justify: FlexJustify? = null, alignItems: FlexAlignItems? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: VPanel.() -> Unit = null): VPanel -

DSL builder extension function.

-

It takes the same parameters as the constructor of the built component.

- - -- cgit