Skip to content
New issue

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

[sidenav @alpha.8-1] Binding to [opened] causes Angular AoT compiler error #1200

Closed
RoxKilly opened this issue Sep 7, 2016 · 3 comments
Closed

Comments

@RoxKilly
Copy link

RoxKilly commented Sep 7, 2016

Bug, feature request, or proposal:

Bug

What is the expected behavior?

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)

What is the current behavior?

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:

 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

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 using node 4.5.0

@RoxKilly
Copy link
Author

RoxKilly commented Sep 8, 2016

Related to #1163

@RoxKilly
Copy link
Author

Bug was fixed with alpha 9-3

@angular-automatic-lock-bot
Copy link

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.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Sep 5, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant