Skip to content

Commit

Permalink
fix: add re-exports for symbols needed by Aot (#2149)
Browse files Browse the repository at this point in the history
  • Loading branch information
jelbourn authored and mmalerba committed Dec 9, 2016
1 parent cd43fb6 commit c324142
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"docs": "gulp docs",
"api": "gulp api"
},
"version": "2.0.0-alpha.11",
"version": "2.0.0-alpha.11-2",
"license": "MIT",
"engines": {
"node": ">= 5.4.1 < 7"
Expand Down
1 change: 1 addition & 0 deletions src/lib/input/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * from './input';
export {MdTextareaAutosize} from './autosize';
4 changes: 4 additions & 0 deletions src/lib/menu/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
export * from './menu';
export {MdMenuTrigger} from './menu-trigger';
export {fadeInItems, transformMenu} from './menu-animations';
export {MdMenu} from './menu-directive';
export {MdMenuItem} from './menu-item';
2 changes: 1 addition & 1 deletion src/lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@angular/material",
"version": "2.0.0-alpha.11",
"version": "2.0.0-alpha.11-2",
"description": "Angular 2 Material",
"main": "./material.umd.js",
"module": "./index.js",
Expand Down
2 changes: 2 additions & 0 deletions src/lib/select/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import {
OverlayModule,
} from '../core';
export * from './select';
export {MdOption} from './option';
export {fadeInContent, transformPanel, transformPlaceholder} from './select-animations';


@NgModule({
Expand Down
6 changes: 6 additions & 0 deletions src/lib/tabs/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
export * from './tab-group';
export {MdInkBar} from './ink-bar';
export {MdTabBody, MdTabBodyOriginState, MdTabBodyPositionState} from './tab-body';
export {MdTabHeader, ScrollDirection} from './tab-header';
export {MdTabLabelWrapper} from './tab-label-wrapper';
export {MdTab} from './tab';
export {MdTabLabel} from './tab-label';

0 comments on commit c324142

Please sign in to comment.