2019-10-29 19:06:25 +09:00
|
|
|
<mat-card class="confirm-card mat-elevation-z">
|
2020-01-08 14:43:43 +09:00
|
|
|
<mat-card-header
|
|
|
|
cdkDrag
|
|
|
|
cdkDragRootElement=".cdk-overlay-pane"
|
|
|
|
cdkDragHandle
|
|
|
|
class="card-header"
|
|
|
|
>
|
|
|
|
<mat-card-title>{{ data.title }}</mat-card-title>
|
2019-09-18 15:02:21 +09:00
|
|
|
<!-- <mat-card-subtitle>Confirm</mat-card-subtitle> -->
|
|
|
|
</mat-card-header>
|
|
|
|
<mat-card-content>
|
2019-09-24 14:53:22 +09:00
|
|
|
<div #messageContainer class="notice">
|
2019-09-18 15:02:21 +09:00
|
|
|
{{ data.message }}
|
2019-09-24 14:53:22 +09:00
|
|
|
</div>
|
2019-09-18 15:02:21 +09:00
|
|
|
</mat-card-content>
|
2019-09-24 18:42:53 +09:00
|
|
|
<mat-card-actions *ngIf="!hideAction" class="button-farm flex-row">
|
2019-09-18 15:02:21 +09:00
|
|
|
<button
|
|
|
|
mat-stroked-button
|
|
|
|
(click)="onClickChoice(false)"
|
|
|
|
class="mat-primary"
|
|
|
|
>
|
2020-01-08 14:43:43 +09:00
|
|
|
{{ 'common.messages.no' | translate }}
|
2019-09-18 15:02:21 +09:00
|
|
|
</button>
|
|
|
|
<button mat-flat-button (click)="onClickChoice(true)" class="mat-primary">
|
2020-01-08 14:43:43 +09:00
|
|
|
{{ 'common.messages.yes' | translate }}
|
2019-09-18 15:02:21 +09:00
|
|
|
</button>
|
|
|
|
</mat-card-actions>
|
|
|
|
</mat-card>
|