@@ -53,7 +53,7 @@ export class MatDialogConfig<D = any> {
53
53
/** Whether the dialog has a backdrop. */
54
54
hasBackdrop ?: boolean = true ;
55
55
56
- /** Custom class for the backdrop, */
56
+ /** Custom class for the backdrop. */
57
57
backdropClass ?: string = '' ;
58
58
59
59
/** Whether the user can use escape or clicking on the backdrop to close the modal. */
@@ -65,16 +65,16 @@ export class MatDialogConfig<D = any> {
65
65
/** Height of the dialog. */
66
66
height ?: string = '' ;
67
67
68
- /** Min-width of the dialog. If a number is provided, pixel units are assumed . */
68
+ /** Min-width of the dialog. If a number is provided, assumes pixel units. */
69
69
minWidth ?: number | string ;
70
70
71
- /** Min-height of the dialog. If a number is provided, pixel units are assumed . */
71
+ /** Min-height of the dialog. If a number is provided, assumes pixel units. */
72
72
minHeight ?: number | string ;
73
73
74
- /** Max-width of the dialog. If a number is provided, pixel units are assumed . Defaults to 80vw */
74
+ /** Max-width of the dialog. If a number is provided, assumes pixel units. Defaults to 80vw. */
75
75
maxWidth ?: number | string = '80vw' ;
76
76
77
- /** Max-height of the dialog. If a number is provided, pixel units are assumed . */
77
+ /** Max-height of the dialog. If a number is provided, assumes pixel units. */
78
78
maxHeight ?: number | string ;
79
79
80
80
/** Position overrides. */
@@ -92,7 +92,7 @@ export class MatDialogConfig<D = any> {
92
92
/** ID of the element that labels the dialog. */
93
93
ariaLabelledBy ?: string | null = null ;
94
94
95
- /** Aria label to assign to the dialog element */
95
+ /** Aria label to assign to the dialog element. */
96
96
ariaLabel ?: string | null = null ;
97
97
98
98
/** Whether the dialog should focus the first focusable element on open. */
0 commit comments