From 76c1fff00042ff1b5d524ee414dc6d28f7658c69 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Wed, 6 Nov 2019 00:01:19 +0100 Subject: API documentation for KVision 2.2.0 --- api/index-outline.html | 94 +++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 73 insertions(+), 21 deletions(-) (limited to 'api/index-outline.html') diff --git a/api/index-outline.html b/api/index-outline.html index c088fab7..3b1ee667 100644 --- a/api/index-outline.html +++ b/api/index-outline.html @@ -2802,7 +2802,7 @@ open fun setEventListener(block: SnOn<Widget>.() -> Unit): Widget
var startValue: Boolean
var style: CheckBoxStyle?
-open fun styleForHorizontalFormPanel(): Unit
+open fun styleForHorizontalFormPanel(horizontalRatio: FormHorizontalRatio): Unit
open fun styleForInlineFormPanel(): Unit
open fun styleForVerticalFormPanel(): Unit
open var value: Boolean
@@ -5361,7 +5361,7 @@ open var name: String?
abstract fun setValue(v: Any?): Unit
open var size: InputSize?
-open fun styleForHorizontalFormPanel(): Unit
+open fun styleForHorizontalFormPanel(horizontalRatio: FormHorizontalRatio): Unit
open fun styleForInlineFormPanel(): Unit
open fun styleForVerticalFormPanel(): Unit
open var validationStatus: ValidationStatus?
@@ -5384,6 +5384,29 @@ +enum class FormHorizontalRatio
+ interface FormInput : Component
@@ -11230,7 +11256,7 @@ open fun spinUp(): Spinner
var startValue: Number?
var step: Double
-open fun styleForHorizontalFormPanel(): Unit
+open fun styleForHorizontalFormPanel(horizontalRatio: FormHorizontalRatio): Unit
open var validatorError: String?
open var value: Number?
@@ -24993,7 +25019,7 @@ open var name: String?
abstract fun setValue(v: Any?): Unit
open var size: InputSize?
-open fun styleForHorizontalFormPanel(): Unit
+open fun styleForHorizontalFormPanel(horizontalRatio: FormHorizontalRatio): Unit
open fun styleForInlineFormPanel(): Unit
open fun styleForVerticalFormPanel(): Unit
open var validationStatus: ValidationStatus?
@@ -25016,6 +25042,29 @@ +enum class FormHorizontalRatio
+ interface FormInput : Component
-inline fun <reified K : Any> Container.formPanel(method: FormMethod? = null, action: String? = null, enctype: FormEnctype? = null, type: FormType? = null, condensed: Boolean = false, classes: Set<String> = setOf(), noinline init: (FormPanel<K>.() -> Unit)? = null): FormPanel<K>
+inline fun <reified K : Any> Container.formPanel(method: FormMethod? = null, action: String? = null, enctype: FormEnctype? = null, type: FormType? = null, condensed: Boolean = false, horizRatio: FormHorizontalRatio = FormHorizontalRatio.RATIO_2, classes: Set<String> = setOf(), noinline init: (FormPanel<K>.() -> Unit)? = null): FormPanel<K>
enum class FormTarget
-fun <T : Any> Container.selectRemote(value: String? = null, serviceManager: KVServiceManager<T>, function: suspend T.(String?, String?, String?) -> List<<ERROR CLASS>>, stateFunction: (() -> String)? = null, name: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false, init: (SelectRemote<T>.() -> Unit)? = null): SelectRemote<T>
+fun <T : Any> Container.selectRemote(value: String? = null, serviceManager: KVServiceManager<T>, function: suspend T.(String?, String?, String?) -> List<<ERROR CLASS>>, stateFunction: (() -> String)? = null, name: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, preload: Boolean = false, label: String? = null, rich: Boolean = false, init: (SelectRemote<T>.() -> Unit)? = null): SelectRemote<T>
open class SelectRemoteInput<T : Any> : SelectInput
-fun <T : Any> Container.selectRemoteInput(value: String? = null, serviceManager: KVServiceManager<T>, function: suspend T.(String?, String?, String?) -> List<<ERROR CLASS>>, stateFunction: (() -> String)? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, classes: Set<String> = setOf(), init: (SelectRemoteInput<T>.() -> Unit)? = null): SelectRemoteInput<T>
+fun <T : Any> Container.selectRemoteInput(value: String? = null, serviceManager: KVServiceManager<T>, function: suspend T.(String?, String?, String?) -> List<<ERROR CLASS>>, stateFunction: (() -> String)? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, preload: Boolean = false, classes: Set<String> = setOf(), init: (SelectRemoteInput<T>.() -> Unit)? = null): SelectRemoteInput<T>
enum class SelectWidthType