reorder comment arguments

This commit is contained in:
InsanusMokrassar 2022-02-17 14:57:09 +06:00
parent 687c3ab065
commit fc2fb24fce
2 changed files with 5 additions and 3 deletions

View File

@ -2,6 +2,8 @@
## 0.0.36 ## 0.0.36
* Reorder arguments in `DefaultComment` fun
## 0.0.35 ## 0.0.35
* Add `UIKitModal` * Add `UIKitModal`

View File

@ -45,16 +45,16 @@ fun Comment(
@Composable @Composable
fun DefaultComment( fun DefaultComment(
rootAttrs: Attrs<HTMLElement> = Attrs.empty(),
headerGridAttrs: Attrs<HTMLDivElement>? = null, headerGridAttrs: Attrs<HTMLDivElement>? = null,
headerAttrs: Attrs<HTMLElement>? = null,
additionalHeaderContent: ContentBuilder<HTMLElement>? = null,
avatarUrl: String? = null, avatarUrl: String? = null,
avatarAttrs: Attrs<HTMLImageElement>? = null, avatarAttrs: Attrs<HTMLImageElement>? = null,
titleAttrs: Attrs<HTMLHeadingElement>? = null, titleAttrs: Attrs<HTMLHeadingElement>? = null,
titleContent: ContentBuilder<HTMLHeadingElement>? = null, titleContent: ContentBuilder<HTMLHeadingElement>? = null,
metaAttrs: Attrs<HTMLUListElement>? = null, metaAttrs: Attrs<HTMLUListElement>? = null,
metaContent: ContentBuilder<HTMLUListElement>? = null, metaContent: ContentBuilder<HTMLUListElement>? = null,
rootAttrs: Attrs<HTMLElement> = Attrs.empty(),
headerAttrs: Attrs<HTMLElement>? = null,
additionalHeaderContent: ContentBuilder<HTMLElement>? = null,
bodyAttrs: Attrs<HTMLDivElement>? = null, bodyAttrs: Attrs<HTMLDivElement>? = null,
bodyContent: ContentBuilder<HTMLDivElement>? = null, bodyContent: ContentBuilder<HTMLDivElement>? = null,
) { ) {