From 35ba11a0343f626aa1832b4ba43a0ed2363fc265 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sat, 6 Apr 2019 19:36:32 +0200 Subject: Dokka upgrade to 0.9.18 --- api/pl.treksoft.kvision.table/-row/-init-.html | 2 +- api/pl.treksoft.kvision.table/-row/index.html | 6 +++--- api/pl.treksoft.kvision.table/-row/row.html | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'api/pl.treksoft.kvision.table/-row') diff --git a/api/pl.treksoft.kvision.table/-row/-init-.html b/api/pl.treksoft.kvision.table/-row/-init-.html index 29a0821f..4f436e65 100644 --- a/api/pl.treksoft.kvision.table/-row/-init-.html +++ b/api/pl.treksoft.kvision.table/-row/-init-.html @@ -9,7 +9,7 @@

<init>

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

Parameters

classes - a set of CSS class names

diff --git a/api/pl.treksoft.kvision.table/-row/index.html b/api/pl.treksoft.kvision.table/-row/index.html index cf23aa97..b44d4e74 100644 --- a/api/pl.treksoft.kvision.table/-row/index.html +++ b/api/pl.treksoft.kvision.table/-row/index.html @@ -18,7 +18,7 @@

<init>

-Row(classes: Set<String> = setOf(), init: Row.() -> Unit = null) +Row(classes: Set<String> = setOf(), init: (Row.() -> Unit)? = null) @@ -57,7 +57,7 @@

template

-open var template: (Any?) -> String +open var template: ((Any?) -> String)?

Handlebars template.

@@ -119,7 +119,7 @@

row

-fun Table.row(classes: Set<String> = setOf(), init: Row.() -> Unit = null): Row +fun Table.row(classes: Set<String> = setOf(), init: (Row.() -> Unit)? = null): Row

DSL builder extension function.

diff --git a/api/pl.treksoft.kvision.table/-row/row.html b/api/pl.treksoft.kvision.table/-row/row.html index 0019a792..312e6176 100644 --- a/api/pl.treksoft.kvision.table/-row/row.html +++ b/api/pl.treksoft.kvision.table/-row/row.html @@ -9,7 +9,7 @@

row

-fun Table.row(classes: Set<String> = setOf(), init: Row.() -> Unit = null): Row +fun Table.row(classes: Set<String> = setOf(), init: (Row.() -> Unit)? = null): Row

DSL builder extension function.

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

-- cgit