File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export class DialogDemo {
2121 dialogRef : MatDialogRef < JazzDialog > | null ;
2222 lastAfterClosedResult : string ;
2323 lastBeforeCloseResult : string ;
24- actionsAlignment : 'end ' | 'center' | undefined ;
24+ actionsAlignment : 'start ' | 'center' | 'end' ;
2525 config = {
2626 disableClose : false ,
2727 panelClass : 'custom-overlay-pane-class' ,
@@ -177,7 +177,7 @@ export class JazzDialog {
177177 ` ,
178178} )
179179export class ContentElementDialog {
180- actionsAlignment : 'end ' | 'center' | undefined ;
180+ actionsAlignment : 'start ' | 'center' | 'end' ;
181181
182182 constructor ( public dialog : MatDialog ) { }
183183
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export class DialogDemo {
2929 dialogRef : MatDialogRef < JazzDialog > | null ;
3030 lastAfterClosedResult : string ;
3131 lastBeforeCloseResult : string ;
32- actionsAlignment : string ;
32+ actionsAlignment : 'start' | 'center' | 'end' ;
3333 config = {
3434 disableClose : false ,
3535 panelClass : 'custom-overlay-pane-class' ,
@@ -194,7 +194,7 @@ export class JazzDialog {
194194 ` ,
195195} )
196196export class ContentElementDialog {
197- actionsAlignment : string ;
197+ actionsAlignment : 'start' | 'center' | 'end' ;
198198
199199 constructor ( public dialog : MatDialog ) { }
200200
You can’t perform that action at this time.
0 commit comments