35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<div>
|
|
@if(label){
|
|
<label for="type" class="block text-sm font-bold text-gray-700 mb-1 relative w-fit {{ labelClasses }}"
|
|
>{{ label }} @if(validationMessage){
|
|
<div
|
|
attr.data-tooltip-target="tooltip-{{ name }}"
|
|
class="absolute inline-flex items-center justify-center w-6 h-6 text-xs font-bold text-white bg-red-500 border-2 border-white rounded-full -top-2 dark:border-gray-900 hover:cursor-pointer"
|
|
(click)="toggleTooltip($event)"
|
|
(touchstart)="toggleTooltip($event)"
|
|
>
|
|
!
|
|
</div>
|
|
<app-tooltip id="tooltip-{{ name }}" [text]="validationMessage" [isVisible]="isTooltipVisible"></app-tooltip>
|
|
}
|
|
</label>
|
|
}
|
|
<ng-select
|
|
class="custom"
|
|
[multiple]="false"
|
|
[hideSelected]="true"
|
|
[trackByFn]="trackByFn"
|
|
[minTermLength]="2"
|
|
[loading]="countyLoading"
|
|
typeToSearchText="Please enter 2 or more characters"
|
|
[typeahead]="countyInput$"
|
|
ngModel="{{ value }}"
|
|
(ngModelChange)="onInputChange($event)"
|
|
[readonly]="readonly"
|
|
>
|
|
@for (county of counties$ | async; track county.id) {
|
|
<ng-option [value]="county">{{ county }}</ng-option>
|
|
}
|
|
</ng-select>
|
|
</div>
|