open class Style : StyledComponent
CSS style object.
(js)
RefreshDelegate |
inner class RefreshDelegate<T> |
(js)
RefreshDelegateProvider |
inner class RefreshDelegateProvider<T> |
(js)
<init> |
Style(className: String? = null, parentStyle: Style? = null, init: (Style.() -> Unit)? = null) |
(js)
className |
The name of the CSS class. var className: String |
(js)
refreshOnUpdate |
fun <T> refreshOnUpdate(refreshFunction: (T) -> Unit = { this.refresh() }): RefreshDelegateProvider<T> fun <T> refreshOnUpdate(initialValue: T, refreshFunction: (T) -> Unit = { this.refresh() }): RefreshDelegateProvider<T> |
(js)
style |
DSL builder extension function for cascading styles. fun Style.style(className: String? = null, init: (Style.() -> Unit)? = null): Style |