2020-01-29 00:29:23 +00:00
|
|
|
<ng-container *ngIf="angularExists === true; else errorOrLoad">
|
2020-02-07 18:39:15 +00:00
|
|
|
<ng-container *ngIf="supportedVersion; else notSupported">
|
|
|
|
|
<div class="devtools-wrapper noselect" [@enterAnimation]>
|
2020-03-18 00:48:29 +00:00
|
|
|
<ng-devtools-tabs [angularVersion]="angularVersion"></ng-devtools-tabs>
|
2020-02-07 18:39:15 +00:00
|
|
|
</div>
|
|
|
|
|
</ng-container>
|
|
|
|
|
<ng-template #notSupported>
|
2020-04-17 18:59:26 +00:00
|
|
|
<p class="text-message">
|
2020-04-20 17:13:18 +00:00
|
|
|
Angular Devtools only supports Angular versions 9 and above with
|
|
|
|
|
<a href="https://angular.io/guide/ivy" target="_blank">ivy</a> enabled.
|
2020-04-17 18:59:26 +00:00
|
|
|
</p>
|
2020-02-07 18:39:15 +00:00
|
|
|
</ng-template>
|
2020-01-29 00:29:23 +00:00
|
|
|
</ng-container>
|
|
|
|
|
<ng-template #errorOrLoad>
|
|
|
|
|
<ng-container *ngIf="angularExists === false; else load">
|
2020-02-20 13:26:41 +00:00
|
|
|
<p class="text-message">
|
2020-04-16 20:32:12 +00:00
|
|
|
Angular application not detected.
|
|
|
|
|
<span
|
|
|
|
|
class="info-icon"
|
|
|
|
|
matTooltip="You see this message because the app is still loading, or this is not an Angular application"
|
|
|
|
|
>i</span
|
|
|
|
|
>
|
2020-02-20 13:26:41 +00:00
|
|
|
</p>
|
2020-01-29 00:29:23 +00:00
|
|
|
</ng-container>
|
|
|
|
|
<ng-template #load>
|
2020-02-04 15:34:34 +00:00
|
|
|
<div class="initializing" *ngIf="angularExists === null">
|
2020-02-07 18:39:15 +00:00
|
|
|
<div class="loading"></div>
|
2020-01-29 00:29:23 +00:00
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
</ng-template>
|