mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
15 lines
473 B
HTML
15 lines
473 B
HTML
<ng-template #endSlotContent>
|
|
<ng-content select="[slot=end]"></ng-content>
|
|
</ng-template>
|
|
|
|
<!-- labels inside a form control (checkbox, radio button) should not truncate -->
|
|
<span [ngClass]="{ 'tw-truncate': !isInsideFormControl }">
|
|
<ng-content></ng-content>
|
|
@if (isInsideFormControl) {
|
|
<ng-container *ngTemplateOutlet="endSlotContent"></ng-container>
|
|
}
|
|
</span>
|
|
@if (!isInsideFormControl) {
|
|
<ng-container *ngTemplateOutlet="endSlotContent"></ng-container>
|
|
}
|