Skip to content

Commit 8a993de

Browse files
ducinthePunderWoman
authored andcommitted
refactor(devtools): update links to the new docs (angular.dev) (angular#56138)
This PR replaces all links available within the devtools to point to the new docs. The links to Input/Output (decorators) have been replaced with their function (signal) counterparts: input, output. PR Close angular#56138
1 parent c673a02 commit 8a993de

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

devtools/projects/ng-devtools/src/lib/devtools-tabs/devtools-tabs.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
</mat-menu>
9292

9393
<mat-menu #info="matMenu">
94-
<a mat-menu-item href="https://angular.io/devtools" target="_blank">
94+
<a mat-menu-item href="https://angular.dev/tools/devtools" target="_blank">
9595
<mat-icon>library_books</mat-icon>
9696
Guide
9797
</a>

devtools/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/component-metadata.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<a
44
mat-button
55
color="primary"
6-
href="https://angular.io/api/core/ViewEncapsulation"
6+
href="https://angular.dev/api/core/ViewEncapsulation"
77
target="_blank"
88
>
99
View Encapsulation: <span class="meta-data">{{ viewEncapsulation }}</span>
@@ -13,7 +13,7 @@
1313
<a
1414
mat-button
1515
color="primary"
16-
href="https://angular.io/api/core/ChangeDetectionStrategy"
16+
href="https://angular.dev/api/core/ChangeDetectionStrategy"
1717
target="_blank"
1818
>
1919
Change Detection Strategy: <span class="meta-data">{{ changeDetectionStrategy }}</span>

devtools/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-view/property-view-body.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<mat-panel-title>
88
Injected Services
99
<a
10-
href="https://angular.io/guide/dependency-injection"
10+
href="https://angular.dev/guide/di"
1111
target="_blank"
1212
class="documentation"
1313
matTooltip="Open docs reference"

devtools/projects/ng-devtools/src/lib/devtools-tabs/directive-explorer/property-tab/property-view/property-view-body.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,21 +59,21 @@ export class PropertyViewBodyComponent {
5959
title: '@Inputs',
6060
hidden: this.directiveInputControls.dataSource.data.length === 0,
6161
controls: this.directiveInputControls,
62-
documentation: 'https://angular.io/api/core/Input',
62+
documentation: 'https://angular.dev/api/core/input',
6363
class: 'cy-inputs',
6464
},
6565
{
6666
title: '@Outputs',
6767
hidden: this.directiveOutputControls.dataSource.data.length === 0,
6868
controls: this.directiveOutputControls,
69-
documentation: 'https://angular.io/api/core/Output',
69+
documentation: 'https://angular.dev/api/core/output',
7070
class: 'cy-outputs',
7171
},
7272
{
7373
title: 'Properties',
7474
hidden: this.directiveStateControls.dataSource.data.length === 0,
7575
controls: this.directiveStateControls,
76-
documentation: 'https://angular.io/guide/property-binding',
76+
documentation: 'https://angular.dev/guide/templates/property-binding',
7777
class: 'cy-properties',
7878
},
7979
];

devtools/projects/ng-devtools/src/lib/devtools-tabs/injector-tree/injector-tree.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<div class="injector-hierarchy">
2525
<h2>
2626
Environment Hierarchy
27-
<a class="hierarchy-ref" href="https://angular.io/guide/hierarchical-dependency-injection#types-of-injector-hierarchies" target="_blank">
27+
<a class="hierarchy-ref" href="https://angular.dev/guide/di/hierarchical-dependency-injection#types-of-injector-hierarchies" target="_blank">
2828
<mat-icon matTooltip="Open docs reference"> open_in_new </mat-icon>
2929
</a>
3030
</h2>
@@ -39,7 +39,7 @@ <h2>
3939
<div class="injector-hierarchy">
4040
<h2>
4141
Element Hierarchy
42-
<a class="hierarchy-ref" href="https://angular.io/guide/hierarchical-dependency-injection#types-of-injector-hierarchies" target="_blank">
42+
<a class="hierarchy-ref" href="https://angular.dev/guide/di/hierarchical-dependency-injection#types-of-injector-hierarchies" target="_blank">
4343
<mat-icon matTooltip="Open docs reference"> open_in_new </mat-icon>
4444
</a>
4545
</h2>

devtools/projects/shell-browser/src/popups/production.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ <h4 class="header-text">Angular DevTools</h4>
5353
<span class="material-icons md-48">settings</span>
5454
<section>
5555
<p>
56-
Angular application running in <a href="https://angular.io/api/core/enableProdMode">production
56+
Angular application running in <a href="https://angular.dev/api/core/enableProdMode">production
5757
mode</a>.
5858
</p>
5959
<p>We recommend using DevTools with apps in dev mode, running

0 commit comments

Comments
 (0)