From 8883419bfcec00947863741d48dbd89cc877615a Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Thu, 4 Apr 2019 13:10:28 +0200 Subject: API documentation for KVision 0.0.32 --- api/pl.treksoft.kvision.panel/-root/index.html | 12 +++ .../-root/is-first-root.html | 14 ++++ .../-simple-panel/index.html | 94 ++++++++++++++++++++++ 3 files changed, 120 insertions(+) create mode 100644 api/pl.treksoft.kvision.panel/-root/is-first-root.html (limited to 'api/pl.treksoft.kvision.panel') diff --git a/api/pl.treksoft.kvision.panel/-root/index.html b/api/pl.treksoft.kvision.panel/-root/index.html index 5bfc962a..c432eace 100644 --- a/api/pl.treksoft.kvision.panel/-root/index.html +++ b/api/pl.treksoft.kvision.panel/-root/index.html @@ -25,6 +25,18 @@ Snabbdom virtual DOM.

+

Properties

+ + + + + + + +
+

isFirstRoot

+
+val isFirstRoot: Boolean

Functions

diff --git a/api/pl.treksoft.kvision.panel/-root/is-first-root.html b/api/pl.treksoft.kvision.panel/-root/is-first-root.html new file mode 100644 index 00000000..6974d7f8 --- /dev/null +++ b/api/pl.treksoft.kvision.panel/-root/is-first-root.html @@ -0,0 +1,14 @@ + + + +Root.isFirstRoot - kvision + + + +kvision / pl.treksoft.kvision.panel / Root / isFirstRoot
+
+

isFirstRoot

+ +val isFirstRoot: Boolean + + diff --git a/api/pl.treksoft.kvision.panel/-simple-panel/index.html b/api/pl.treksoft.kvision.panel/-simple-panel/index.html index 03309e94..b02ccdc5 100644 --- a/api/pl.treksoft.kvision.panel/-simple-panel/index.html +++ b/api/pl.treksoft.kvision.panel/-simple-panel/index.html @@ -68,6 +68,13 @@ + + + + + + + + @@ -198,6 +214,8 @@ @@ -247,6 +265,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -358,6 +432,8 @@ @@ -429,6 +505,24 @@ + + + + + + + +
+

popoverOptions

+
+var popoverOptions: PopoverOptions?

role

@@ -93,6 +100,13 @@
+

tooltipOptions

+
+var tooltipOptions: TooltipOptions?

visible

@@ -189,6 +203,8 @@ open fun addCssClass(css: String): Widget

Adds given value to the set of CSS classes generated in html code of current component.

+open fun addCssClass(css: Style): Widget +

Adds given style object to the set of CSS classes generated in html code of current component.

open fun addSurroundingCssClass(css: String): Widget

Adds given value to the set of CSS classes generated in html code of parent component.

+open fun addSurroundingCssClass(css: Style): Widget +

Adds given style object to the set of CSS classes generated in html code of parent component.

+

disablePopover

+
+open fun disablePopover(): Widget +

Disables popover for the current widget.

+
+

disableTooltip

+
+open fun disableTooltip(): Widget +

Disables tooltip for the current widget.

+

dispatchEvent

@@ -254,6 +290,24 @@
+

enablePopover

+
+open fun enablePopover(options: PopoverOptions = PopoverOptions()): Widget +

Enables popover for the current widget.

+
+

enableTooltip

+
+open fun enableTooltip(options: TooltipOptions = TooltipOptions()): Widget +

Enables tooltip for the current widget.

+

getElement

@@ -326,6 +380,24 @@
+

hidePopover

+
+open fun hidePopover(): Widget +

Hides popover for the current widget.

+
+

hideTooltip

+
+open fun hideTooltip(): Widget +

Hides tooltip for the current widget.

+

invoke

@@ -340,6 +412,8 @@ open fun removeCssClass(css: String): Widget

Removes given value from the set of CSS classes generated in html code of current component.

+open fun removeCssClass(css: Style): Widget +

Removes given style object from the set of CSS classes generated in html code of current component.

open fun removeSurroundingCssClass(css: String): Widget

Removes given value from the set of CSS classes generated in html code of parent component.

+open fun removeSurroundingCssClass(css: Style): Widget +

Removes given style object from the set of CSS classes generated in html code of parent component.

+

showPopover

+
+open fun showPopover(): Widget +

Shows popover for the current widget.

+
+

showTooltip

+
+open fun showTooltip(): Widget +

Shows tooltip for the current widget.

+

singleRender

-- cgit