Skip to content

Commit

Permalink
fix(build): export all internal classes so AoT can work without issues
Browse files Browse the repository at this point in the history
fixes #1093
  • Loading branch information
valorkin committed Oct 11, 2016
1 parent 5d7e30a commit 6e6be1a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions components/datepicker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@
*/
export { DatePickerComponent } from './datepicker/datepicker.component';
export { DatepickerModule } from './datepicker/datepicker.module';
export { DayPickerComponent } from './datepicker/daypicker.component'
export { MonthPickerComponent } from './datepicker/monthpicker.component'
export { YearPickerComponent } from './datepicker/yearpicker.component'
export { DateFormatter } from './datepicker/date-formatter'
2 changes: 2 additions & 0 deletions components/dropdown.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
export { DropdownMenuInterface, DropdownToggleInterface } from './dropdown/dropdown.interfaces'
export { DropdownMenuDirective } from './dropdown/dropdown-menu.directive';
export { DropdownToggleDirective } from './dropdown/dropdown-toggle.directive';
export { DropdownDirective } from './dropdown/dropdown.directive';
export { DropdownService } from './dropdown/dropdown.service'
export { DropdownModule } from './dropdown/dropdown.module';
5 changes: 4 additions & 1 deletion components/typeahead.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
export { TypeaheadContainerComponent } from './typeahead/typeahead-container.component';
export { TypeaheadMatch } from './typeahead/typeahead-match.class';
export { TypeaheadOptions } from './typeahead/typeahead-options.class';

export { TypeaheadUtils } from './typeahead/typeahead-utils';
export { TypeaheadContainerComponent } from './typeahead/typeahead-container.component';
export { TypeaheadDirective } from './typeahead/typeahead.directive';
export { TypeaheadModule } from './typeahead/typeahead.module';

0 comments on commit 6e6be1a

Please sign in to comment.