2020-05-08 22:12:17 +00:00
|
|
|
<mat-tab-group (selectedIndexChange)="tabUpdate.notify()" animationDuration="0ms">
|
2020-01-27 18:40:18 +00:00
|
|
|
<mat-tab label="Components">
|
2020-04-14 22:27:59 +00:00
|
|
|
<ng-directive-explorer (toggleInspector)="toggleInspector()"></ng-directive-explorer>
|
2020-01-27 18:40:18 +00:00
|
|
|
</mat-tab>
|
2020-01-29 00:23:31 +00:00
|
|
|
<mat-tab label="Profiler">
|
2020-03-18 00:48:29 +00:00
|
|
|
<ng-profiler></ng-profiler>
|
2020-01-29 00:23:31 +00:00
|
|
|
</mat-tab>
|
2020-01-27 18:40:18 +00:00
|
|
|
</mat-tab-group>
|
|
|
|
|
|
2020-06-02 16:13:30 +00:00
|
|
|
<div id="nav-buttons">
|
|
|
|
|
<button mat-icon-button color="primary" (click)="toggleInspector()">
|
|
|
|
|
<mat-icon>
|
|
|
|
|
drag_indicator
|
|
|
|
|
</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
<button mat-icon-button color="primary" (click)="refresh()">
|
|
|
|
|
<mat-icon>
|
|
|
|
|
refresh
|
|
|
|
|
</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
<button mat-icon-button color="primary" [matMenuTriggerFor]="menu">
|
|
|
|
|
<mat-icon>miscellaneous_services</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2020-01-27 18:40:18 +00:00
|
|
|
|
2020-08-08 20:30:28 +00:00
|
|
|
<mat-menu #menu="matMenu" class="options-menu">
|
2020-05-07 03:21:32 +00:00
|
|
|
<mat-slide-toggle (change)="toggleTimingAPI($event)" class="menu-toggle-button" (click)="$event.stopPropagation()">
|
2020-08-08 20:31:31 +00:00
|
|
|
Enable timing API
|
2020-05-07 03:21:32 +00:00
|
|
|
</mat-slide-toggle>
|
2020-06-02 16:11:15 +00:00
|
|
|
<br />
|
|
|
|
|
<br />
|
|
|
|
|
<mat-slide-toggle
|
|
|
|
|
(change)="themeService.toggleDarkMode($event.checked)"
|
|
|
|
|
class="menu-toggle-button"
|
|
|
|
|
(click)="$event.stopPropagation()"
|
|
|
|
|
>
|
|
|
|
|
Dark Mode
|
|
|
|
|
</mat-slide-toggle>
|
2020-05-07 03:21:32 +00:00
|
|
|
</mat-menu>
|
|
|
|
|
|
2020-04-02 23:23:03 +00:00
|
|
|
<section *ngIf="angularVersion" id="app-angular-version">
|
|
|
|
|
Angular version: {{ angularVersion }}
|
|
|
|
|
<ng-container *ngIf="latestSHA; let sha"> | DevTools SHA: {{ sha }} </ng-container>
|
|
|
|
|
</section>
|