2023-02-06 15:54:23 +01:00
|
|
|
<ng-select
|
|
|
|
|
[(ngModel)]="selectedOption"
|
|
|
|
|
(ngModelChange)="onChange($event)"
|
|
|
|
|
[disabled]="disabled"
|
|
|
|
|
[placeholder]="placeholder"
|
|
|
|
|
[items]="items"
|
|
|
|
|
(blur)="onBlur()"
|
|
|
|
|
[labelForId]="labelForId"
|
|
|
|
|
[clearable]="false"
|
|
|
|
|
appendTo="body"
|
|
|
|
|
>
|
|
|
|
|
<ng-template ng-option-tmp let-item="item">
|
2024-07-22 09:26:38 -05:00
|
|
|
<div class="tw-flex" [title]="item.label">
|
2023-02-06 15:54:23 +01:00
|
|
|
<div class="tw-mr-2 tw-flex-initial">
|
|
|
|
|
<i *ngIf="item.icon != null" class="bwi bwi-fw {{ item.icon }}" aria-hidden="true"></i>
|
|
|
|
|
</div>
|
2024-07-22 09:26:38 -05:00
|
|
|
<div class="tw-flex-1 tw-text-ellipsis tw-overflow-hidden">
|
2023-02-06 15:54:23 +01:00
|
|
|
{{ item.label }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
</ng-select>
|