Skip to content

Commit c324142

Browse files
jelbournmmalerba
authored andcommitted
fix: add re-exports for symbols needed by Aot (#2149)
1 parent cd43fb6 commit c324142

File tree

6 files changed

+15
-2
lines changed

6 files changed

+15
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"docs": "gulp docs",
2020
"api": "gulp api"
2121
},
22-
"version": "2.0.0-alpha.11",
22+
"version": "2.0.0-alpha.11-2",
2323
"license": "MIT",
2424
"engines": {
2525
"node": ">= 5.4.1 < 7"

src/lib/input/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
export * from './input';
2+
export {MdTextareaAutosize} from './autosize';

src/lib/menu/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
11
export * from './menu';
2+
export {MdMenuTrigger} from './menu-trigger';
3+
export {fadeInItems, transformMenu} from './menu-animations';
4+
export {MdMenu} from './menu-directive';
5+
export {MdMenuItem} from './menu-item';

src/lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/material",
3-
"version": "2.0.0-alpha.11",
3+
"version": "2.0.0-alpha.11-2",
44
"description": "Angular 2 Material",
55
"main": "./material.umd.js",
66
"module": "./index.js",

src/lib/select/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import {
99
OverlayModule,
1010
} from '../core';
1111
export * from './select';
12+
export {MdOption} from './option';
13+
export {fadeInContent, transformPanel, transformPlaceholder} from './select-animations';
1214

1315

1416
@NgModule({

src/lib/tabs/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
11
export * from './tab-group';
2+
export {MdInkBar} from './ink-bar';
3+
export {MdTabBody, MdTabBodyOriginState, MdTabBodyPositionState} from './tab-body';
4+
export {MdTabHeader, ScrollDirection} from './tab-header';
5+
export {MdTabLabelWrapper} from './tab-label-wrapper';
6+
export {MdTab} from './tab';
7+
export {MdTabLabel} from './tab-label';

0 commit comments

Comments
 (0)