From 9d35bb1e3d8186228cc409faa6d681624f20e9cd Mon Sep 17 00:00:00 2001
From: Robert Jaros Adds given value to the set of CSS classes generated in html code of current component. Adds given style object to the set of CSS classes generated in html code of current component. Adds given value to the set of CSS classes generated in html code of parent component. Adds given style object to the set of CSS classes generated in html code of parent component. Removes given value from the set of CSS classes generated in html code of current component. Removes given style object from the set of CSS classes generated in html code of current component. Removes given value from the set of CSS classes generated in html code of parent component. Removes given style object from the set of CSS classes generated in html code of parent component. Sets an event listener for current widget, keeping the actual type of component. Sets an event listener for current widget. Sets an event listener for current widget, keeping the actual type of component. Sets an event listener for current widget. DSL builder extension function.
+
+open fun addCssClass(css: String): Widget
open fun addCssClass(css: Style): Widget
+
+
@@ -404,7 +411,14 @@
+
+
+
+
open fun addCssStyle(css: Style): Widget
+
+open fun addSurroundingCssClass(css: String): Widget
open fun addSurroundingCssClass(css: Style): Widget
+
+
@@ -574,7 +588,14 @@
+
+
+
+
open fun addSurroundingCssStyle(css: Style): Widget
+
+open fun removeCssClass(css: String): Widget
open fun removeCssClass(css: Style): Widget
+
+
@@ -594,7 +615,14 @@
+
+
+
+
open fun removeCssStyle(css: Style): Widget
+
+open fun removeSurroundingCssClass(css: String): Widget
open fun removeSurroundingCssClass(css: Style): Widget
+
+
@@ -652,7 +680,7 @@
+
+
+
+
open fun removeSurroundingCssStyle(css: Style): Widget
@@ -766,6 +794,13 @@
open fun <T : Widget> setEventListener(block: SnOn<T>.() -> Unit): Widget
open fun setEventListener(block: SnOn<Widget>.() -> Unit): Widget
+open fun
setEventListener(block: SnOn<Widget>.() -> Unit): Widget
+
+
+
+
+
+fun <T : Widget> T.onEvent(block: SnOn<T>.() -> Unit): Widget
+
@@ -739,6 +739,13 @@
diff --git a/api/pl.treksoft.kvision.form.spinner/-spinner/index.html b/api/pl.treksoft.kvision.form.spinner/-spinner/index.html
index 15b114e9..d58729a1 100644
--- a/api/pl.treksoft.kvision.form.spinner/-spinner/index.html
+++ b/api/pl.treksoft.kvision.form.spinner/-spinner/index.html
@@ -263,7 +263,7 @@
open fun <T : Widget> setEventListener(block: SnOn<T>.() -> Unit): Widget
open fun setEventListener(block: SnOn<Widget>.() -> Unit): Widget
+open fun
setEventListener(block: SnOn<Widget>.() -> Unit): Widget
+
+
+
+
+
+fun <T : Widget> T.onEvent(block: SnOn<T>.() -> Unit): Widget
+
diff --git a/api/pl.treksoft.kvision.form.spinner/-spinner/set-event-listener.html b/api/pl.treksoft.kvision.form.spinner/-spinner/set-event-listener.html
index 73f9bae5..070efba5 100644
--- a/api/pl.treksoft.kvision.form.spinner/-spinner/set-event-listener.html
+++ b/api/pl.treksoft.kvision.form.spinner/-spinner/set-event-listener.html
@@ -31,8 +31,11 @@
}
}
@@ -1053,7 +1060,7 @@
-
fun <T : Any, E : Any> Container.tabulatorRemote(serviceManager: KVServiceManager<E>, function: suspend E.(Int?, Int?, List<<ERROR CLASS>>?, List<<ERROR CLASS>>?) -> <ERROR CLASS><T>, options: TabulatorOptions<T> = TabulatorOptions(), types: Set<TableType> = setOf(), classes: Set<String> = setOf(), init: (TabulatorRemote<T, E>.() -> Unit)? = null): TabulatorRemote<T, E>
+fun <T : Any, E : Any> Container.tabulatorRemote(serviceManager: KVServiceManager<E>, function: suspend E.(Int?, Int?, List<<ERROR CLASS>>?, List<<ERROR CLASS>>?, String?) -> <ERROR CLASS><T>, stateFunction: (() -> String)? = null, options: TabulatorOptions<T> = TabulatorOptions(), types: Set<TableType> = setOf(), classes: Set<String> = setOf(), init: (TabulatorRemote<T, E>.() -> Unit)? = null): TabulatorRemote<T, E>
open fun setEventListener(block: SnOn<Widget>.() -> Unit): Widget
+open fun setEventListener(block: SnOn<Widget>.() -> Unit): Widget
Overrides Widget.setEventListener
+Sets an event listener for current widget.