diff options
author | Robert Jaros <rjaros@finn.pl> | 2018-10-21 23:59:34 +0200 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2018-10-21 23:59:34 +0200 |
commit | 7c2850063697f94a0d8b8d8f8588136dd4b3d05e (patch) | |
tree | d36036066bd3ef3f3e034c6dfc1e4283b1e69ece /api/pl.treksoft.kvision.core/-component/index.html | |
parent | a70acf853de62d0754ca95aa4103712b82afdef8 (diff) | |
download | kvision-7c2850063697f94a0d8b8d8f8588136dd4b3d05e.tar.gz kvision-7c2850063697f94a0d8b8d8f8588136dd4b3d05e.tar.bz2 kvision-7c2850063697f94a0d8b8d8f8588136dd4b3d05e.zip |
API documentation for KVision 0.0.19
Diffstat (limited to 'api/pl.treksoft.kvision.core/-component/index.html')
-rw-r--r-- | api/pl.treksoft.kvision.core/-component/index.html | 144 |
1 files changed, 0 insertions, 144 deletions
diff --git a/api/pl.treksoft.kvision.core/-component/index.html b/api/pl.treksoft.kvision.core/-component/index.html deleted file mode 100644 index 3cc489db..00000000 --- a/api/pl.treksoft.kvision.core/-component/index.html +++ /dev/null @@ -1,144 +0,0 @@ -<HTML> -<HEAD> -<meta charset="UTF-8"> -<title>Component - kvision</title> -<link rel="stylesheet" href="../../../style.css"> -</HEAD> -<BODY> -<a href="../../index.html">kvision</a> / <a href="../index.html">pl.treksoft.kvision.core</a> / <a href="./index.html">Component</a><br/> -<br/> -<h1>Component</h1> -<code><span class="keyword">interface </span><span class="identifier">Component</span></code> -<p>Base interface for all components.</p> -<h3>Properties</h3> -<table> -<tbody> -<tr> -<td> -<p><a href="parent.html">parent</a></p> -</td> -<td> -<code><span class="keyword">abstract</span> <span class="keyword">var </span><span class="identifier">parent</span><span class="symbol">: </span><a href="../-container/index.html"><span class="identifier">Container</span></a><span class="symbol">?</span></code> -<p>Parent of the current component.</p> -</td> -</tr> -<tr> -<td> -<p><a href="visible.html">visible</a></p> -</td> -<td> -<code><span class="keyword">abstract</span> <span class="keyword">var </span><span class="identifier">visible</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html"><span class="identifier">Boolean</span></a></code> -<p>Visibility state of the current component.</p> -</td> -</tr> -</tbody> -</table> -<h3>Functions</h3> -<table> -<tbody> -<tr> -<td> -<p><a href="add-css-class.html">addCssClass</a></p> -</td> -<td> -<code><span class="keyword">abstract</span> <span class="keyword">fun </span><span class="identifier">addCssClass</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.core.Component$addCssClass(kotlin.String)/css">css</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="./index.html"><span class="identifier">Component</span></a></code> -<p>Adds given value to the set of CSS classes generated in html code of current component.</p> -</td> -</tr> -<tr> -<td> -<p><a href="add-surrounding-css-class.html">addSurroundingCssClass</a></p> -</td> -<td> -<code><span class="keyword">abstract</span> <span class="keyword">fun </span><span class="identifier">addSurroundingCssClass</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.core.Component$addSurroundingCssClass(kotlin.String)/css">css</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="./index.html"><span class="identifier">Component</span></a></code> -<p>Adds given value to the set of CSS classes generated in html code of parent component.</p> -</td> -</tr> -<tr> -<td> -<p><a href="get-element.html">getElement</a></p> -</td> -<td> -<code><span class="keyword">abstract</span> <span class="keyword">fun </span><span class="identifier">getElement</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><a href="https://kotlinlang.org/api/latest/jvm/stdlib/org.w3c.dom/-node/index.html"><span class="identifier">Node</span></a><span class="symbol">?</span></code> -<p>Returns DOM element bound to the current component.</p> -</td> -</tr> -<tr> -<td> -<p><a href="get-element-j-query.html">getElementJQuery</a></p> -</td> -<td> -<code><span class="keyword">abstract</span> <span class="keyword">fun </span><span class="identifier">getElementJQuery</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">JQuery</span><span class="symbol">?</span></code> -<p>Returns JQuery element bound to the current component.</p> -</td> -</tr> -<tr> -<td> -<p><a href="get-element-j-query-d.html">getElementJQueryD</a></p> -</td> -<td> -<code><span class="keyword">abstract</span> <span class="keyword">fun </span><span class="identifier">getElementJQueryD</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><span class="keyword">dynamic</span></code> -<p>Returns JQuery element bound to the current component as a <em>dynamic</em> type.</p> -</td> -</tr> -<tr> -<td> -<p><a href="remove-css-class.html">removeCssClass</a></p> -</td> -<td> -<code><span class="keyword">abstract</span> <span class="keyword">fun </span><span class="identifier">removeCssClass</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.core.Component$removeCssClass(kotlin.String)/css">css</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="./index.html"><span class="identifier">Component</span></a></code> -<p>Removes given value from the set of CSS classes generated in html code of current component.</p> -</td> -</tr> -<tr> -<td> -<p><a href="remove-surrounding-css-class.html">removeSurroundingCssClass</a></p> -</td> -<td> -<code><span class="keyword">abstract</span> <span class="keyword">fun </span><span class="identifier">removeSurroundingCssClass</span><span class="symbol">(</span><span class="identifier" id="pl.treksoft.kvision.core.Component$removeSurroundingCssClass(kotlin.String)/css">css</span><span class="symbol">:</span> <a href="https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html"><span class="identifier">String</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="./index.html"><span class="identifier">Component</span></a></code> -<p>Removes given value from the set of CSS classes generated in html code of parent component.</p> -</td> -</tr> -</tbody> -</table> -<h3>Inheritors</h3> -<table> -<tbody> -<tr> -<td> -<p><a href="../-container/index.html">Container</a></p> -</td> -<td> -<code><span class="keyword">interface </span><span class="identifier">Container</span> <span class="symbol">:</span> <a href="./index.html"><span class="identifier">Component</span></a></code> -<p>Base interface for all containers.</p> -</td> -</tr> -<tr> -<td> -<p><a href="../../pl.treksoft.kvision.form/-form-control/index.html">FormControl</a></p> -</td> -<td> -<code><span class="keyword">interface </span><span class="identifier">FormControl</span> <span class="symbol">:</span> <a href="./index.html"><span class="identifier">Component</span></a></code> -<p>Base interface of a form control.</p> -</td> -</tr> -<tr> -<td> -<p><a href="../../pl.treksoft.kvision.form/-form-input/index.html">FormInput</a></p> -</td> -<td> -<code><span class="keyword">interface </span><span class="identifier">FormInput</span> <span class="symbol">:</span> <a href="./index.html"><span class="identifier">Component</span></a></code></td> -</tr> -<tr> -<td> -<p><a href="../-styled-component/index.html">StyledComponent</a></p> -</td> -<td> -<code><span class="keyword">abstract</span> <span class="keyword">class </span><span class="identifier">StyledComponent</span> <span class="symbol">:</span> <a href="./index.html"><span class="identifier">Component</span></a></code> -<p>Base class for components supporting CSS styling.</p> -</td> -</tr> -</tbody> -</table> -</BODY> -</HTML> |