mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2024-11-26 20:18:49 +00:00
commit
8eeabc4b5d
@ -1,5 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.0.40
|
||||||
|
|
||||||
|
* All `DefaultTable` functions now use `Iterable` as data type
|
||||||
|
|
||||||
## 0.0.39
|
## 0.0.39
|
||||||
|
|
||||||
* Add support of `Notifications`
|
* Add support of `Notifications`
|
||||||
|
@ -9,4 +9,4 @@ android.enableJetifier=true
|
|||||||
# Project data
|
# Project data
|
||||||
|
|
||||||
group=dev.inmo
|
group=dev.inmo
|
||||||
version=0.0.39
|
version=0.0.40
|
||||||
|
@ -11,7 +11,7 @@ import org.w3c.dom.*
|
|||||||
@Composable
|
@Composable
|
||||||
fun <T> DefaultTable(
|
fun <T> DefaultTable(
|
||||||
headerBuilders: List<ContentBuilder<HTMLTableCellElement>>,
|
headerBuilders: List<ContentBuilder<HTMLTableCellElement>>,
|
||||||
dataList: SnapshotStateList<T>,
|
dataList: Iterable<T>,
|
||||||
vararg tableModifiers: UIKitModifier,
|
vararg tableModifiers: UIKitModifier,
|
||||||
attributesCustomizer: AttrBuilderContext<HTMLTableElement> = {},
|
attributesCustomizer: AttrBuilderContext<HTMLTableElement> = {},
|
||||||
headerCustomizer: AttrBuilderContext<HTMLTableSectionElement> = {},
|
headerCustomizer: AttrBuilderContext<HTMLTableSectionElement> = {},
|
||||||
@ -68,7 +68,7 @@ fun <T> DefaultTable(
|
|||||||
@Composable
|
@Composable
|
||||||
fun <T> DefaultTable(
|
fun <T> DefaultTable(
|
||||||
heading: List<String>,
|
heading: List<String>,
|
||||||
dataList: SnapshotStateList<T>,
|
dataList: Iterable<T>,
|
||||||
vararg tableModifiers: UIKitModifier,
|
vararg tableModifiers: UIKitModifier,
|
||||||
attributesCustomizer: AttrBuilderContext<HTMLTableElement> = {},
|
attributesCustomizer: AttrBuilderContext<HTMLTableElement> = {},
|
||||||
headerCustomizer: AttrBuilderContext<HTMLTableSectionElement> = {},
|
headerCustomizer: AttrBuilderContext<HTMLTableSectionElement> = {},
|
||||||
|
Loading…
Reference in New Issue
Block a user