mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 14:22:35 +00:00
Lots of breaking changes, all "md" prefixes changed with "mat" due to angular material deprecation of "md", md2 package removed, its not compatible with latest material version, will be replaced with another date picker later.
12 lines
409 B
HTML
12 lines
409 B
HTML
<h1 matDialogTitle>Hi {{data.name}}</h1>
|
|
<div mat-dialog-content>
|
|
<p>What's your favorite animal?</p>
|
|
<mat-form-field>
|
|
<input matInput tabindex="1" [(ngModel)]="data.animal">
|
|
</mat-form-field>
|
|
</div>
|
|
<div mat-dialog-actions>
|
|
<button mat-button [matDialogClose]="data.animal" tabindex="2">Ok</button>
|
|
<button mat-button (click)="onNoClick()" tabindex="-1">No Thanks</button>
|
|
</div>
|