21 lines
877 B
HTML
21 lines
877 B
HTML
<app-update-available *ngIf="showUpdateAvailable"
|
|
[@updateAvailable]
|
|
[updateInfo]="updateInfo$ | async"
|
|
(updateApp)="updateApp()"
|
|
(doNotUpdateApp)="doNotUpdateApp()">
|
|
</app-update-available>
|
|
|
|
<side-menu *ngIf="deviceConfigurationLoaded$ | async"
|
|
[class.update-panel-visible]="showUpdateAvailable"></side-menu>
|
|
<div id="main-content"
|
|
class="main-content"
|
|
[class.update-panel-visible]="showUpdateAvailable">
|
|
<router-outlet></router-outlet>
|
|
</div>
|
|
<notifier-container></notifier-container>
|
|
<progress-button class="save-to-keyboard-button"
|
|
*ngIf="saveToKeyboardState.showButton"
|
|
[@showSaveToKeyboardButton]
|
|
[state]="saveToKeyboardState"
|
|
(clicked)="clickedOnProgressButton($event)"></progress-button>
|