angular/devtools/projects/ng-devtools/src/lib
AleksanderBodurri 5be80d33a3 fix(devtools): DOM traversal bug (#62719)
Previously, Angular devtools would mistakenly traverse the same DOM elements multiple times while doing traversal for the component tree explorer. This error case would occur when more than 1 Angular application root component was present on the same page and in distinct DOM branches.

Some example cases that did work previously:

```html
<app-root>
...
</app-root>
```

```html
<app-root>
...
<app-root-2></app-root-2>
...
</app-root>
```

An example of where it would enter the irregular behaviour

```html
<app-root>
...
</app-root>
<app-root-2>
...
</app-root-2>
```

Now, we properly ignore duplicate DOM paths when looking for application and non-application root component to begin the Angular DevTools component discovery logic.

PR Close #62719
2025-08-18 15:43:09 +00:00
..
application-environment build: remove ts_project_interop infrastructure (#62908) 2025-07-31 09:12:58 +00:00
application-operations refactor(devtools): implement settings store (#62429) 2025-08-06 15:12:00 +02:00
application-providers refactor(devtools): save theme preference (#63050) 2025-08-08 08:58:14 -07:00
application-services refactor(devtools): save theme preference (#63050) 2025-08-08 08:58:14 -07:00
devtools-tabs fix(devtools): DOM traversal bug (#62719) 2025-08-18 15:43:09 +00:00
shared build: remove ts_project_interop infrastructure (#62908) 2025-07-31 09:12:58 +00:00
BUILD.bazel refactor(devtools): save theme preference (#63050) 2025-08-08 08:58:14 -07:00
devtools.component.html refactor(devtools): replace/remove animations from the animation package (#62633) 2025-07-17 14:24:37 -04:00
devtools.component.scss refactor(devtools): introduce responsive-split directive (#61204) 2025-05-20 08:51:59 +00:00
devtools.component.ts refactor(devtools): save theme preference (#63050) 2025-08-08 08:58:14 -07:00
devtools_spec.ts refactor(devtools): save theme preference (#63050) 2025-08-08 08:58:14 -07:00