mirror of
https://github.com/InsanusMokrassar/JSUIKitKBindings.git
synced 2024-11-23 10:38:45 +00:00
add afterHeaderBuilder and beforeFooterBuilder in Dialog
This commit is contained in:
parent
d4d0adf020
commit
366971bcf5
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
* Reorder arguments in `DefaultComment` fun
|
* Reorder arguments in `DefaultComment` fun
|
||||||
* Add `Vertical` and `Horizontal` members in margins
|
* Add `Vertical` and `Horizontal` members in margins
|
||||||
|
* Add `afterHeaderBuilder` and `beforeFooterBuilder` properties in `Dialog` fun
|
||||||
|
|
||||||
## 0.0.35
|
## 0.0.35
|
||||||
|
|
||||||
|
@ -31,6 +31,8 @@ fun Dialog(
|
|||||||
dialogAttrsBuilder: AttrBuilderContext<HTMLDivElement>? = null,
|
dialogAttrsBuilder: AttrBuilderContext<HTMLDivElement>? = null,
|
||||||
headerAttrsBuilder: AttrBuilderContext<HTMLDivElement>? = null,
|
headerAttrsBuilder: AttrBuilderContext<HTMLDivElement>? = null,
|
||||||
headerBuilder: ContentBuilder<HTMLDivElement>? = null,
|
headerBuilder: ContentBuilder<HTMLDivElement>? = null,
|
||||||
|
afterHeaderBuilder: ContentBuilder<HTMLDivElement>? = null,
|
||||||
|
beforeFooterBuilder: ContentBuilder<HTMLDivElement>? = null,
|
||||||
footerAttrsBuilder: AttrBuilderContext<HTMLDivElement>? = null,
|
footerAttrsBuilder: AttrBuilderContext<HTMLDivElement>? = null,
|
||||||
footerBuilder: ContentBuilder<HTMLDivElement>? = null,
|
footerBuilder: ContentBuilder<HTMLDivElement>? = null,
|
||||||
bodyAttrsBuilder: AttrBuilderContext<HTMLDivElement>? = null,
|
bodyAttrsBuilder: AttrBuilderContext<HTMLDivElement>? = null,
|
||||||
@ -62,6 +64,7 @@ fun Dialog(
|
|||||||
it()
|
it()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
afterHeaderBuilder ?.let { it() }
|
||||||
Div(
|
Div(
|
||||||
{
|
{
|
||||||
include(UIKitModal.Body)
|
include(UIKitModal.Body)
|
||||||
@ -70,6 +73,7 @@ fun Dialog(
|
|||||||
) {
|
) {
|
||||||
bodyBuilder()
|
bodyBuilder()
|
||||||
}
|
}
|
||||||
|
beforeFooterBuilder ?.let { it() }
|
||||||
footerBuilder ?.let {
|
footerBuilder ?.let {
|
||||||
Div(
|
Div(
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user