diff options
author | Robert Jaros <rjaros@finn.pl> | 2019-04-04 13:10:28 +0200 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2019-04-04 13:10:28 +0200 |
commit | 8883419bfcec00947863741d48dbd89cc877615a (patch) | |
tree | 3bfaa51ceaae33abe2be84d1bcc6c772bec2fd59 /api/pl.treksoft.kvision.core/-component | |
parent | 7d18a562b285a7ae08f81ba6110637ea797e84f9 (diff) | |
download | kvision-8883419bfcec00947863741d48dbd89cc877615a.tar.gz kvision-8883419bfcec00947863741d48dbd89cc877615a.tar.bz2 kvision-8883419bfcec00947863741d48dbd89cc877615a.zip |
API documentation for KVision 0.0.32
Diffstat (limited to 'api/pl.treksoft.kvision.core/-component')
5 files changed, 40 insertions, 0 deletions
diff --git a/api/pl.treksoft.kvision.core/-component/add-css-class.html b/api/pl.treksoft.kvision.core/-component/add-css-class.html index 971670b4..1cdfc8fc 100644 --- a/api/pl.treksoft.kvision.core/-component/add-css-class.html +++ b/api/pl.treksoft.kvision.core/-component/add-css-class.html @@ -16,5 +16,13 @@ <code>css</code> - CSS class name</p> <p><strong>Return</strong><br/> current component</p> +<a name="pl.treksoft.kvision.core.Component$addCssClass(pl.treksoft.kvision.core.Style)"></a> +<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(pl.treksoft.kvision.core.Style)/css">css</span><span class="symbol">:</span> <a href="../-style/index.html"><span class="identifier">Style</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html"><span class="identifier">Component</span></a></code> +<p>Adds given style object to the set of CSS classes generated in html code of current component.</p> +<h3>Parameters</h3> +<p><a name="css"></a> +<code>css</code> - CSS style object</p> +<p><strong>Return</strong><br/> +current component</p> </BODY> </HTML> diff --git a/api/pl.treksoft.kvision.core/-component/add-surrounding-css-class.html b/api/pl.treksoft.kvision.core/-component/add-surrounding-css-class.html index 20d8527a..592a645b 100644 --- a/api/pl.treksoft.kvision.core/-component/add-surrounding-css-class.html +++ b/api/pl.treksoft.kvision.core/-component/add-surrounding-css-class.html @@ -16,5 +16,13 @@ <code>css</code> - CSS class name</p> <p><strong>Return</strong><br/> current component</p> +<a name="pl.treksoft.kvision.core.Component$addSurroundingCssClass(pl.treksoft.kvision.core.Style)"></a> +<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(pl.treksoft.kvision.core.Style)/css">css</span><span class="symbol">:</span> <a href="../-style/index.html"><span class="identifier">Style</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html"><span class="identifier">Component</span></a></code> +<p>Adds given style object to the set of CSS classes generated in html code of parent component.</p> +<h3>Parameters</h3> +<p><a name="css"></a> +<code>css</code> - CSS style object</p> +<p><strong>Return</strong><br/> +current component</p> </BODY> </HTML> diff --git a/api/pl.treksoft.kvision.core/-component/index.html b/api/pl.treksoft.kvision.core/-component/index.html index d96dcc89..562f3048 100644 --- a/api/pl.treksoft.kvision.core/-component/index.html +++ b/api/pl.treksoft.kvision.core/-component/index.html @@ -43,6 +43,8 @@ <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> +<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(pl.treksoft.kvision.core.Style)/css">css</span><span class="symbol">:</span> <a href="../-style/index.html"><span class="identifier">Style</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="./index.html"><span class="identifier">Component</span></a></code> +<p>Adds given style object to the set of CSS classes generated in html code of current component.</p> </td> </tr> <tr> @@ -52,6 +54,8 @@ <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> +<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(pl.treksoft.kvision.core.Style)/css">css</span><span class="symbol">:</span> <a href="../-style/index.html"><span class="identifier">Style</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="./index.html"><span class="identifier">Component</span></a></code> +<p>Adds given style object to the set of CSS classes generated in html code of parent component.</p> </td> </tr> <tr> @@ -88,6 +92,8 @@ <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> +<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(pl.treksoft.kvision.core.Style)/css">css</span><span class="symbol">:</span> <a href="../-style/index.html"><span class="identifier">Style</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="./index.html"><span class="identifier">Component</span></a></code> +<p>Removes given style object from the set of CSS classes generated in html code of current component.</p> </td> </tr> <tr> @@ -97,6 +103,8 @@ <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> +<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(pl.treksoft.kvision.core.Style)/css">css</span><span class="symbol">:</span> <a href="../-style/index.html"><span class="identifier">Style</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="./index.html"><span class="identifier">Component</span></a></code> +<p>Removes given style object from the set of CSS classes generated in html code of parent component.</p> </td> </tr> </tbody> diff --git a/api/pl.treksoft.kvision.core/-component/remove-css-class.html b/api/pl.treksoft.kvision.core/-component/remove-css-class.html index ccd69681..f54d5881 100644 --- a/api/pl.treksoft.kvision.core/-component/remove-css-class.html +++ b/api/pl.treksoft.kvision.core/-component/remove-css-class.html @@ -16,5 +16,13 @@ <code>css</code> - CSS class name</p> <p><strong>Return</strong><br/> current component</p> +<a name="pl.treksoft.kvision.core.Component$removeCssClass(pl.treksoft.kvision.core.Style)"></a> +<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(pl.treksoft.kvision.core.Style)/css">css</span><span class="symbol">:</span> <a href="../-style/index.html"><span class="identifier">Style</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html"><span class="identifier">Component</span></a></code> +<p>Removes given style object from the set of CSS classes generated in html code of current component.</p> +<h3>Parameters</h3> +<p><a name="css"></a> +<code>css</code> - CSS style object</p> +<p><strong>Return</strong><br/> +current component</p> </BODY> </HTML> diff --git a/api/pl.treksoft.kvision.core/-component/remove-surrounding-css-class.html b/api/pl.treksoft.kvision.core/-component/remove-surrounding-css-class.html index 57f9acb1..13f8c401 100644 --- a/api/pl.treksoft.kvision.core/-component/remove-surrounding-css-class.html +++ b/api/pl.treksoft.kvision.core/-component/remove-surrounding-css-class.html @@ -16,5 +16,13 @@ <code>css</code> - CSS class name</p> <p><strong>Return</strong><br/> current component</p> +<a name="pl.treksoft.kvision.core.Component$removeSurroundingCssClass(pl.treksoft.kvision.core.Style)"></a> +<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(pl.treksoft.kvision.core.Style)/css">css</span><span class="symbol">:</span> <a href="../-style/index.html"><span class="identifier">Style</span></a><span class="symbol">)</span><span class="symbol">: </span><a href="index.html"><span class="identifier">Component</span></a></code> +<p>Removes given style object from the set of CSS classes generated in html code of parent component.</p> +<h3>Parameters</h3> +<p><a name="css"></a> +<code>css</code> - CSS style object</p> +<p><strong>Return</strong><br/> +current component</p> </BODY> </HTML> |