From fb7ff5b8bf2073a8d7b78011b9edffc830dc63cb Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Sat, 26 Oct 2019 00:17:24 +0200 Subject: API documentation for KVision 2.0.0 --- api/pl.treksoft.kvision.chart/-chart/chart.html | 16 --- api/pl.treksoft.kvision.chart/-chart/index.html | 124 ++++++++++++++++++++---- 2 files changed, 106 insertions(+), 34 deletions(-) delete mode 100644 api/pl.treksoft.kvision.chart/-chart/chart.html (limited to 'api/pl.treksoft.kvision.chart/-chart') diff --git a/api/pl.treksoft.kvision.chart/-chart/chart.html b/api/pl.treksoft.kvision.chart/-chart/chart.html deleted file mode 100644 index 611fd9b4..00000000 --- a/api/pl.treksoft.kvision.chart/-chart/chart.html +++ /dev/null @@ -1,16 +0,0 @@ - - - -Chart.chart - kvision - - - -kvision / pl.treksoft.kvision.chart / Chart / chart
-
-

chart

- -fun Container.chart(configuration: Configuration, chartWidth: Int? = null, chartHeight: Int? = null, classes: Set<String> = setOf(), init: (Chart.() -> Unit)? = null): Chart -

DSL builder extension function.

-

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

- - diff --git a/api/pl.treksoft.kvision.chart/-chart/index.html b/api/pl.treksoft.kvision.chart/-chart/index.html index 508d8d9c..586f6851 100644 --- a/api/pl.treksoft.kvision.chart/-chart/index.html +++ b/api/pl.treksoft.kvision.chart/-chart/index.html @@ -105,6 +105,15 @@ +

tabindex

+ + +var tabindex: Int? +

A tabindex attribute of generated HTML element.

+ + + +

title

@@ -479,15 +488,6 @@ -

setContextMenu

- - -open fun setContextMenu(contextMenu: ContextMenu): Widget -

Sets context menu for the current widget.

- - - -

setDragDropData

@@ -582,15 +582,6 @@ -

chart

- - -fun Container.chart(configuration: Configuration, chartWidth: Int? = null, chartHeight: Int? = null, classes: Set<String> = setOf(), init: (Chart.() -> Unit)? = null): Chart -

DSL builder extension function.

- - - -

registerPlugin

@@ -610,6 +601,50 @@ +

addBsBgColor

+ + +fun Component.addBsBgColor(bsBgColor: BsBgColor): Unit + + + +

addBsBorder

+ + +fun Component.addBsBorder(vararg bsBorder: BsBorder): Unit + + + +

addBsClearfix

+ + +fun Component.addBsClearfix(): Unit + + + +

addBsColor

+ + +fun Component.addBsColor(bsColor: BsColor): Unit + + + +

addBsRounded

+ + +fun Component.addBsRounded(vararg bsRounded: BsRounded): Unit + + + +

contextMenu

+ + +fun Widget.contextMenu(fixedPosition: Boolean = false, classes: Set<String> = setOf(), init: (ContextMenu.() -> Unit)? = null): ContextMenu +

DSL builder extension function.

+ + + +

createInstance

@@ -617,6 +652,59 @@

Helper function for creating JavaScript objects from dynamic constructors.

+ + +

removeBsBgColor

+ + +fun Component.removeBsBgColor(bsBgColor: BsBgColor): Unit + + + +

removeBsBorder

+ + +fun Component.removeBsBorder(vararg bsBorder: BsBorder): Unit + + + +

removeBsClearfix

+ + +fun Component.removeBsClearfix(): Unit + + + +

removeBsColor

+ + +fun Component.removeBsColor(bsColor: BsColor): Unit + + + +

removeBsRounded

+ + +fun Component.removeBsRounded(vararg bsRounded: BsRounded): Unit + + + +

setContextMenu

+ + +fun Widget.setContextMenu(contextMenu: ContextMenu): Widget +

Sets context menu for the current widget.

+ + + + +

style

+ + +fun Widget.style(className: String? = null, init: (Style.() -> Unit)? = null): Style +

DSL builder extension function.

+ + -- cgit