https://github.com/angular/angular
Raw File
Tip revision: 7bd5ea4a7ee24b96b3ecfd201111ff9deaf1ba4c authored by Andrew Kushnir on 02 June 2021, 18:02:43 UTC
release: cut the v12.1.0-next.4 release
Tip revision: 7bd5ea4
api-list.component.html
<div class="l-flex-wrap api-filter">

  <aio-select (change)="setType($event.option)"
              [options]="types"
              [selected]="type"
              [showSymbol]="true"
              label="Type:">
  </aio-select>

  <aio-select (change)="setStatus($event.option)"
              [options]="statuses"
              [selected]="status"
              [disabled]="type.value === 'package'"
              label="Status:">
  </aio-select>

  <div class="form-search">
    <input #filter placeholder="Filter" (input)="setQuery($any($event.target).value)" aria-label="Filter Search">
    <i class="material-icons">search</i>
  </div>
</div>

<article class="api-list-container">
  <div *ngFor="let section of filteredSections | async" >
    <h2 *ngIf="section.items"><a [href]="section.path" [class.deprecated-api-item]="section.deprecated">{{section.title}}</a></h2>
    <ul class="api-list" *ngIf="section.items && section.items.length">
      <ng-container *ngFor="let item of section.items">
        <li class="api-item">
          <a [href]="item.path" [class.deprecated-api-item]="item.stability === 'deprecated'">
            <span class="symbol {{item.docType}}"></span>
            {{item.title}}
          </a>
        </li>
      </ng-container>
    </ul>
  </div>
</article>
back to top