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

17 lines
442 B
HTML
Raw Normal View History

2021-02-07 13:15:42 +00:00
<div class="router-tree-wrapper">
<div>
<input
matInput
(input)="searchRoutes($event)"
placeholder="Search routes"
class="filter-input"
/>
<mat-checkbox (change)="togglePathSettings()">Show Full Path </mat-checkbox>
2021-02-07 13:15:42 +00:00
</div>
<section #routerTree class="router-tree router-graph router-tree-container">
<svg #routerTreeSvgContainer>
<g #routerTreeMainGroup></g>
</svg>
</section>
2021-02-07 13:15:42 +00:00
</div>