\n
\n
\n @if (eventCarouselItem().event.scoreboard?.started) {\n \n }\n \n @if (liveEventInfo()) {\n {{ liveEventInfo() }}\n }\n
\n \n
\n
\n
\n @for (participantInfo of participantInfos(); track $index) {\n
\n @if (participantInfo.isSingleContestant) {\n
\n }\n
\n @if (participantInfo.rank) {\n
\n {{ participantInfo.rank }}\n
\n }\n
{{ participantInfo.participant.name }}
\n\n @if (participantInfo.participant.country) {\n
({{ participantInfo.participant.country }})\n }\n
\n
\n }\n
\n
\n
\n
\n","import { ChangeDetectionStrategy, Component, HostBinding, computed, inject, input } from '@angular/core';\n\nimport { ScoreboardFactory } from '@frontend/sports/betting-offer/feature/fixture-factories';\nimport { EventParticipant, SpecialChar } from '@frontend/sports/betting-offer/feature/model';\nimport { ShortNameModule, ShortTeamNamesService } from '@frontend/sports/betting-offer/feature/short-team-names';\nimport { LiveSectionConfig } from '@frontend/sports/common/client-config-data-access';\nimport { ParticipantImageComponent } from '@frontend/sports/participant-image/feature';\nimport { IconCustomComponent } from '@frontend/vanilla/shared/icons';\n\nimport { EventDetailsService } from '../../event-details-common/event-details.service';\nimport { GridScoreboardModule } from '../../grid-scoreboard/grid-scoreboard.module';\nimport { TimerModule } from '../../timers/timer.module';\nimport { EventCarouselItem } from './../event-carousel.model';\nimport { EventDetailCardHeaderComponent } from './event-detail-card-header/event-detail-card-header.component';\n\n@Component({\n selector: 'ms-event-detail-card',\n templateUrl: './event-detail-card.component.html',\n styleUrl: './event-detail-card.component.scss',\n standalone: true,\n imports: [ParticipantImageComponent, TimerModule, GridScoreboardModule, IconCustomComponent, EventDetailCardHeaderComponent],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class EventDetailCardComponent {\n @HostBinding('class') class = 'event-detail-card';\n eventCarouselItem = input.required