]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/select-badges/select-badges.component.html
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / select-badges / select-badges.component.html
1 <cd-select #cdSelect
2 [data]="data"
3 [options]="options"
4 [messages]="messages"
5 [selectionLimit]="selectionLimit"
6 [customBadges]="customBadges"
7 [customBadgeValidators]="customBadgeValidators"
8 elemClass="margin-right-sm select-menu-edit"
9 (selection)="selection.emit($event)">
10 <i class="fa fa-fw fa-pencil"></i>
11 </cd-select>
12
13 <span *ngFor="let dataItem of data">
14 <span class="badge badge-pill badge-primary margin-right-sm">
15 <span class="margin-right-sm">{{ dataItem }}</span>
16 <a class="badge-remove"
17 (click)="cdSelect.removeItem(dataItem)">
18 <i class="fa fa-times"
19 aria-hidden="true"></i>
20 </a>
21 </span>
22 </span>