2020-02-06 10:52:05 +09:00

28 lines
833 B
HTML

<mat-card class="confirm-card mat-elevation-z">
<mat-card-header>
<mat-card-title
cdkDrag
cdkDragRootElement=".cdk-overlay-pane"
cdkDragHandle
>
{{ (isModify ? 'message.modify' : 'message.sendTo') | translate }}
</mat-card-title>
<button class="icon-button btn-dialog-close" (click)="onCancel()">
<i class="mdi mdi-window-close"></i>
</button>
</mat-card-header>
<mat-card-content>
<ucap-message-write
#messageWrite
[isModify]="isModify"
[detail]="data.detail"
[detailContents]="data.detailContents"
[curReceiverList]="curReceiverList"
[fileAllowSize]="fileAllowSize"
(send)="onSend($event)"
(selectReceiver)="onSelectReceiver($event)"
(cancel)="onCancel()"
></ucap-message-write>
</mat-card-content>
</mat-card>