mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2025-09-16 13:59:17 +00:00
All attribute values now will print their name as result of toString
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
package dev.inmo.jsuikit.modifiers
|
||||
|
||||
sealed class AttributeValue(val name: String)
|
||||
sealed class AttributeValue(val name: String) {
|
||||
override fun toString(): String = name
|
||||
}
|
||||
|
@@ -43,8 +43,6 @@ sealed class UIKitDropdown(classname: String) : UIKitModifier {
|
||||
|
||||
}
|
||||
|
||||
override fun toString(): String = name
|
||||
|
||||
}
|
||||
|
||||
sealed class Mode(name: String) : AttributeValue(name) {
|
||||
|
Reference in New Issue
Block a user