33 lines
794 B
HTML
33 lines
794 B
HTML
<!-- <uikit-field label="" [control]="control" [showLabel]="showLabel" [showErrors]="showErrors">
|
|
<p-select
|
|
[loading]="loading()"
|
|
[options]="items()"
|
|
[optionLabel]="optionLabel"
|
|
[optionValue]="selectOptionValue"
|
|
[placeholder]="placeholder"
|
|
[formControl]="control"
|
|
[showClear]="showClear"
|
|
[filter]="true"
|
|
appendTo="body"
|
|
>
|
|
@if (canInsert) {
|
|
<ng-template #footer>
|
|
<div class="p-3">
|
|
<p-button
|
|
[label]="addCtaLabel"
|
|
fluid
|
|
severity="secondary"
|
|
text
|
|
size="small"
|
|
icon="pi pi-plus"
|
|
(onClick)="onOpenForm()"
|
|
/>
|
|
</div>
|
|
</ng-template>
|
|
}
|
|
</p-select>
|
|
@if (canInsert) {
|
|
<ng-content></ng-content>
|
|
}
|
|
</uikit-field> -->
|