mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2024-11-23 02:28:47 +00:00
headingCustomizer -> headerCellCustomizer + add index and title parameters for it
This commit is contained in:
parent
f518933195
commit
9449eccec1
@ -2,6 +2,9 @@
|
||||
|
||||
## 0.0.17
|
||||
|
||||
* In `DefaultTable` `headingCustomizer` has been renamed to `headerCellCustomizer`
|
||||
* Add index and title parameters for `headerCellCustomizer` in `DefaultTable`
|
||||
|
||||
## 0.0.16
|
||||
|
||||
* Add opportunity to customize `NavDivider`
|
||||
|
@ -14,7 +14,7 @@ fun <T> DefaultTable(
|
||||
dataList: SnapshotStateList<T>,
|
||||
vararg tableModifiers: UIKitModifier,
|
||||
attributesCustomizer: AttrBuilderContext<HTMLTableElement> = {},
|
||||
headingCustomizer: AttrBuilderContext<HTMLTableCellElement> = {},
|
||||
headerCellCustomizer: AttrsBuilder<HTMLTableCellElement>.(i: Int, title: String) -> Unit = { _, _ -> },
|
||||
rowAttributes: AttrsBuilder<HTMLTableRowElement>.(t: T) -> Unit = {},
|
||||
cellCustomizer: AttrsBuilder<HTMLTableCellElement>.(i: Int, t: T) -> Unit = { _, _ -> },
|
||||
cellFiller: @Composable ElementScope<HTMLTableCellElement>.(i: Int, t: T) -> Unit
|
||||
@ -29,13 +29,13 @@ fun <T> DefaultTable(
|
||||
) {
|
||||
Thead {
|
||||
Tr {
|
||||
heading.forEach {
|
||||
heading.forEachIndexed { i, t ->
|
||||
Th(
|
||||
{
|
||||
headingCustomizer()
|
||||
headerCellCustomizer(i, t)
|
||||
}
|
||||
) {
|
||||
Text(it)
|
||||
Text(t)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user