choice.component.html 878 B

1234567891011
  1. <span class="choice" [attr.data-intervention-type]="data.editorialInterventionType" [evtHtmlAttributes]="data?.attributes"
  2. [ngbPopover]="popContent" [autoClose]="'outside'" popoverClass="choice-popover {{data.editorialInterventionType}}"
  3. container="body" [placement]="['bottom']" triggers="mouseenter:mouseleave">
  4. <evt-content-viewer *ngFor="let element of content" [content]="element"
  5. [editionLevel]="editionLevel" [itemsToHighlight]="itemsToHighlight" [itemsLemsToHighlight]="itemsLemsToHighlight" [textFlow]="textFlow"></evt-content-viewer>
  6. </span>
  7. <ng-template #popContent>
  8. <evt-content-viewer *ngFor="let element of alternativeContent" [content]="element"
  9. [editionLevel]="alternativeEditionLevel" [itemsToHighlight]="itemsToHighlight" [itemsLemsToHighlight]="itemsLemsToHighlight" [textFlow]="textFlow"></evt-content-viewer>
  10. </ng-template>