<eos-document-control
    [buttonRendererOptions]="{buttonText: 'ยงยง Vybrat existujici dokument' | transloco }"
    [selectedOptionsRenderer]="selectedOptionsRendererTpl"
    [mode]="'multiple'"
  ></eos-document-control>

  <ng-template #selectedOptionsRendererTpl let-selectedDocuments>
    <eos-item-list *ngFor="let document of selectedDocuments" class="margin-vertical-half">
      <ion-item>
        <eos-item-text>{{ document.name }}</eos-item-text>
        <eos-icon
          style="color: var(--theme-color-medium)"
          slot="end"
          icon="remove-circle-2"
          width="18"
        ></eos-icon>
      </ion-item>
    </eos-item-list>
  </ng-template>