From 415afec335659ca6bc206b34bdd3c2fe4635718f Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Thu, 1 Mar 2018 15:19:44 +0100 Subject: KVision site with Jekyll --- .../-rich-text-input/-init-.html | 21 +++ .../-rich-text-input/after-destroy.html | 16 ++ .../-rich-text-input/after-insert.html | 16 ++ .../-rich-text-input/get-sn-attrs.html | 18 ++ .../-rich-text-input/index.html | 208 +++++++++++++++++++++ .../-rich-text-input/render.html | 18 ++ .../-rich-text-input/rich-text-input.html | 16 ++ 7 files changed, 313 insertions(+) create mode 100644 api/pl.treksoft.kvision.form.text/-rich-text-input/-init-.html create mode 100644 api/pl.treksoft.kvision.form.text/-rich-text-input/after-destroy.html create mode 100644 api/pl.treksoft.kvision.form.text/-rich-text-input/after-insert.html create mode 100644 api/pl.treksoft.kvision.form.text/-rich-text-input/get-sn-attrs.html create mode 100644 api/pl.treksoft.kvision.form.text/-rich-text-input/index.html create mode 100644 api/pl.treksoft.kvision.form.text/-rich-text-input/render.html create mode 100644 api/pl.treksoft.kvision.form.text/-rich-text-input/rich-text-input.html (limited to 'api/pl.treksoft.kvision.form.text/-rich-text-input') diff --git a/api/pl.treksoft.kvision.form.text/-rich-text-input/-init-.html b/api/pl.treksoft.kvision.form.text/-rich-text-input/-init-.html new file mode 100644 index 00000000..960d96db --- /dev/null +++ b/api/pl.treksoft.kvision.form.text/-rich-text-input/-init-.html @@ -0,0 +1,21 @@ + + + +RichTextInput.<init> - kvision + + + +kvision / pl.treksoft.kvision.form.text / RichTextInput / <init>
+
+

<init>

+ +RichTextInput(value: String? = null, classes: Set<String> = setOf()) +

Parameters

+

+value - text input value

+

+classes - a set of CSS class names

+

Constructor
+

+ + diff --git a/api/pl.treksoft.kvision.form.text/-rich-text-input/after-destroy.html b/api/pl.treksoft.kvision.form.text/-rich-text-input/after-destroy.html new file mode 100644 index 00000000..ba64d80f --- /dev/null +++ b/api/pl.treksoft.kvision.form.text/-rich-text-input/after-destroy.html @@ -0,0 +1,16 @@ + + + +RichTextInput.afterDestroy - kvision + + + +kvision / pl.treksoft.kvision.form.text / RichTextInput / afterDestroy
+
+

afterDestroy

+ +protected open fun afterDestroy(): Unit +

Overrides Widget.afterDestroy

+

Method called after destroying Snabbdom vnode.

+ + diff --git a/api/pl.treksoft.kvision.form.text/-rich-text-input/after-insert.html b/api/pl.treksoft.kvision.form.text/-rich-text-input/after-insert.html new file mode 100644 index 00000000..9f9d720a --- /dev/null +++ b/api/pl.treksoft.kvision.form.text/-rich-text-input/after-insert.html @@ -0,0 +1,16 @@ + + + +RichTextInput.afterInsert - kvision + + + +kvision / pl.treksoft.kvision.form.text / RichTextInput / afterInsert
+
+

afterInsert

+ +protected open fun afterInsert(node: VNode): Unit +

Overrides AbstractTextInput.afterInsert

+

Method called after inserting Snabbdom vnode into the DOM.

+ + diff --git a/api/pl.treksoft.kvision.form.text/-rich-text-input/get-sn-attrs.html b/api/pl.treksoft.kvision.form.text/-rich-text-input/get-sn-attrs.html new file mode 100644 index 00000000..80e29d05 --- /dev/null +++ b/api/pl.treksoft.kvision.form.text/-rich-text-input/get-sn-attrs.html @@ -0,0 +1,18 @@ + + + +RichTextInput.getSnAttrs - kvision + + + +kvision / pl.treksoft.kvision.form.text / RichTextInput / getSnAttrs
+
+

getSnAttrs

+ +protected open fun getSnAttrs(): List<StringPair> +

Overrides AbstractTextInput.getSnAttrs

+

