Adding an answer just to make this remove from unanswered ones.
This is a known issue and fixed by this pull request.
Until this PR goes live, you can make changes manually.
__name@dasherize__.component.html
From:
[attr.role]="isHandset$ | async ? 'dialog' : 'navigation'"
[mode]="isHandset$ | async ? 'over' : 'side'"
To:
[attr.role]="(isHandset$ | async) ? 'dialog' : 'navigation'"
[mode]="(isHandset$ | async) ? 'over' : 'side'"
__name@dasherize__.component.ts
From:
[attr.role]="isHandset$ | async ? 'dialog' : 'navigation'"
[mode]="isHandset$ | async ? 'over' : 'side'"
To:
[attr.role]="(isHandset$ | async) ? 'dialog' : 'navigation'"
[mode]="(isHandset$ | async) ? 'over' : 'side'"
From:
isHandset$: Observable<BreakpointState> = this.breakpointObserver.observe(Breakpoints.Handset)
To:
isHandset$: Observable<boolean> = this.breakpointObserver.observe(Breakpoints.Handset)