UNPKG

ng2-bootstrap-base-modified

Version:

Native Angular Bootstrap Components Typeahead modified

132 lines (129 loc) 5.08 kB
import { GettingStartedComponent } from './getting-started/getting-started.component'; // import { AccordionSectionComponent } from './components/accordion/accordion-section.component'; // import { AlertsSectionComponent } from './components/+alerts/alerts-section.component'; // import { ButtonsSectionComponent } from './components/+buttons/buttons-section.component'; // import { CarouselSectionComponent } from './components/+carousel/carousel-section.component'; // import { CollapseSectionComponent } from './components/+collapse/collapse-section.component'; // import { DatepickerSectionComponent } from './components/+datepicker/datepicker-section.component'; // import { DropdownSectionComponent } from './components/+dropdown/dropdown-section.component'; // import { ModalSectionComponent } from './components/+modal/modal-section.component'; // import { ProgressbarSectionComponent } from './components/+progressbar/progressbar-section.component'; // import { PaginationSectionComponent } from './components/+pagination/pagination-section.component'; // import { RatingSectionComponent } from './components/+rating/rating-section.component'; // import { SortableSectionComponent } from './components/+sortable/sortable-section.component'; // import { TabsSectionComponent } from './components/+tabs/tabs-section.component'; // import { TimepickerSectionComponent } from './components/+timepicker/timepicker-section.component'; // import { TooltipSectionComponent } from './components/+tooltip/tooltip-section.component'; // import { TypeaheadSectionComponent } from './components/+typeahead/typeahead-section.component'; // import { PopoverSectionComponent } from './components/+popover/popover-section.component'; export const routes = [ { path: '', data: ['Getting started'], component: GettingStartedComponent }, { path: 'accordion', data: ['Accordion'], // component: AccordionSectionComponent loadChildren: './components/+accordion/demo-accordion.module#DemoAccordionModule' }, { path: 'alerts', data: ['Alerts'], // component: AlertsSectionComponent, loadChildren: './components/+alerts/demo-alert.module#DemoAlertsModule' }, { path: 'buttons', data: ['Buttons'], // component: ButtonsSectionComponent loadChildren: './components/+buttons/demo-buttons.module#DemoButtonsModule' }, { path: 'carousel', data: ['Carousel'], // component: CarouselSectionComponent loadChildren: './components/+carousel/demo-carousel.module#DemoCarouselModule' }, { path: 'collapse', data: ['Collapse'], // component: CollapseSectionComponent loadChildren: './components/+collapse/demo-collapse.module#DemoCollapseModule' }, { path: 'datepicker', data: ['Datepicker'], // component: DatepickerSectionComponent loadChildren: './components/+datepicker/demo-datepicker.module#DemoDatepickerModule' }, { path: 'dropdowns', data: ['Dropdowns'], // component: DropdownSectionComponent loadChildren: './components/+dropdown/demo-dropdown.module#DemoDropdownModule' }, { path: 'modals', data: ['Modals'], // component: ModalSectionComponent loadChildren: './components/+modal/demo-modal.module#DemoModalModule' }, { path: 'pagination', data: ['Pagination'], // component: PaginationSectionComponent loadChildren: './components/+pagination/demo-pagination.module#DemoPaginationModule' }, { path: 'popover', data: ['Popover'], // component: PopoverSectionComponent loadChildren: './components/+popover/demo-popover.module#DemoPopoverModule' }, { path: 'progressbar', data: ['Progressbar'], // component: ProgressbarSectionComponent loadChildren: './components/+progressbar/demo-progressbar.module#DemoProgressbarModule' }, { path: 'rating', data: ['Rating'], // component: RatingSectionComponent, loadChildren: './components/+rating/demo-rating.module#DemoRatingModule' }, { path: 'sortable', data: ['Sortable'], // component: SortableSectionComponent, loadChildren: './components/+sortable/demo-sortable.module#DemoSortableModule' }, { path: 'tabs', data: ['Tabs'], // component: TabsSectionComponent loadChildren: './components/+tabs/demo-tabs.module#DemoTabsModule' }, { path: 'timepicker', data: ['Timepicker'], // component: TimepickerSectionComponent loadChildren: './components/+timepicker/demo-timepicker.module#DemoTimepickerModule' }, { path: 'tooltip', data: ['Tooltip'], // component: TooltipSectionComponent loadChildren: './components/+tooltip/demo-tooltip.module#DemoTooltipModule' }, { path: 'typeahead', data: ['Typeahead'], // component: TypeaheadSectionComponent loadChildren: './components/+typeahead/demo-typeahead.module#DemoTypeaheadModule' }, { path: '**', redirectTo: '/' } ];