Returns list of element attributes in the form of a List.

+

Return
+list of element attributes

+ + diff --git a/api/pl.treksoft.kvision.form.text/-rich-text-input/index.html b/api/pl.treksoft.kvision.form.text/-rich-text-input/index.html new file mode 100644 index 00000000..02d88253 --- /dev/null +++ b/api/pl.treksoft.kvision.form.text/-rich-text-input/index.html @@ -0,0 +1,208 @@ + + + +RichTextInput - kvision + + + +kvision / pl.treksoft.kvision.form.text / RichTextInput
+
+

RichTextInput

+open class RichTextInput : AbstractTextInput +

Basic rich text component.

+

Constructors

+ + + + + + + +
+

<init>

+
+RichTextInput(value: String? = null, classes: Set<String> = setOf())
+

Inherited Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

autofocus

+
+var autofocus: Boolean? +

Determines if the text input is automatically focused.

+
+

disabled

+
+var disabled: Boolean +

Determines if the field is disabled.

+
+

maxlength

+
+var maxlength: Int? +

Maximal length of the text input value.

+
+

name

+
+var name: String? +

The name attribute of the generated HTML input element.

+
+

placeholder

+
+var placeholder: String? +

The placeholder for the text input.

+
+

readonly

+
+var readonly: Boolean? +

Determines if the text input is read-only.

+
+

size

+
+var size: InputSize? +

The size of the input.

+
+

startValue

+
+var startValue: String? +

The value attribute of the generated HTML input element.

+
+

value

+
+var value: String? +

Text input value.

+
+

Functions

+ + + + + + + + + + + + + + + + + + + +
+

afterDestroy

+
+open fun afterDestroy(): Unit +

Method called after destroying Snabbdom vnode.

+
+

afterInsert

+
+open fun afterInsert(node: VNode): Unit +

Method called after inserting Snabbdom vnode into the DOM.

+
+

getSnAttrs

+
+open fun getSnAttrs(): List<StringPair> +

Returns list of element attributes in the form of a List.

+
+

render

+
+open fun render(): VNode +

Renders current component as a Snabbdom vnode.

+
+

Inherited Functions

+ + + + + + + + + + + + + + + + + + + +
+

afterPostpatch

+
+open fun afterPostpatch(node: VNode): Unit +

Method called after updating Snabbdom vnode.

+
+

blur

+
+open fun blur(): Unit +

Makes the input element blur.

+
+

focus

+
+open fun focus(): Unit +

Makes the input element focused.

+
+

getSnClass

+
+open fun getSnClass(): List<StringBoolPair> +

Returns list of CSS class names for current widget in the form of a List.

+
+

Companion Object Functions

+ + + + + + + +
+

richTextInput

+
+fun Container.richTextInput(value: String? = null, classes: Set<String> = setOf(), init: RichTextInput.() -> Unit = null): RichTextInput +

DSL builder extension function.

+
+ + diff --git a/api/pl.treksoft.kvision.form.text/-rich-text-input/render.html b/api/pl.treksoft.kvision.form.text/-rich-text-input/render.html new file mode 100644 index 00000000..ad34258c --- /dev/null +++ b/api/pl.treksoft.kvision.form.text/-rich-text-input/render.html @@ -0,0 +1,18 @@ + + + +RichTextInput.render - kvision + + + +kvision / pl.treksoft.kvision.form.text / RichTextInput / render
+
+

render

+ +protected open fun render(): VNode +

Overrides Widget.render

+

Renders current component as a Snabbdom vnode.

+

Return
+Snabbdom vnode

+ + diff --git a/api/pl.treksoft.kvision.form.text/-rich-text-input/rich-text-input.html b/api/pl.treksoft.kvision.form.text/-rich-text-input/rich-text-input.html new file mode 100644 index 00000000..3720d993 --- /dev/null +++ b/api/pl.treksoft.kvision.form.text/-rich-text-input/rich-text-input.html @@ -0,0 +1,16 @@ + + + +RichTextInput.richTextInput - kvision + + + +kvision / pl.treksoft.kvision.form.text / RichTextInput / richTextInput
+
+

richTextInput

+ +fun Container.richTextInput(value: String? = null, classes: Set<String> = setOf(), init: RichTextInput.() -> Unit = null): RichTextInput +

DSL builder extension function.

+

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

+ + -- cgit