removing of redundant things

This commit is contained in:
InsanusMokrassar 2022-01-13 21:36:39 +06:00
parent c013a978d4
commit 6bebb8b8d4
3 changed files with 6 additions and 10 deletions

View File

@ -2,6 +2,8 @@
## 0.0.8
Removing of redundant non standard things
## 0.0.7
Rewrite project onto multiplatform paradigm and return back varargs instead of most `Array<UIKitModifier>`

View File

@ -4,8 +4,8 @@ import androidx.compose.runtime.Composable
import androidx.compose.runtime.snapshots.SnapshotStateList
import dev.inmo.jsuikit.modifiers.*
import org.jetbrains.compose.web.dom.*
import org.w3c.dom.HTMLProgressElement
import org.w3c.dom.HTMLTableElement
import org.jetbrains.compose.web.dom.Text
import org.w3c.dom.*
@Composable
fun <T> DefaultTable(
@ -13,6 +13,7 @@ fun <T> DefaultTable(
dataList: SnapshotStateList<T>,
vararg tableModifiers: UIKitModifier,
attributesCustomizer: AttrBuilderContext<HTMLTableElement> = {},
headingCustomizer: AttrBuilderContext<HTMLTableCellElement> = {},
cellFiller: @Composable (i: Int, t: T) -> Unit
) {
val headingIndexes = heading.indices
@ -28,7 +29,7 @@ fun <T> DefaultTable(
heading.forEach {
Th(
{
include(UIKitExtension.TextTransformUnset)
headingCustomizer()
}
) {
Text(it)

View File

@ -1,7 +0,0 @@
package dev.inmo.jsuikit.modifiers
sealed class UIKitExtension(classname: String) : UIKitModifier {
override val classes: Array<String> = arrayOf(classname)
object TextTransformUnset : UIKitExtension("text_transform_unset")
object CursorPointer : UIKitExtension("cursor_pointer")
}