Merge pull request #12 from InsanusMokrassar/0.0.12

0.0.12
This commit is contained in:
InsanusMokrassar 2022-01-21 20:29:00 +06:00 committed by GitHub
commit 1f36657857
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 2 deletions

View File

@ -1,5 +1,9 @@
# Changelog # Changelog
## 0.0.12
* Add `rowAttributes` to table fun
## 0.0.11 ## 0.0.11
* Upfill `Nav` and `UIKitNav` * Upfill `Nav` and `UIKitNav`

View File

@ -9,4 +9,4 @@ android.enableJetifier=true
# Project data # Project data
group=dev.inmo group=dev.inmo
version=0.0.11 version=0.0.12

View File

@ -3,6 +3,7 @@ package dev.inmo.jsuikit.elements
import androidx.compose.runtime.Composable import androidx.compose.runtime.Composable
import androidx.compose.runtime.snapshots.SnapshotStateList import androidx.compose.runtime.snapshots.SnapshotStateList
import dev.inmo.jsuikit.modifiers.* import dev.inmo.jsuikit.modifiers.*
import org.jetbrains.compose.web.attributes.AttrsBuilder
import org.jetbrains.compose.web.dom.* import org.jetbrains.compose.web.dom.*
import org.jetbrains.compose.web.dom.Text import org.jetbrains.compose.web.dom.Text
import org.w3c.dom.* import org.w3c.dom.*
@ -14,6 +15,7 @@ fun <T> DefaultTable(
vararg tableModifiers: UIKitModifier, vararg tableModifiers: UIKitModifier,
attributesCustomizer: AttrBuilderContext<HTMLTableElement> = {}, attributesCustomizer: AttrBuilderContext<HTMLTableElement> = {},
headingCustomizer: AttrBuilderContext<HTMLTableCellElement> = {}, headingCustomizer: AttrBuilderContext<HTMLTableCellElement> = {},
rowAttributes: AttrsBuilder<HTMLTableRowElement>.(t: T) -> Unit = {},
cellFiller: @Composable (i: Int, t: T) -> Unit cellFiller: @Composable (i: Int, t: T) -> Unit
) { ) {
val headingIndexes = heading.indices val headingIndexes = heading.indices
@ -39,7 +41,11 @@ fun <T> DefaultTable(
} }
Tbody { Tbody {
dataList.forEach { dataList.forEach {
Tr { Tr(
{
rowAttributes(it)
}
) {
headingIndexes.forEach { i -> headingIndexes.forEach { i ->
Td { Td {
cellFiller(i, it) cellFiller(i, it)