ng2-bootstrap
Version:
Native Angular Bootstrap Components
82 lines • 4.88 kB
JavaScript
import { NgModule } from '@angular/core';
import { AccordionModule } from './accordion/accordion.module';
import { AlertModule } from './alert/alert.module';
import { ButtonsModule } from './buttons/buttons.module';
import { CarouselModule } from './carousel/carousel.module';
import { CollapseModule } from './collapse/collapse.module';
import { DatepickerModule } from './datepicker/datepicker.module';
import { BsDropdownModule } from './dropdown/bs-dropdown.module';
import { ModalModule } from './modal/modal.module';
import { PaginationModule } from './pagination/pagination.module';
import { ProgressbarModule } from './progressbar/progressbar.module';
import { RatingModule } from './rating/rating.module';
import { SortableModule } from './sortable';
import { TabsModule } from './tabs/tabs.module';
import { TimepickerModule } from './timepicker/timepicker.module';
import { TooltipModule } from './tooltip/tooltip.module';
import { TypeaheadModule } from './typeahead/typeahead.module';
import { PopoverModule } from './popover/popover.module';
export { AccordionComponent, AccordionConfig, AccordionModule, AccordionPanelComponent } from './accordion';
export { AlertComponent, AlertConfig, AlertModule } from './alert';
export { ButtonCheckboxDirective, ButtonRadioDirective, ButtonsModule } from './buttons';
export { CarouselComponent, CarouselConfig, CarouselModule, SlideComponent } from './carousel';
export { CollapseDirective, CollapseModule } from './collapse';
export { DateFormatter, DatePickerComponent, DatepickerConfig, DatepickerModule, DayPickerComponent, MonthPickerComponent, YearPickerComponent } from './datepicker';
export { ModalDirective, ModalBackdropOptions, ModalBackdropComponent, ModalModule } from './modal';
export { BsDropdownModule, BsDropdownConfig, BsDropdownState, BsDropdownContainerComponent, BsDropdownDirective, BsDropdownMenuDirective, BsDropdownToggleDirective } from './dropdown';
export { PagerComponent, PaginationComponent, PaginationConfig, PaginationModule } from './pagination';
export { BarComponent, ProgressbarComponent, ProgressbarConfig, ProgressbarModule, ProgressDirective } from './progressbar';
export { RatingComponent, RatingModule } from './rating';
export { DraggableItemService, SortableComponent, SortableModule } from './sortable';
export { NgTranscludeDirective, TabDirective, TabHeadingDirective, TabsetComponent, TabsetConfig, TabsModule } from './tabs';
export { TimepickerComponent, TimepickerConfig, TimepickerModule } from './timepicker';
export { TooltipConfig, TooltipContainerComponent, TooltipDirective, TooltipModule } from './tooltip';
export { TypeaheadOptions, TypeaheadContainerComponent, TypeaheadDirective, TypeaheadMatch, TypeaheadModule, TypeaheadUtils } from './typeahead';
export { PopoverConfig, PopoverContainerComponent, PopoverDirective, PopoverModule } from './popover';
export { OnChange, LinkedList, isBs3, Trigger, Utils } from './utils';
export { ComponentLoader, ComponentLoaderFactory, ContentRef } from './component-loader';
export { Positioning, PositioningService, positionElements } from './positioning';
var MODULES = [
AccordionModule, AlertModule, ButtonsModule,
CarouselModule, CollapseModule, DatepickerModule,
BsDropdownModule, ModalModule, PaginationModule,
ProgressbarModule, PopoverModule, RatingModule,
TabsModule, TimepickerModule, TooltipModule,
TypeaheadModule
];
export var BsRootModule = (function () {
function BsRootModule() {
}
BsRootModule.decorators = [
{ type: NgModule, args: [{
imports: [
AccordionModule.forRoot(), AlertModule.forRoot(), ButtonsModule.forRoot(),
CarouselModule.forRoot(), CollapseModule.forRoot(),
DatepickerModule.forRoot(),
BsDropdownModule.forRoot(), ModalModule.forRoot(), PaginationModule.forRoot(),
ProgressbarModule.forRoot(), PopoverModule.forRoot(),
RatingModule.forRoot(),
TabsModule.forRoot(), TimepickerModule.forRoot(), TooltipModule.forRoot(),
TypeaheadModule.forRoot(), SortableModule.forRoot()
],
exports: MODULES
},] },
];
/** @nocollapse */
BsRootModule.ctorParameters = function () { return []; };
return BsRootModule;
}());
export var Ng2BootstrapModule = (function () {
function Ng2BootstrapModule() {
}
Ng2BootstrapModule.forRoot = function () {
return { ngModule: BsRootModule };
};
Ng2BootstrapModule.decorators = [
{ type: NgModule, args: [{ exports: MODULES },] },
];
/** @nocollapse */
Ng2BootstrapModule.ctorParameters = function () { return []; };
return Ng2BootstrapModule;
}());
//# sourceMappingURL=index.js.map