From 4191287261b46b95908469c2ec3fa9d886681861 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 12 Feb 2018 10:51:45 +0100 Subject: Updated API doc --- .../-simple-panel/-init-.html | 6 ++++-- .../-simple-panel/index.html | 25 +++++++++++++++++++++- .../-simple-panel/simple-panel.html | 16 ++++++++++++++ 3 files changed, 44 insertions(+), 3 deletions(-) create mode 100644 docs/api/pl.treksoft.kvision.panel/-simple-panel/simple-panel.html (limited to 'docs/api/pl.treksoft.kvision.panel/-simple-panel') diff --git a/docs/api/pl.treksoft.kvision.panel/-simple-panel/-init-.html b/docs/api/pl.treksoft.kvision.panel/-simple-panel/-init-.html index a5c6b2b7..30e86dd0 100644 --- a/docs/api/pl.treksoft.kvision.panel/-simple-panel/-init-.html +++ b/docs/api/pl.treksoft.kvision.panel/-simple-panel/-init-.html @@ -8,11 +8,13 @@ kvision / pl.treksoft.kvision.panel / SimplePanel / <init>

<init>

- -SimplePanel(classes: Set<String> = setOf()) + +SimplePanel(classes: Set<String> = setOf(), init: SimplePanel.() -> Unit = null)

Parameters

classes - a set of CSS class names

+

+init - an initializer extension function

Constructor

diff --git a/docs/api/pl.treksoft.kvision.panel/-simple-panel/index.html b/docs/api/pl.treksoft.kvision.panel/-simple-panel/index.html index 62847644..404f707b 100644 --- a/docs/api/pl.treksoft.kvision.panel/-simple-panel/index.html +++ b/docs/api/pl.treksoft.kvision.panel/-simple-panel/index.html @@ -18,7 +18,7 @@

<init>

-SimplePanel(classes: Set<String> = setOf()) +SimplePanel(classes: Set<String> = setOf(), init: SimplePanel.() -> Unit = null) @@ -280,6 +280,15 @@ +

invoke

+ + +open operator fun invoke(vararg children: Component): Container +

Operator function for adding children in a DSL style.

+ + + +

removeCssClass

@@ -346,6 +355,20 @@ +

Companion Object Functions

+ + + + + + + +
+

simplePanel

+
+fun Container.simplePanel(classes: Set<String> = setOf(), init: SimplePanel.() -> Unit = null): Unit +

DSL builder extension function

+

Inheritors

diff --git a/docs/api/pl.treksoft.kvision.panel/-simple-panel/simple-panel.html b/docs/api/pl.treksoft.kvision.panel/-simple-panel/simple-panel.html new file mode 100644 index 00000000..0597a11f --- /dev/null +++ b/docs/api/pl.treksoft.kvision.panel/-simple-panel/simple-panel.html @@ -0,0 +1,16 @@ + + + +SimplePanel.simplePanel - kvision + + + +kvision / pl.treksoft.kvision.panel / SimplePanel / simplePanel
+
+

simplePanel

+ +fun Container.simplePanel(classes: Set<String> = setOf(), init: SimplePanel.() -> Unit = null): Unit +

DSL builder extension function

+

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

+ + -- cgit