angular/devtools/src/app/demo-app
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
..
todo fix(devtools): DOM traversal bug (#62719) 2025-08-18 15:43:09 +00:00
BUILD.bazel build: remove ts_project_interop infrastructure (#62908) 2025-07-31 09:12:58 +00:00
cookies.component.ts refactor(devtools): add cookies signal demo (#62749) 2025-07-24 09:18:26 +00:00
demo-app.component.html fix(devtools): DOM traversal bug (#62719) 2025-08-18 15:43:09 +00:00
demo-app.component.scss build: migrate devtools to use new sass ruleset (#62297) 2025-06-27 09:25:43 +00:00
demo-app.component.ts refactor(devtools): add support for afterRenderEffect on the signal graph (#63005) 2025-08-06 15:08:33 +02:00
demo-app.routes.ts build: migrate adev devtools package to use ts_project (#61210) 2025-05-08 09:38:30 -07:00
heavy.component.html refactor(devtools): prepare codebase for migration to angular/angular repo 2021-11-21 20:23:18 -05:00
heavy.component.scss refactor(devtools): prepare codebase for migration to angular/angular repo 2021-11-21 20:23:18 -05:00
heavy.component.ts refactor(devtools): removed standalone: true (#58922) 2024-11-27 18:09:00 +01:00
sample-properties.component.ts fix(devtools): fix some build errors from g3 typescript (#62412) 2025-07-11 10:35:22 -07:00
sample.service.ts fix(devtools): fix some build errors from g3 typescript (#62412) 2025-07-11 10:35:22 -07:00
zippy.component.html refactor(devtools): convert to bootstrap application for shell and demo apps (#58319) 2024-11-05 07:35:43 +01:00
zippy.component.scss refactor(devtools): prepare codebase for migration to angular/angular repo 2021-11-21 20:23:18 -05:00
zippy.component.ts refactor(devtools): removed standalone: true (#58922) 2024-11-27 18:09:00 +01:00