From 00a6ddf04d61ab322a36123891573c35b41ab58a Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 12 Feb 2018 12:08:10 +0100 Subject: Updated API doc --- docs/api/index-outline.html | 144 ++++++++++++++++++++++---------------------- 1 file changed, 72 insertions(+), 72 deletions(-) (limited to 'docs/api/index-outline.html') diff --git a/docs/api/index-outline.html b/docs/api/index-outline.html index 5e920e65..07f3f8f0 100644 --- a/docs/api/index-outline.html +++ b/docs/api/index-outline.html @@ -378,7 +378,7 @@ Button(text: String, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT, disabled: Boolean = false, classes: Set<String> = setOf())
var block: Boolean
-fun Container.button(text: String, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT, disabled: Boolean = false, classes: Set<String> = setOf(), init: Button.() -> Unit = null): Unit
+fun Container.button(text: String, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT, disabled: Boolean = false, classes: Set<String> = setOf(), init: Button.() -> Unit = null): Button
var disabled: Boolean
protected open fun getSnAttrs(): List<StringPair>
protected open fun getSnClass(): List<StringBoolPair>
@@ -587,7 +587,7 @@ CheckBox(value: Boolean = false, label: String? = null, rich: Boolean = false)
-fun Container.checkBox(value: Boolean = false, label: String? = null, rich: Boolean = false, init: CheckBox.() -> Unit = null): Unit
+fun Container.checkBox(value: Boolean = false, label: String? = null, rich: Boolean = false, init: CheckBox.() -> Unit = null): CheckBox
var circled: Boolean
open var disabled: Boolean
val flabel: FieldLabel
@@ -621,7 +621,7 @@ CheckInput(type: CHECKINPUTTYPE = CHECKINPUTTYPE.CHECKBOX, value: Boolean = false, classes: Set<String> = setOf())
protected open fun afterInsert(node: VNode): Unit
protected open fun afterPostpatch(node: VNode): Unit
-fun Container.checkInput(type: CHECKINPUTTYPE = CHECKINPUTTYPE.CHECKBOX, value: Boolean = false, classes: Set<String> = setOf(), init: CheckInput.() -> Unit = null): Unit
+fun Container.checkInput(type: CHECKINPUTTYPE = CHECKINPUTTYPE.CHECKBOX, value: Boolean = false, classes: Set<String> = setOf(), init: CheckInput.() -> Unit = null): CheckInput
var disabled: Boolean
var extraValue: String?
protected open fun getSnAttrs(): List<StringPair>
@@ -785,7 +785,7 @@ fun add(child: Component): Container
fun addAll(children: List<Component>): Container
fun clearOnUpdate(): DataContainer<M, C>
-fun <M : DataComponent, C : Component> Container.dataContainer(model: ObservableList<M>, binding: (Int) -> C, child: Container = VPanel(), init: DataContainer<M, C>.() -> Unit = null): Unit
+fun <M : DataComponent, C : Component> Container.dataContainer(model: ObservableList<M>, binding: (Int) -> C, child: Container = VPanel(), init: DataContainer<M, C>.() -> Unit = null): DataContainer<M, C>
fun getChildren(): List<Component>
fun onUpdate(handler: () -> Unit): DataContainer<M, C>
fun remove(child: Component): Container
@@ -836,7 +836,7 @@ DateTime(value: Date? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false)
var autofocus: Boolean?
var clearBtn: Boolean
-fun Container.dateTime(value: Date? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false, init: DateTime.() -> Unit = null): Unit
+fun Container.dateTime(value: Date? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false, init: DateTime.() -> Unit = null): DateTime
var daysOfWeekDisabled: Array<Int>
open var disabled: Boolean
val flabel: FieldLabel
@@ -879,7 +879,7 @@ var autofocus: Boolean?
protected open fun changeValue(): Unit
var clearBtn: Boolean
-fun Container.dateTimeInput(value: Date? = null, format: String = "YYYY-MM-DD HH:mm", classes: Set<String> = setOf(), init: DateTimeInput.() -> Unit = null): Unit
+fun Container.dateTimeInput(value: Date? = null, format: String = "YYYY-MM-DD HH:mm", classes: Set<String> = setOf(), init: DateTimeInput.() -> Unit = null): DateTimeInput
var daysOfWeekDisabled: Array<Int>
var disabled: Boolean
var format: String
@@ -917,7 +917,7 @@ open fun add(child: Component, position: SIDE): DockPanel
open fun add(child: Component): DockPanel
open fun addAll(children: List<Component>): DockPanel
-fun Container.dockPanel(classes: Set<String> = setOf(), init: DockPanel.() -> Unit = null): Unit
+fun Container.dockPanel(classes: Set<String> = setOf(), init: DockPanel.() -> Unit = null): DockPanel
open fun remove(child: Component): DockPanel
open fun removeAll(): DockPanel
open fun removeAt(position: SIDE): DockPanel
@@ -939,7 +939,7 @@ protected open fun afterInsert(node: VNode): Unit
var block: Boolean
var disabled: Boolean
-fun Container.dropDown(text: String, elements: List<StringPair>? = null, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT, disabled: Boolean = false, classes: Set<String> = setOf(), init: DropDown.() -> Unit = null): Unit
+fun Container.dropDown(text: String, elements: List<StringPair>? = null, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT, disabled: Boolean = false, classes: Set<String> = setOf(), init: DropDown.() -> Unit = null): DropDown
var dropup: Boolean
open fun getChildren(): List<Component>
protected open fun getSnClass(): List<StringBoolPair>
@@ -1302,7 +1302,7 @@ var autoRows: String?
var columnGap: Int?
protected open fun getSnStyle(): List<StringPair>
-fun Container.gridPanel(autoColumns: String? = null, autoRows: String? = null, autoFlow: GRIDFLOW? = null, templateColumns: String? = null, templateRows: String? = null, templateAreas: List<String>? = null, columnGap: Int? = null, rowGap: Int? = null, justifyItems: GRIDJUSTIFY? = null, alignItems: GRIDALIGN? = null, justifyContent: GRIDJUSTIFYCONTENT? = null, alignContent: GRIDALIGNCONTENT? = null, classes: Set<String> = setOf(), init: GridPanel.() -> Unit = null): Unit
+fun Container.gridPanel(autoColumns: String? = null, autoRows: String? = null, autoFlow: GRIDFLOW? = null, templateColumns: String? = null, templateRows: String? = null, templateAreas: List<String>? = null, columnGap: Int? = null, rowGap: Int? = null, justifyItems: GRIDJUSTIFY? = null, alignItems: GRIDALIGN? = null, justifyContent: GRIDJUSTIFYCONTENT? = null, alignContent: GRIDALIGNCONTENT? = null, classes: Set<String> = setOf(), init: GridPanel.() -> Unit = null): GridPanel
var justifyContent: GRIDJUSTIFYCONTENT?
var justifyItems: GRIDJUSTIFY?
open fun remove(child: Component): GridPanel
@@ -1338,7 +1338,7 @@ HPanel(wrap: FLEXWRAP? = null, justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: HPanel.() -> Unit = null)
-fun Container.hPanel(wrap: FLEXWRAP? = null, justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: HPanel.() -> Unit = null): Unit
+fun Container.hPanel(wrap: FLEXWRAP? = null, justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: HPanel.() -> Unit = null): HPanel
@@ -1430,7 +1430,7 @@ var centered: Boolean
protected open fun getSnAttrs(): List<StringPair>
protected open fun getSnClass(): List<StringBoolPair>
-fun Container.image(src: ResString, alt: String? = null, responsive: Boolean = false, shape: IMAGESHAPE? = null, centered: Boolean = false, classes: Set<String> = setOf(), init: Image.() -> Unit = null): Unit
+fun Container.image(src: ResString, alt: String? = null, responsive: Boolean = false, shape: IMAGESHAPE? = null, centered: Boolean = false, classes: Set<String> = setOf(), init: Image.() -> Unit = null): Image
protected open fun render(): VNode
var responsive: Boolean
var shape: IMAGESHAPE?
@@ -1480,7 +1480,7 @@ Label(text: String, rich: Boolean = false)
-fun Container.label(text: String, rich: Boolean = false, init: Label.() -> Unit = null): Unit
+fun Container.label(text: String, rich: Boolean = false, init: Label.() -> Unit = null): Label
@@ -1498,7 +1498,7 @@ var icon: String?
var image: ResString?
var label: String
-fun Container.link(label: String, url: String, icon: String? = null, image: ResString? = null, classes: Set<String> = setOf(), init: Link.() -> Unit = null): Unit
+fun Container.link(label: String, url: String, icon: String? = null, image: ResString? = null, classes: Set<String> = setOf(), init: Link.() -> Unit = null): Link
protected open fun render(): VNode
var url: String
@@ -1517,7 +1517,7 @@ protected open fun childrenVNodes(): Array<VNode>
var elements: List<String>?
protected open fun getSnClass(): List<StringBoolPair>
-fun Container.listTag(type: LISTTYPE, elements: List<String>? = null, rich: Boolean = false, classes: Set<String> = setOf(), init: ListTag.() -> Unit = null): Unit
+fun Container.listTag(type: LISTTYPE, elements: List<String>? = null, rich: Boolean = false, classes: Set<String> = setOf(), init: ListTag.() -> Unit = null): ListTag
protected open fun render(): VNode
var rich: Boolean
var type: LISTTYPE
@@ -1618,7 +1618,7 @@ Password(value: String? = null, label: String? = null, rich: Boolean = false)
-fun Container.password(value: String? = null, label: String? = null, rich: Boolean = false, init: Password.() -> Unit = null): Unit
+fun Container.password(value: String? = null, label: String? = null, rich: Boolean = false, init: Password.() -> Unit = null): Password
@@ -1659,7 +1659,7 @@ var label: String?
var name: String?
open fun onClick(handler: Radio.(MouseEvent) -> Unit): Radio
-fun Container.radio(value: Boolean = false, extraValue: String? = null, name: String? = null, label: String? = null, rich: Boolean = false, init: Radio.() -> Unit = null): Unit
+fun Container.radio(value: Boolean = false, extraValue: String? = null, name: String? = null, label: String? = null, rich: Boolean = false, init: Radio.() -> Unit = null): Radio
open fun removeEventListeners(): Widget
var rich: Boolean
open fun <T : Widget> setEventListener(block: SnOn<T>.() -> Unit): Widget
@@ -1690,7 +1690,7 @@ val input: Widget
var label: String?
var options: List<StringPair>?
-fun Container.radioGroup(options: List<StringPair>? = null, value: String? = null, inline: Boolean = false, label: String? = null, rich: Boolean = false, init: RadioGroup.() -> Unit = null): Unit
+fun Container.radioGroup(options: List<StringPair>? = null, value: String? = null, inline: Boolean = false, label: String? = null, rich: Boolean = false, init: RadioGroup.() -> Unit = null): RadioGroup
var rich: Boolean
open var size: INPUTSIZE?
val validationInfo: HelpBlock
@@ -1715,7 +1715,7 @@ var align: ALIGN?
open fun remove(child: Component): ResponsiveGridPanel
open fun removeAt(col: Int, row: Int): ResponsiveGridPanel
-fun Container.responsiveGridPanel(gridsize: GRIDSIZE = GRIDSIZE.MD, rows: Int = 0, cols: Int = 0, align: ALIGN? = null, classes: Set<String> = setOf(), init: ResponsiveGridPanel.() -> Unit = null): Unit
+fun Container.responsiveGridPanel(gridsize: GRIDSIZE = GRIDSIZE.MD, rows: Int = 0, cols: Int = 0, align: ALIGN? = null, classes: Set<String> = setOf(), init: ResponsiveGridPanel.() -> Unit = null): ResponsiveGridPanel
@@ -1731,7 +1731,7 @@ RichText(value: String? = null, label: String? = null, rich: Boolean = false)
val input: RichTextInput
var inputHeight: CssSize?
-fun Container.richText(value: String? = null, label: String? = null, rich: Boolean = false, init: RichText.() -> Unit = null): Unit
+fun Container.richText(value: String? = null, label: String? = null, rich: Boolean = false, init: RichText.() -> Unit = null): RichText
@@ -1749,7 +1749,7 @@ protected open fun afterInsert(node: VNode): Unit
protected open fun getSnAttrs(): List<StringPair>
protected open fun render(): VNode
-fun Container.richTextInput(value: String? = null, classes: Set<String> = setOf(), init: RichTextInput.() -> Unit = null): Unit
+fun Container.richTextInput(value: String? = null, classes: Set<String> = setOf(), init: RichTextInput.() -> Unit = null): RichTextInput
@@ -1846,7 +1846,7 @@ open fun removeAll(): SimplePanel
open fun removeEventListeners(): Widget
var rich: Boolean
-fun Container.select(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false, init: Select.() -> Unit = null): Unit
+fun Container.select(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false, init: Select.() -> Unit = null): Select
var selectWidth: CssSize?
var selectWidthType: SELECTWIDTHTYPE?
open fun <T : Widget> setEventListener(block: SnOn<T>.() -> Unit): Widget
@@ -1888,7 +1888,7 @@ open fun remove(child: Component): SimplePanel
open fun removeAll(): SimplePanel
protected open fun render(): VNode
-fun Container.selectInput(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, classes: Set<String> = setOf(), init: SelectInput.() -> Unit = null): Unit
+fun Container.selectInput(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, classes: Set<String> = setOf(), init: SelectInput.() -> Unit = null): SelectInput
var selectWidth: CssSize?
var selectWidthType: SELECTWIDTHTYPE?
open fun showOptions(): Unit
@@ -1957,7 +1957,7 @@ open fun remove(child: Component): SimplePanel
open fun removeAll(): SimplePanel
protected open fun render(): VNode
-fun Container.simplePanel(classes: Set<String> = setOf(), init: SimplePanel.() -> Unit = null): Unit
+fun Container.simplePanel(classes: Set<String> = setOf(), init: SimplePanel.() -> Unit = null): SimplePanel
@@ -1994,7 +1994,7 @@ open var size: INPUTSIZE?
open fun spinDown(): Spinner
open fun spinUp(): Spinner
-fun Container.spinner(value: Number? = null, min: Int = 0, max: Int = DEFAULT_MAX, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: BUTTONSTYPE = BUTTONSTYPE.VERTICAL, forceType: FORCETYPE = FORCETYPE.NONE, label: String? = null, rich: Boolean = false, init: Spinner.() -> Unit = null): Unit
+fun Container.spinner(value: Number? = null, min: Int = 0, max: Int = DEFAULT_MAX, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: BUTTONSTYPE = BUTTONSTYPE.VERTICAL, forceType: FORCETYPE = FORCETYPE.NONE, label: String? = null, rich: Boolean = false, init: Spinner.() -> Unit = null): Spinner
var startValue: Number?
var step: Double
val validationInfo: HelpBlock
@@ -2032,7 +2032,7 @@ var size: INPUTSIZE?
fun spinDown(): SpinnerInput
fun spinUp(): SpinnerInput
-fun Container.spinnerInput(value: Number? = null, min: Int = 0, max: Int = DEFAULT_MAX, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: BUTTONSTYPE = BUTTONSTYPE.VERTICAL, forceType: FORCETYPE = FORCETYPE.NONE, classes: Set<String> = setOf(), init: SpinnerInput.() -> Unit = null): Unit
+fun Container.spinnerInput(value: Number? = null, min: Int = 0, max: Int = DEFAULT_MAX, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: BUTTONSTYPE = BUTTONSTYPE.VERTICAL, forceType: FORCETYPE = FORCETYPE.NONE, classes: Set<String> = setOf(), init: SpinnerInput.() -> Unit = null): SpinnerInput
var startValue: Number?
var step: Double
var value: Number?
@@ -2050,7 +2050,7 @@ SplitPanel(direction: DIRECTION = DIRECTION.VERTICAL, classes: Set<String> = setOf(), init: SplitPanel.() -> Unit = null)
protected open fun childrenVNodes(): Array<VNode>
-fun Container.splitPanel(direction: DIRECTION = DIRECTION.VERTICAL, classes: Set<String> = setOf(), init: SplitPanel.() -> Unit = null): Unit
+fun Container.splitPanel(direction: DIRECTION = DIRECTION.VERTICAL, classes: Set<String> = setOf(), init: SplitPanel.() -> Unit = null): SplitPanel
@@ -2071,7 +2071,7 @@ protected open fun childrenVNodes(): Array<VNode>
open fun remove(child: Component): StackPanel
open fun removeAll(): StackPanel
-fun Container.stackPanel(activateLast: Boolean = true, classes: Set<String> = setOf(), init: StackPanel.() -> Unit = null): Unit
+fun Container.stackPanel(activateLast: Boolean = true, classes: Set<String> = setOf(), init: StackPanel.() -> Unit = null): StackPanel
@@ -2214,7 +2214,7 @@ open fun remove(child: Component): TabPanel
open fun removeAll(): TabPanel
open fun removeTab(index: Int): TabPanel
-fun Container.tabPanel(classes: Set<String> = setOf(), init: TabPanel.() -> Unit = null): Unit
+fun Container.tabPanel(classes: Set<String> = setOf(), init: TabPanel.() -> Unit = null): TabPanel
@@ -2232,7 +2232,7 @@ protected open fun getSnClass(): List<StringBoolPair>
protected open fun render(): VNode
var rich: Boolean
-fun Container.tag(type: TAG, text: String? = null, rich: Boolean = false, align: ALIGN? = null, classes: Set<String> = setOf(), init: Tag.() -> Unit = null): Unit
+fun Container.tag(type: TAG, text: String? = null, rich: Boolean = false, align: ALIGN? = null, classes: Set<String> = setOf(), init: Tag.() -> Unit = null): Tag
var text: String?
var type: TAG
@@ -2250,7 +2250,7 @@ Text(type: TEXTINPUTTYPE = TEXTINPUTTYPE.TEXT, value: String? = null, label: String? = null, rich: Boolean = false)
var autocomplete: Boolean?
val input: TextInput
-fun Container.text(type: TEXTINPUTTYPE = TEXTINPUTTYPE.TEXT, value: String? = null, label: String? = null, rich: Boolean = false, init: Text.() -> Unit = null): Unit
+fun Container.text(type: TEXTINPUTTYPE = TEXTINPUTTYPE.TEXT, value: String? = null, label: String? = null, rich: Boolean = false, init: Text.() -> Unit = null): Text
var type: TEXTINPUTTYPE
@@ -2268,7 +2268,7 @@ var cols: Int?
val input: TextAreaInput
var rows: Int?
-fun Container.textArea(cols: Int? = null, rows: Int? = null, value: String? = null, label: String? = null, rich: Boolean = false, init: TextArea.() -> Unit = null): Unit
+fun Container.textArea(cols: Int? = null, rows: Int? = null, value: String? = null, label: String? = null, rich: Boolean = false, init: TextArea.() -> Unit = null): TextArea
var wrapHard: Boolean
@@ -2287,7 +2287,7 @@ protected open fun getSnAttrs(): List<StringPair>
protected open fun render(): VNode
var rows: Int?
-fun Container.textAreaInput(cols: Int? = null, rows: Int? = null, value: String? = null, classes: Set<String> = setOf(), init: TextAreaInput.() -> Unit = null): Unit
+fun Container.textAreaInput(cols: Int? = null, rows: Int? = null, value: String? = null, classes: Set<String> = setOf(), init: TextAreaInput.() -> Unit = null): TextAreaInput
var wrapHard: Boolean
@@ -2305,7 +2305,7 @@ var autocomplete: Boolean?
protected open fun getSnAttrs(): List<StringPair>
protected open fun render(): VNode
-fun Container.textInput(type: TEXTINPUTTYPE = TEXTINPUTTYPE.TEXT, value: String? = null, classes: Set<String> = setOf(), init: TextInput.() -> Unit = null): Unit
+fun Container.textInput(type: TEXTINPUTTYPE = TEXTINPUTTYPE.TEXT, value: String? = null, classes: Set<String> = setOf(), init: TextInput.() -> Unit = null): TextInput
var type: TEXTINPUTTYPE
@@ -2347,7 +2347,7 @@ VPanel(justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: VPanel.() -> Unit = null)
-fun Container.vPanel(justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: VPanel.() -> Unit = null): Unit
+fun Container.vPanel(justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: VPanel.() -> Unit = null): VPanel
@@ -2390,7 +2390,7 @@ var title: String?
open fun toggleVisible(): Widget
open var visible: Boolean
-fun Container.widget(classes: Set<String> = setOf(), init: Widget.() -> Unit = null): Unit
+fun Container.widget(classes: Set<String> = setOf(), init: Widget.() -> Unit = null): Widget
@@ -2406,7 +2406,7 @@ WidgetWrapper(wrapped: Component?, classes: Set<String> = setOf())
protected open fun render(): VNode
open var visible: Boolean
-fun Container.widgetWrapper(wrapped: Component?, classes: Set<String> = setOf(), init: WidgetWrapper.() -> Unit = null): Unit
+fun Container.widgetWrapper(wrapped: Component?, classes: Set<String> = setOf(), init: WidgetWrapper.() -> Unit = null): WidgetWrapper
@@ -2950,7 +2950,7 @@ var title: String?
open fun toggleVisible(): Widget
open var visible: Boolean
-fun Container.widget(classes: Set<String> = setOf(), init: Widget.() -> Unit = null): Unit
+fun Container.widget(classes: Set<String> = setOf(), init: Widget.() -> Unit = null): Widget
@@ -2966,7 +2966,7 @@ WidgetWrapper(wrapped: Component?, classes: Set<String> = setOf())
protected open fun render(): VNode
open var visible: Boolean
-fun Container.widgetWrapper(wrapped: Component?, classes: Set<String> = setOf(), init: WidgetWrapper.() -> Unit = null): Unit
+fun Container.widgetWrapper(wrapped: Component?, classes: Set<String> = setOf(), init: WidgetWrapper.() -> Unit = null): WidgetWrapper
@@ -3009,7 +3009,7 @@ fun add(child: Component): Container
fun addAll(children: List<Component>): Container
fun clearOnUpdate(): DataContainer<M, C>
-fun <M : DataComponent, C : Component> Container.dataContainer(model: ObservableList<M>, binding: (Int) -> C, child: Container = VPanel(), init: DataContainer<M, C>.() -> Unit = null): Unit
+fun <M : DataComponent, C : Component> Container.dataContainer(model: ObservableList<M>, binding: (Int) -> C, child: Container = VPanel(), init: DataContainer<M, C>.() -> Unit = null): DataContainer<M, C>
fun getChildren(): List<Component>
fun onUpdate(handler: () -> Unit): DataContainer<M, C>
fun remove(child: Component): Container
@@ -3075,7 +3075,7 @@ protected open fun afterInsert(node: VNode): Unit
var block: Boolean
var disabled: Boolean
-fun Container.dropDown(text: String, elements: List<StringPair>? = null, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT, disabled: Boolean = false, classes: Set<String> = setOf(), init: DropDown.() -> Unit = null): Unit
+fun Container.dropDown(text: String, elements: List<StringPair>? = null, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT, disabled: Boolean = false, classes: Set<String> = setOf(), init: DropDown.() -> Unit = null): DropDown
var dropup: Boolean
open fun getChildren(): List<Component>
protected open fun getSnClass(): List<StringBoolPair>
@@ -3366,7 +3366,7 @@ CheckBox(value: Boolean = false, label: String? = null, rich: Boolean = false)
-fun Container.checkBox(value: Boolean = false, label: String? = null, rich: Boolean = false, init: CheckBox.() -> Unit = null): Unit
+fun Container.checkBox(value: Boolean = false, label: String? = null, rich: Boolean = false, init: CheckBox.() -> Unit = null): CheckBox
var circled: Boolean
open var disabled: Boolean
val flabel: FieldLabel
@@ -3400,7 +3400,7 @@ CheckInput(type: CHECKINPUTTYPE = CHECKINPUTTYPE.CHECKBOX, value: Boolean = false, classes: Set<String> = setOf())
protected open fun afterInsert(node: VNode): Unit
protected open fun afterPostpatch(node: VNode): Unit
-fun Container.checkInput(type: CHECKINPUTTYPE = CHECKINPUTTYPE.CHECKBOX, value: Boolean = false, classes: Set<String> = setOf(), init: CheckInput.() -> Unit = null): Unit
+fun Container.checkInput(type: CHECKINPUTTYPE = CHECKINPUTTYPE.CHECKBOX, value: Boolean = false, classes: Set<String> = setOf(), init: CheckInput.() -> Unit = null): CheckInput
var disabled: Boolean
var extraValue: String?
protected open fun getSnAttrs(): List<StringPair>
@@ -3452,7 +3452,7 @@ var label: String?
var name: String?
open fun onClick(handler: Radio.(MouseEvent) -> Unit): Radio
-fun Container.radio(value: Boolean = false, extraValue: String? = null, name: String? = null, label: String? = null, rich: Boolean = false, init: Radio.() -> Unit = null): Unit
+fun Container.radio(value: Boolean = false, extraValue: String? = null, name: String? = null, label: String? = null, rich: Boolean = false, init: Radio.() -> Unit = null): Radio
open fun removeEventListeners(): Widget
var rich: Boolean
open fun <T : Widget> setEventListener(block: SnOn<T>.() -> Unit): Widget
@@ -3483,7 +3483,7 @@ val input: Widget
var label: String?
var options: List<StringPair>?
-fun Container.radioGroup(options: List<StringPair>? = null, value: String? = null, inline: Boolean = false, label: String? = null, rich: Boolean = false, init: RadioGroup.() -> Unit = null): Unit
+fun Container.radioGroup(options: List<StringPair>? = null, value: String? = null, inline: Boolean = false, label: String? = null, rich: Boolean = false, init: RadioGroup.() -> Unit = null): RadioGroup
var rich: Boolean
open var size: INPUTSIZE?
val validationInfo: HelpBlock
@@ -3606,7 +3606,7 @@ open fun removeAll(): SimplePanel
open fun removeEventListeners(): Widget
var rich: Boolean
-fun Container.select(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false, init: Select.() -> Unit = null): Unit
+fun Container.select(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, label: String? = null, rich: Boolean = false, init: Select.() -> Unit = null): Select
var selectWidth: CssSize?
var selectWidthType: SELECTWIDTHTYPE?
open fun <T : Widget> setEventListener(block: SnOn<T>.() -> Unit): Widget
@@ -3648,7 +3648,7 @@ open fun remove(child: Component): SimplePanel
open fun removeAll(): SimplePanel
protected open fun render(): VNode
-fun Container.selectInput(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, classes: Set<String> = setOf(), init: SelectInput.() -> Unit = null): Unit
+fun Container.selectInput(options: List<StringPair>? = null, value: String? = null, multiple: Boolean = false, ajaxOptions: AjaxOptions? = null, classes: Set<String> = setOf(), init: SelectInput.() -> Unit = null): SelectInput
var selectWidth: CssSize?
var selectWidthType: SELECTWIDTHTYPE?
open fun showOptions(): Unit
@@ -3776,7 +3776,7 @@ open var size: INPUTSIZE?
open fun spinDown(): Spinner
open fun spinUp(): Spinner
-fun Container.spinner(value: Number? = null, min: Int = 0, max: Int = DEFAULT_MAX, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: BUTTONSTYPE = BUTTONSTYPE.VERTICAL, forceType: FORCETYPE = FORCETYPE.NONE, label: String? = null, rich: Boolean = false, init: Spinner.() -> Unit = null): Unit
+fun Container.spinner(value: Number? = null, min: Int = 0, max: Int = DEFAULT_MAX, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: BUTTONSTYPE = BUTTONSTYPE.VERTICAL, forceType: FORCETYPE = FORCETYPE.NONE, label: String? = null, rich: Boolean = false, init: Spinner.() -> Unit = null): Spinner
var startValue: Number?
var step: Double
val validationInfo: HelpBlock
@@ -3814,7 +3814,7 @@ var size: INPUTSIZE?
fun spinDown(): SpinnerInput
fun spinUp(): SpinnerInput
-fun Container.spinnerInput(value: Number? = null, min: Int = 0, max: Int = DEFAULT_MAX, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: BUTTONSTYPE = BUTTONSTYPE.VERTICAL, forceType: FORCETYPE = FORCETYPE.NONE, classes: Set<String> = setOf(), init: SpinnerInput.() -> Unit = null): Unit
+fun Container.spinnerInput(value: Number? = null, min: Int = 0, max: Int = DEFAULT_MAX, step: Double = DEFAULT_STEP, decimals: Int = 0, buttonsType: BUTTONSTYPE = BUTTONSTYPE.VERTICAL, forceType: FORCETYPE = FORCETYPE.NONE, classes: Set<String> = setOf(), init: SpinnerInput.() -> Unit = null): SpinnerInput
var startValue: Number?
var step: Double
var value: Number?
@@ -3903,7 +3903,7 @@ Password(value: String? = null, label: String? = null, rich: Boolean = false)
-fun Container.password(value: String? = null, label: String? = null, rich: Boolean = false, init: Password.() -> Unit = null): Unit
+fun Container.password(value: String? = null, label: String? = null, rich: Boolean = false, init: Password.() -> Unit = null): Password
@@ -3919,7 +3919,7 @@ RichText(value: String? = null, label: String? = null, rich: Boolean = false)
val input: RichTextInput
var inputHeight: CssSize?
-fun Container.richText(value: String? = null, label: String? = null, rich: Boolean = false, init: RichText.() -> Unit = null): Unit
+fun Container.richText(value: String? = null, label: String? = null, rich: Boolean = false, init: RichText.() -> Unit = null): RichText
@@ -3937,7 +3937,7 @@ protected open fun afterInsert(node: VNode): Unit
protected open fun getSnAttrs(): List<StringPair>
protected open fun render(): VNode
-fun Container.richTextInput(value: String? = null, classes: Set<String> = setOf(), init: RichTextInput.() -> Unit = null): Unit
+fun Container.richTextInput(value: String? = null, classes: Set<String> = setOf(), init: RichTextInput.() -> Unit = null): RichTextInput
@@ -3972,7 +3972,7 @@ Text(type: TEXTINPUTTYPE = TEXTINPUTTYPE.TEXT, value: String? = null, label: String? = null, rich: Boolean = false)
var autocomplete: Boolean?
val input: TextInput
-fun Container.text(type: TEXTINPUTTYPE = TEXTINPUTTYPE.TEXT, value: String? = null, label: String? = null, rich: Boolean = false, init: Text.() -> Unit = null): Unit
+fun Container.text(type: TEXTINPUTTYPE = TEXTINPUTTYPE.TEXT, value: String? = null, label: String? = null, rich: Boolean = false, init: Text.() -> Unit = null): Text
var type: TEXTINPUTTYPE
@@ -3990,7 +3990,7 @@ var cols: Int?
val input: TextAreaInput
var rows: Int?
-fun Container.textArea(cols: Int? = null, rows: Int? = null, value: String? = null, label: String? = null, rich: Boolean = false, init: TextArea.() -> Unit = null): Unit
+fun Container.textArea(cols: Int? = null, rows: Int? = null, value: String? = null, label: String? = null, rich: Boolean = false, init: TextArea.() -> Unit = null): TextArea
var wrapHard: Boolean
@@ -4009,7 +4009,7 @@ protected open fun getSnAttrs(): List<StringPair>
protected open fun render(): VNode
var rows: Int?
-fun Container.textAreaInput(cols: Int? = null, rows: Int? = null, value: String? = null, classes: Set<String> = setOf(), init: TextAreaInput.() -> Unit = null): Unit
+fun Container.textAreaInput(cols: Int? = null, rows: Int? = null, value: String? = null, classes: Set<String> = setOf(), init: TextAreaInput.() -> Unit = null): TextAreaInput
var wrapHard: Boolean
@@ -4027,7 +4027,7 @@ var autocomplete: Boolean?
protected open fun getSnAttrs(): List<StringPair>
protected open fun render(): VNode
-fun Container.textInput(type: TEXTINPUTTYPE = TEXTINPUTTYPE.TEXT, value: String? = null, classes: Set<String> = setOf(), init: TextInput.() -> Unit = null): Unit
+fun Container.textInput(type: TEXTINPUTTYPE = TEXTINPUTTYPE.TEXT, value: String? = null, classes: Set<String> = setOf(), init: TextInput.() -> Unit = null): TextInput
var type: TEXTINPUTTYPE
@@ -4056,7 +4056,7 @@ DateTime(value: Date? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false)
var autofocus: Boolean?
var clearBtn: Boolean
-fun Container.dateTime(value: Date? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false, init: DateTime.() -> Unit = null): Unit
+fun Container.dateTime(value: Date? = null, format: String = "YYYY-MM-DD HH:mm", label: String? = null, rich: Boolean = false, init: DateTime.() -> Unit = null): DateTime
var daysOfWeekDisabled: Array<Int>
open var disabled: Boolean
val flabel: FieldLabel
@@ -4099,7 +4099,7 @@ var autofocus: Boolean?
protected open fun changeValue(): Unit
var clearBtn: Boolean
-fun Container.dateTimeInput(value: Date? = null, format: String = "YYYY-MM-DD HH:mm", classes: Set<String> = setOf(), init: DateTimeInput.() -> Unit = null): Unit
+fun Container.dateTimeInput(value: Date? = null, format: String = "YYYY-MM-DD HH:mm", classes: Set<String> = setOf(), init: DateTimeInput.() -> Unit = null): DateTimeInput
var daysOfWeekDisabled: Array<Int>
var disabled: Boolean
var format: String
@@ -4257,7 +4257,7 @@ Button(text: String, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT, disabled: Boolean = false, classes: Set<String> = setOf())
var block: Boolean
-fun Container.button(text: String, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT, disabled: Boolean = false, classes: Set<String> = setOf(), init: Button.() -> Unit = null): Unit
+fun Container.button(text: String, icon: String? = null, style: BUTTONSTYLE = BUTTONSTYLE.DEFAULT, disabled: Boolean = false, classes: Set<String> = setOf(), init: Button.() -> Unit = null): Button
var disabled: Boolean
protected open fun getSnAttrs(): List<StringPair>
protected open fun getSnClass(): List<StringBoolPair>
@@ -4300,7 +4300,7 @@ var centered: Boolean
protected open fun getSnAttrs(): List<StringPair>
protected open fun getSnClass(): List<StringBoolPair>
-fun Container.image(src: ResString, alt: String? = null, responsive: Boolean = false, shape: IMAGESHAPE? = null, centered: Boolean = false, classes: Set<String> = setOf(), init: Image.() -> Unit = null): Unit
+fun Container.image(src: ResString, alt: String? = null, responsive: Boolean = false, shape: IMAGESHAPE? = null, centered: Boolean = false, classes: Set<String> = setOf(), init: Image.() -> Unit = null): Image
protected open fun render(): VNode
var responsive: Boolean
var shape: IMAGESHAPE?
@@ -4336,7 +4336,7 @@ Label(text: String, rich: Boolean = false)
-fun Container.label(text: String, rich: Boolean = false, init: Label.() -> Unit = null): Unit
+fun Container.label(text: String, rich: Boolean = false, init: Label.() -> Unit = null): Label
@@ -4354,7 +4354,7 @@ var icon: String?
var image: ResString?
var label: String
-fun Container.link(label: String, url: String, icon: String? = null, image: ResString? = null, classes: Set<String> = setOf(), init: Link.() -> Unit = null): Unit
+fun Container.link(label: String, url: String, icon: String? = null, image: ResString? = null, classes: Set<String> = setOf(), init: Link.() -> Unit = null): Link
protected open fun render(): VNode
var url: String
@@ -4373,7 +4373,7 @@ protected open fun childrenVNodes(): Array<VNode>
var elements: List<String>?
protected open fun getSnClass(): List<StringBoolPair>
-fun Container.listTag(type: LISTTYPE, elements: List<String>? = null, rich: Boolean = false, classes: Set<String> = setOf(), init: ListTag.() -> Unit = null): Unit
+fun Container.listTag(type: LISTTYPE, elements: List<String>? = null, rich: Boolean = false, classes: Set<String> = setOf(), init: ListTag.() -> Unit = null): ListTag
protected open fun render(): VNode
var rich: Boolean
var type: LISTTYPE
@@ -4439,7 +4439,7 @@ protected open fun getSnClass(): List<StringBoolPair>
protected open fun render(): VNode
var rich: Boolean
-fun Container.tag(type: TAG, text: String? = null, rich: Boolean = false, align: ALIGN? = null, classes: Set<String> = setOf(), init: Tag.() -> Unit = null): Unit
+fun Container.tag(type: TAG, text: String? = null, rich: Boolean = false, align: ALIGN? = null, classes: Set<String> = setOf(), init: Tag.() -> Unit = null): Tag
var text: String?
var type: TAG
@@ -4590,7 +4590,7 @@ open fun add(child: Component, position: SIDE): DockPanel
open fun add(child: Component): DockPanel
open fun addAll(children: List<Component>): DockPanel
-fun Container.dockPanel(classes: Set<String> = setOf(), init: DockPanel.() -> Unit = null): Unit
+fun Container.dockPanel(classes: Set<String> = setOf(), init: DockPanel.() -> Unit = null): DockPanel
open fun remove(child: Component): DockPanel
open fun removeAll(): DockPanel
open fun removeAt(position: SIDE): DockPanel
@@ -4828,7 +4828,7 @@ var autoRows: String?
var columnGap: Int?
protected open fun getSnStyle(): List<StringPair>
-fun Container.gridPanel(autoColumns: String? = null, autoRows: String? = null, autoFlow: GRIDFLOW? = null, templateColumns: String? = null, templateRows: String? = null, templateAreas: List<String>? = null, columnGap: Int? = null, rowGap: Int? = null, justifyItems: GRIDJUSTIFY? = null, alignItems: GRIDALIGN? = null, justifyContent: GRIDJUSTIFYCONTENT? = null, alignContent: GRIDALIGNCONTENT? = null, classes: Set<String> = setOf(), init: GridPanel.() -> Unit = null): Unit
+fun Container.gridPanel(autoColumns: String? = null, autoRows: String? = null, autoFlow: GRIDFLOW? = null, templateColumns: String? = null, templateRows: String? = null, templateAreas: List<String>? = null, columnGap: Int? = null, rowGap: Int? = null, justifyItems: GRIDJUSTIFY? = null, alignItems: GRIDALIGN? = null, justifyContent: GRIDJUSTIFYCONTENT? = null, alignContent: GRIDALIGNCONTENT? = null, classes: Set<String> = setOf(), init: GridPanel.() -> Unit = null): GridPanel
var justifyContent: GRIDJUSTIFYCONTENT?
var justifyItems: GRIDJUSTIFY?
open fun remove(child: Component): GridPanel
@@ -4864,7 +4864,7 @@ HPanel(wrap: FLEXWRAP? = null, justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: HPanel.() -> Unit = null)
-fun Container.hPanel(wrap: FLEXWRAP? = null, justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: HPanel.() -> Unit = null): Unit
+fun Container.hPanel(wrap: FLEXWRAP? = null, justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: HPanel.() -> Unit = null): HPanel
@@ -4884,7 +4884,7 @@ var align: ALIGN?
open fun remove(child: Component): ResponsiveGridPanel
open fun removeAt(col: Int, row: Int): ResponsiveGridPanel
-fun Container.responsiveGridPanel(gridsize: GRIDSIZE = GRIDSIZE.MD, rows: Int = 0, cols: Int = 0, align: ALIGN? = null, classes: Set<String> = setOf(), init: ResponsiveGridPanel.() -> Unit = null): Unit
+fun Container.responsiveGridPanel(gridsize: GRIDSIZE = GRIDSIZE.MD, rows: Int = 0, cols: Int = 0, align: ALIGN? = null, classes: Set<String> = setOf(), init: ResponsiveGridPanel.() -> Unit = null): ResponsiveGridPanel
@@ -4938,7 +4938,7 @@ open fun remove(child: Component): SimplePanel
open fun removeAll(): SimplePanel
protected open fun render(): VNode
-fun Container.simplePanel(classes: Set<String> = setOf(), init: SimplePanel.() -> Unit = null): Unit
+fun Container.simplePanel(classes: Set<String> = setOf(), init: SimplePanel.() -> Unit = null): SimplePanel
@@ -4953,7 +4953,7 @@ SplitPanel(direction: DIRECTION = DIRECTION.VERTICAL, classes: Set<String> = setOf(), init: SplitPanel.() -> Unit = null)
protected open fun childrenVNodes(): Array<VNode>
-fun Container.splitPanel(direction: DIRECTION = DIRECTION.VERTICAL, classes: Set<String> = setOf(), init: SplitPanel.() -> Unit = null): Unit
+fun Container.splitPanel(direction: DIRECTION = DIRECTION.VERTICAL, classes: Set<String> = setOf(), init: SplitPanel.() -> Unit = null): SplitPanel
@@ -4974,7 +4974,7 @@ protected open fun childrenVNodes(): Array<VNode>
open fun remove(child: Component): StackPanel
open fun removeAll(): StackPanel
-fun Container.stackPanel(activateLast: Boolean = true, classes: Set<String> = setOf(), init: StackPanel.() -> Unit = null): Unit
+fun Container.stackPanel(activateLast: Boolean = true, classes: Set<String> = setOf(), init: StackPanel.() -> Unit = null): StackPanel
@@ -4995,7 +4995,7 @@ open fun remove(child: Component): TabPanel
open fun removeAll(): TabPanel
open fun removeTab(index: Int): TabPanel
-fun Container.tabPanel(classes: Set<String> = setOf(), init: TabPanel.() -> Unit = null): Unit
+fun Container.tabPanel(classes: Set<String> = setOf(), init: TabPanel.() -> Unit = null): TabPanel
@@ -5009,7 +5009,7 @@ VPanel(justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: VPanel.() -> Unit = null)
-fun Container.vPanel(justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: VPanel.() -> Unit = null): Unit
+fun Container.vPanel(justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf(), init: VPanel.() -> Unit = null): VPanel
-- cgit