@@ -39,45 +39,47 @@ import {ExpansionDemo} from '../expansion/expansion-demo';
3939import { DemoApp } from './demo-app' ;
4040import { AccessibilityDemo } from '../a11y/a11y' ;
4141import { ACCESSIBILITY_DEMO_ROUTES } from '../a11y/routes' ;
42+ import { SidenavDemo } from '../sidenav/sidenav-demo' ;
4243
4344export const DEMO_APP_ROUTES : Routes = [
4445 { path : '' , component : DemoApp , children : [
4546 { path : '' , component : Home } ,
4647 { path : 'autocomplete' , component : AutocompleteDemo } ,
48+ { path : 'baseline' , component : BaselineDemo } ,
4749 { path : 'button' , component : ButtonDemo } ,
50+ { path : 'button-toggle' , component : ButtonToggleDemo } ,
4851 { path : 'card' , component : CardDemo } ,
52+ { path : 'checkbox' , component : CheckboxDemo } ,
4953 { path : 'chips' , component : ChipsDemo } ,
50- { path : 'table' , component : TableDemo } ,
5154 { path : 'datepicker' , component : DatepickerDemo } ,
52- { path : 'radio' , component : RadioDemo } ,
53- { path : 'select' , component : SelectDemo } ,
55+ { path : 'dialog' , component : DialogDemo } ,
5456 { path : 'drawer' , component : DrawerDemo } ,
55- { path : 'slide-toggle' , component : SlideToggleDemo } ,
56- { path : 'slider' , component : SliderDemo } ,
57- { path : 'progress-spinner' , component : ProgressSpinnerDemo } ,
58- { path : 'progress-bar' , component : ProgressBarDemo } ,
59- { path : 'portal' , component : PortalDemo } ,
60- { path : 'overlay' , component : OverlayDemo } ,
61- { path : 'checkbox' , component : CheckboxDemo } ,
62- { path : 'input' , component : InputDemo } ,
63- { path : 'toolbar' , component : ToolbarDemo } ,
57+ { path : 'expansion' , component : ExpansionDemo } ,
58+ { path : 'gestures' , component : GesturesDemo } ,
59+ { path : 'grid-list' , component : GridListDemo } ,
6460 { path : 'icon' , component : IconDemo } ,
61+ { path : 'input' , component : InputDemo } ,
6562 { path : 'list' , component : ListDemo } ,
66- { path : 'menu' , component : MenuDemo } ,
6763 { path : 'live-announcer' , component : LiveAnnouncerDemo } ,
68- { path : 'gestures' , component : GesturesDemo } ,
69- { path : 'grid-list' , component : GridListDemo } ,
70- { path : 'tabs' , component : TabsDemo , children : TABS_DEMO_ROUTES } ,
71- { path : 'button-toggle' , component : ButtonToggleDemo } ,
72- { path : 'baseline' , component : BaselineDemo } ,
64+ { path : 'menu' , component : MenuDemo } ,
65+ { path : 'overlay' , component : OverlayDemo } ,
66+ { path : 'platform' , component : PlatformDemo } ,
67+ { path : 'portal' , component : PortalDemo } ,
68+ { path : 'progress-bar' , component : ProgressBarDemo } ,
69+ { path : 'progress-spinner' , component : ProgressSpinnerDemo } ,
70+ { path : 'radio' , component : RadioDemo } ,
7371 { path : 'ripple' , component : RippleDemo } ,
74- { path : 'dialog' , component : DialogDemo } ,
75- { path : 'tooltip' , component : TooltipDemo } ,
72+ { path : 'select' , component : SelectDemo } ,
73+ { path : 'sidenav' , component : SidenavDemo } ,
74+ { path : 'slide-toggle' , component : SlideToggleDemo } ,
75+ { path : 'slider' , component : SliderDemo } ,
7676 { path : 'snack-bar' , component : SnackBarDemo } ,
77- { path : 'platform' , component : PlatformDemo } ,
7877 { path : 'style' , component : StyleDemo } ,
78+ { path : 'table' , component : TableDemo } ,
79+ { path : 'tabs' , component : TabsDemo , children : TABS_DEMO_ROUTES } ,
80+ { path : 'toolbar' , component : ToolbarDemo } ,
81+ { path : 'tooltip' , component : TooltipDemo } ,
7982 { path : 'typography' , component : TypographyDemo } ,
80- { path : 'expansion' , component : ExpansionDemo } ,
8183 ] }
8284] ;
8385
0 commit comments