mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2024-11-15 21:03:59 +00:00
commit
36eeb012c6
@ -1,5 +1,9 @@
|
||||
# Changelog
|
||||
|
||||
## 0.0.18
|
||||
|
||||
* Add base companion for `UIKitFlex` with result class `uk-flex`
|
||||
|
||||
## 0.0.17
|
||||
|
||||
* In `DefaultTable` `headingCustomizer` has been renamed to `headerCellCustomizer`
|
||||
|
@ -9,4 +9,4 @@ android.enableJetifier=true
|
||||
# Project data
|
||||
|
||||
group=dev.inmo
|
||||
version=0.0.17
|
||||
version=0.0.18
|
||||
|
@ -1,7 +1,7 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class UIKitFlex(suffix: String) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf("uk-flex-$suffix")
|
||||
sealed class UIKitFlex(suffix: String?) : UIKitModifier {
|
||||
override val classes: Array<String> = arrayOf("uk-flex${suffix ?.let { "-$it" } ?: ""}")
|
||||
|
||||
object Inline : UIKitFlex("inline")
|
||||
|
||||
@ -76,4 +76,6 @@ sealed class UIKitFlex(suffix: String) : UIKitModifier {
|
||||
|
||||
object NoWrap : UIKitFlex("nowrap")
|
||||
|
||||
companion object : UIKitFlex(null)
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user