/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/src/app/shared/carousel/carousel.html
20 строк
681 B
Shuaib Hasan Akib
docs: migrate selectors to self-closing tags to align with Angular style (#31811)
15 сен 2025, 10:23
Не верифицирован
15 сен 2025, 10:23
54280da
Код
Авторство
О чём код?
@if (showPrevArrow) { <button (click)="previous()" aria-hidden="true" tabindex="-1" class="docs-carousel-nav docs-carousel-nav-prev" mat-icon-button aria-label="previous"> <mat-icon>navigate_before</mat-icon> </button> } <div #contentWrapper (keyup)="onKeydown($event)" class="docs-carousel-content-wrapper" role="region"> <div class="docs-carousel-content" role="list" tabindex="0" #list> <ng-content /> </div> </div> @if (showNextArrow) { <button (click)="next()" aria-hidden="true" tabindex="-1" class="docs-carousel-nav docs-carousel-nav-next" mat-icon-button aria-label="next"> <mat-icon>navigate_next</mat-icon> </button> }