Skip to content

Commit

Permalink
fix(module): class exports added back
Browse files Browse the repository at this point in the history
  • Loading branch information
valorkin committed Oct 5, 2016
1 parent 8b902f6 commit 3eaa9ad
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ng2-bootstrap.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
export * from './components/accordion';
export * from './components/alert';
export * from './components/buttons';
export * from './components/carousel';
export * from './components/collapse';
export * from './components/datepicker';
export * from './components/modal';
export * from './components/dropdown';
export * from './components/pagination';
export * from './components/progressbar';
export * from './components/rating';
export * from './components/tabs';
export * from './components/timepicker';
export * from './components/tooltip';
export * from './components/typeahead';

export * from './components/position';
export * from './components/common';
export * from './components/ng2-bootstrap-config';

export { AccordionModule } from './components/accordion/accordion.module';
Expand Down

1 comment on commit 3eaa9ad

@isaacplmann
Copy link

@isaacplmann isaacplmann commented on 3eaa9ad Oct 5, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! This fixed an AoT bug before I figured out what was causing it.

Please sign in to comment.