mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-21 23:58:06 +00:00
25 lines
702 B
Handlebars
25 lines
702 B
Handlebars
![]() |
<ModalDialog
|
||
|
@overlayClass={{this.overlayClass}}
|
||
|
@containerClassNames={{this.containerClassNames}}
|
||
|
@onClose={{action this.onClose}}
|
||
|
>
|
||
|
{{yield
|
||
|
(hash
|
||
|
header=(component "notifications/dialog/dialog-header"
|
||
|
header=@header
|
||
|
)
|
||
|
content=(component "notifications/dialog/dialog-content"
|
||
|
content=this.content
|
||
|
)
|
||
|
footer=(component "notifications/dialog/dialog-footer"
|
||
|
dismissButtonText=@dismissButtonText
|
||
|
confirmButtonText=@confirmButtonText
|
||
|
toggleText=@toggleText
|
||
|
onDialogToggle=(action this.onDialogToggle)
|
||
|
onDismiss=(action this.onClose)
|
||
|
onConfirm=(action this.onConfirm)
|
||
|
)
|
||
|
)
|
||
|
}}
|
||
|
</ModalDialog>
|