@@ -5,14 +5,18 @@ import BasicWithBorder from '../examples/BasicWithBorder';
55import Disabled from '../examples/Disabled' ;
66import SuperSimple from '../examples/SuperSimple' ;
77import TwoThumbs from '../examples/TwoThumbs' ;
8+ import TwoThumbsDraggableTrack from '../examples/TwoThumbsDraggableTrack' ;
9+ import TwoThumbsDraggableTrackDownDirection from '../examples/TwoThumbsDraggableTrackDownDirection' ;
810import Marks from '../examples/Marks' ;
911import MarksVertical from '../examples/MarksVertical' ;
1012import Rtl from '../examples/Rtl' ;
1113import RtlTwoThumbs from '../examples/RtlTwoThumbs' ;
14+ import RtlTwoThumbsDraggableTrack from '../examples/RtlTwoThumbsDraggableTrack' ;
1215import UpDirection from '../examples/UpDirection' ;
1316import DownDirection from '../examples/DownDirection' ;
1417import LeftDirection from '../examples/LeftDirection' ;
1518import MultipleThumbs from '../examples/MultipleThumbs' ;
19+ import MultipleThumbsDraggableTrack from '../examples/MultipleThumbsDraggableTrack' ;
1620import AllowOverlap from '../examples/AllowOverlap' ;
1721import BigSteps from '../examples/BigSteps' ;
1822import Labeled from '../examples/Labeled' ;
@@ -31,14 +35,24 @@ storiesOf('Range', module)
3135 . add ( 'Disabled' , ( ) => < Disabled /> )
3236 . add ( 'Super simple' , ( ) => < SuperSimple /> )
3337 . add ( 'Two thumbs' , ( ) => < TwoThumbs /> )
38+ . add ( 'Two thumbs with draggable track' , ( ) => < TwoThumbsDraggableTrack /> )
39+ . add ( 'Two thumbs with draggable track and Down direction' , ( ) => (
40+ < TwoThumbsDraggableTrackDownDirection />
41+ ) )
3442 . add ( 'Marks' , ( ) => < Marks /> )
3543 . add ( 'Marks vertical' , ( ) => < MarksVertical /> )
3644 . add ( 'Rtl' , ( ) => < Rtl /> )
3745 . add ( 'Rtl Two Thumbs' , ( ) => < RtlTwoThumbs /> )
46+ . add ( 'Rtl Two Thumbs with draggable track' , ( ) => (
47+ < RtlTwoThumbsDraggableTrack />
48+ ) )
3849 . add ( 'Up direction' , ( ) => < UpDirection /> )
3950 . add ( 'Down direction' , ( ) => < DownDirection /> )
4051 . add ( 'Left direction' , ( ) => < LeftDirection /> )
4152 . add ( 'Multiple thumbs' , ( ) => < MultipleThumbs /> )
53+ . add ( 'Multiple thumbs with draggable track' , ( ) => (
54+ < MultipleThumbsDraggableTrack />
55+ ) )
4256 . add ( 'Allow overlap' , ( ) => < AllowOverlap /> )
4357 . add ( 'Big steps' , ( ) => < BigSteps /> )
4458 . add ( 'Labeled' , ( ) => < Labeled /> )
0 commit comments