Skip to content
Snippets Groups Projects
Select Git revision
  • OZG-8168-replace-remaining-mat-icon
  • OZG-7983-Statistik-Land-kann-Anfrage-an-Mandanten-veröffentlichen
  • main default protected
  • release-info
  • release-administration
  • release
  • OZG-8086-Datenanfrage-E2E
  • OZG-8086-Admin-Datenanfrage-erstellen
  • OZG-8086-Datenanfrage-Umbenennung
  • OZG-6220-Bescheid-speichern-ohne-Postfach
  • OZG-6123-Vorgänge-aus-Suche-E2E
  • OZG-7983-OZG-8244-Statistik-Datenanfrage-veröffentlichen
  • OZG-7985-Statistik-Datenfreigabe
  • OZG-7922-KeycloakOperatorExceptions
  • OZG-8142-poc-cards
  • OZG-8086-E2E
  • OZG-8086-E2E2
  • OZG-8142-ProjectionStuff
  • OZG-8086-Statistik-Datenanfrage-erstellen
  • OZG-7856_schadcode_scanner
  • 1.10.0-info
  • 1.10.0-administration
  • 2.25.0-alfa
  • 1.9.0-info
  • 1.9.0-administration
  • 2.24.0-alfa
  • 1.8.0-info
  • 1.8.0-administration
  • 2.23.0-alfa
  • 1.7.0-info
  • 1.7.0-administration
  • 2.22.0-alfa
  • 1.6.0-info
  • 1.6.0-administration
  • 2.21.0-alfa
  • 1.5.0-info
  • 1.5.0-administration
  • 2.20.0-alfa
  • 2.19.2-alfa
  • 2.19.1-alfa
40 results

binary-file2.component.html

Blame
  • binary-file2.component.html 737 B
    <ods-attachment
      [documentName]="file.name"
      [description]="file.size | fileSizePlain"
      (click)="downloadFile()"
      [attr.aria-label]="'Anhang: Dateiname: ' + file.name"
    >
      <ods-spinner-icon spinner *ngIf="isLoading" size="xl" class="mr-3" />
      <ods-icon
        icon
        [name]="getIconType(file.contentType)"
        class="mr-3 size-10 fill-primary"
      ></ods-icon>
      <button
        close
        *ngIf="deletable"
        class="absolute right-2 top-1/2 flex size-10 -translate-y-1/2 items-center justify-center rounded-md hover:border hover:border-ozggray-600 hover:bg-ozggray-100"
        (click)="deleteFile()"
        title="Anhang löschen"
        aria-label="Anhang löschen Button"
      >
        <ods-close-icon></ods-close-icon>
      </button>
    </ods-attachment>