From 61545b3f1fb1844af350d187edd26285e98f0466 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 26 Feb 2018 14:21:46 +0100 Subject: API documentation update --- .../api/pl.treksoft.kvision.panel/-grid-panel/index.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'docs/api/pl.treksoft.kvision.panel/-grid-panel/index.html') diff --git a/docs/api/pl.treksoft.kvision.panel/-grid-panel/index.html b/docs/api/pl.treksoft.kvision.panel/-grid-panel/index.html index 99a709a0..6d933d58 100644 --- a/docs/api/pl.treksoft.kvision.panel/-grid-panel/index.html +++ b/docs/api/pl.treksoft.kvision.panel/-grid-panel/index.html @@ -18,7 +18,7 @@

<init>

-GridPanel(autoColumns: String? = null, autoRows: String? = null, autoFlow: GRIDFLOW? = null, templateColumns: String? = null, templateRows: String? = null, templateAreas: List<String>? = null, columnGap: Int? = null, rowGap: Int? = null, justifyItems: GRIDJUSTIFY? = null, alignItems: GRIDALIGN? = null, justifyContent: GRIDJUSTIFYCONTENT? = null, alignContent: GRIDALIGNCONTENT? = null, classes: Set<String> = setOf(), init: GridPanel.() -> Unit = null) +GridPanel(autoColumns: String? = null, autoRows: String? = null, autoFlow: GridFlow? = null, templateColumns: String? = null, templateRows: String? = null, templateAreas: List<String>? = null, columnGap: Int? = null, rowGap: Int? = null, justifyItems: GridJustify? = null, alignItems: GridAlign? = null, justifyContent: GridJustifyContent? = null, alignContent: GridAlignContent? = null, classes: Set<String> = setOf(), init: GridPanel.() -> Unit = null) @@ -30,7 +30,7 @@

alignContent

-var alignContent: GRIDALIGNCONTENT? +var alignContent: GridAlignContent?

CSS grid content alignment.

@@ -39,7 +39,7 @@

alignItems

-var alignItems: GRIDALIGN? +var alignItems: GridAlign?

CSS grid items alignment.

@@ -57,7 +57,7 @@

autoFlow

-var autoFlow: GRIDFLOW? +var autoFlow: GridFlow?

CSS grid auto flow.

@@ -84,7 +84,7 @@

justifyContent

-var justifyContent: GRIDJUSTIFYCONTENT? +var justifyContent: GridJustifyContent?

CSS grid content justification.

@@ -93,7 +93,7 @@

justifyItems

-var justifyItems: GRIDJUSTIFY? +var justifyItems: GridJustify?

CSS grid items justification.

@@ -143,7 +143,7 @@

add

-fun add(child: Component, columnStart: Int? = null, rowStart: Int? = null, columnEnd: String? = null, rowEnd: String? = null, area: String? = null, justifySelf: GRIDJUSTIFY? = null, alignSelf: GRIDALIGN? = null, classes: Set<String> = setOf()): GridPanel +fun add(child: Component, columnStart: Int? = null, rowStart: Int? = null, columnEnd: String? = null, rowEnd: String? = null, area: String? = null, justifySelf: GridJustify? = null, alignSelf: GridAlign? = null, classes: Set<String> = setOf()): GridPanel

Adds a component to the grid container.

open fun add(child: Component): GridPanel

Adds given component to the current container.

@@ -236,7 +236,7 @@

gridPanel

-fun Container.gridPanel(autoColumns: String? = null, autoRows: String? = null, autoFlow: GRIDFLOW? = null, templateColumns: String? = null, templateRows: String? = null, templateAreas: List<String>? = null, columnGap: Int? = null, rowGap: Int? = null, justifyItems: GRIDJUSTIFY? = null, alignItems: GRIDALIGN? = null, justifyContent: GRIDJUSTIFYCONTENT? = null, alignContent: GRIDALIGNCONTENT? = null, classes: Set<String> = setOf(), init: GridPanel.() -> Unit = null): GridPanel +fun Container.gridPanel(autoColumns: String? = null, autoRows: String? = null, autoFlow: GridFlow? = null, templateColumns: String? = null, templateRows: String? = null, templateAreas: List<String>? = null, columnGap: Int? = null, rowGap: Int? = null, justifyItems: GridJustify? = null, alignItems: GridAlign? = null, justifyContent: GridJustifyContent? = null, alignContent: GridAlignContent? = null, classes: Set<String> = setOf(), init: GridPanel.() -> Unit = null): GridPanel

DSL builder extension function.

-- cgit