@@ -39,28 +39,33 @@ class MainContainer extends ConfigurationViewport {
3939 module : TextField ,
4040 labelText : 'colorFadeIn' ,
4141 listeners : { change : me . onConfigChange . bind ( me , 'colorFadeIn' ) } ,
42- style : { marginTop : '10px' } ,
4342 value : exampleComponent . colorFadeIn
4443 } , {
4544 module : TextField ,
4645 labelText : 'colorFadeOut' ,
4746 listeners : { change : me . onConfigChange . bind ( me , 'colorFadeOut' ) } ,
48- style : { marginTop : '10px' } ,
4947 value : exampleComponent . colorFadeOut
5048 } , {
5149 module : TextField ,
5250 labelText : 'colorMove' ,
5351 listeners : { change : me . onConfigChange . bind ( me , 'colorMove' ) } ,
54- style : { marginTop : '10px' } ,
5552 value : exampleComponent . colorMove
5653 } , {
5754 module : TextField ,
5855 clearable : false ,
5956 labelText : 'fontFamily' ,
6057 listeners : { change : me . onConfigChange . bind ( me , 'fontFamily' ) } ,
61- style : { marginTop : '10px' } ,
6258 value : exampleComponent . fontFamily ,
6359 width : 300
60+ } , {
61+ module : NumberField ,
62+ clearable : false ,
63+ labelText : 'transitionTime' ,
64+ listeners : { change : me . onConfigChange . bind ( me , 'transitionTime' ) } ,
65+ maxValue : 900 ,
66+ minValue : 50 ,
67+ stepSize : 50 ,
68+ value : exampleComponent . transitionTime
6469 } ]
6570 }
6671
0 commit comments