@@ -119,7 +119,7 @@ class ModalStory {
119119
120120 @Input ( ) modalText = "Hello, World" ;
121121
122- @Input ( ) size = "default " ;
122+ @Input ( ) size = "md " ;
123123
124124 @Input ( ) showCloseButton = true ;
125125
@@ -186,7 +186,7 @@ class InputModal extends BaseModal {
186186class DataPassingModal implements AfterContentInit {
187187 @Input ( ) modalText = "Hello, World" ;
188188
189- @Input ( ) size = "default " ;
189+ @Input ( ) size = "md " ;
190190
191191 protected modalInputValue = "" ;
192192 protected data : Observable < string > = new Subject < string > ( ) ;
@@ -242,7 +242,7 @@ class AlertModalStory {
242242
243243const getOptions = ( options = { } ) => {
244244 return Object . assign ( { } , {
245- size : select ( "size" , [ null , "xs" , "sm" , "lg" ] , null )
245+ size : select ( "size" , [ "xs" , "sm" , "md" , " lg"] , "md" )
246246 } , options ) ;
247247} ;
248248
@@ -359,7 +359,7 @@ storiesOf("Components|Modal", module)
359359 ` ,
360360 props : {
361361 modalText : text ( "modalText" , "Hello, World!" ) ,
362- size : select ( "size" , [ "xs" , "sm" , "default " , "lg" ] , "default " )
362+ size : select ( "size" , [ "xs" , "sm" , "md " , "lg" ] , "md " )
363363 }
364364 } ) )
365365 . add ( "Simple modal" , ( ) => ( {
0 commit comments