We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug
The docs for sidenav list opened as a public facing property. I expect to be able to bind to it and use Angular's Ahead-of-Time compiler (ngc)
sidenav
opened
ngc
template
<md-sidenav-layout class="sidenav-layout"> <md-sidenav mode="over" [opened]="isNavOpen"> ... </md-sidenav> ... </md-sidenav-layout>
component
public isNavOpen:boolean = false;
Trying to bind to [opened] this way causes ngc to throw the following error:
[opened]
Error: (filename:line number): Property '_opened' is private and only accessible within class 'MdSidenav'.
Triggered by the block below (line 795):
793| const currVal_27:any = this.context.isNavOpen; 794| if (import5.checkBinding(throwOnChange,this._expr_27,currVal_27)) { 795| this._MdSidenav_51_4._opened = currVal_27; 796| changed = true; 797| this._expr_27 = currVal_27; 798| }
Using in-browser compilation works fine. In that scenario, no error is raised during vanilla typescript transpilation
Use the template above, and try AoT compilation
Angular 2 rc.6, Material 2 alpha 8-1, compiled using node 4.5.0
Angular 2 rc.6
Material 2 alpha 8-1
node 4.5.0
The text was updated successfully, but these errors were encountered:
Related to #1163
Sorry, something went wrong.
Bug was fixed with alpha 9-3
alpha 9-3
This issue has been automatically locked due to inactivity. Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
This action has been performed automatically by a bot.
No branches or pull requests
Bug, feature request, or proposal:
Bug
What is the expected behavior?
The docs for
sidenav
listopened
as a public facing property. I expect to be able to bind to it and use Angular's Ahead-of-Time compiler (ngc
)What is the current behavior?
template
component
Trying to bind to
[opened]
this way causesngc
to throw the following error:Triggered by the block below (line 795):
Using in-browser compilation works fine. In that scenario, no error is raised during vanilla typescript transpilation
What are the steps to reproduce?
Use the template above, and try AoT compilation
Which versions of Angular, Material, OS, browsers are affected?
Angular 2 rc.6
,Material 2 alpha 8-1
, compiled usingnode 4.5.0
The text was updated successfully, but these errors were encountered: