/
githubmirror
/
ionic
Обзор
Документация
Войти
/
githubmirror
/
ionic
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular/test/base/src/app/lazy/popover-inline/popover-inline.component.html
13 строк
371 B
Brandy Carney
fix(angular): popover arrow navigation with disabled items (#29662)
26 июн 2024, 18:35
Не верифицирован
26 июн 2024, 18:35
ceb41f3
Код
Авторство
О чём код?
<ion-button (click)="openPopover(popover)">Open Popover</ion-button> <ion-popover #popover> <ng-template> <ion-content> <ion-list> <ion-item *ngFor="let item of items" [button]="true" [disabled]="item.disabled"> <ion-label>{{ item.text }}</ion-label> </ion-item> </ion-list> </ion-content> </ng-template> </ion-popover>