Skip to content
Snippets Groups Projects
Select Git revision
  • 742ab9c7a657e8a1bc62dba8e00613891cce7b25
  • main default protected
  • OZG-7985-anfrage-von-landesebene
  • release
  • OZG-8252-gitlab-pipeline
  • OZG-7774-E2E
  • OZG-5120-PoC-Native-Image
  • 1.10.0
  • 1.9.0
  • 1.8.0
  • 1.7.0
  • 1.6.0
  • 1.5.0
  • 1.4.0
  • 1.3.0
  • 1.2.1
  • 1.2.0
  • 1.1.1
  • 1.1.0
  • 1.0.0
  • 0.8.0
  • 0.7.0
  • 0.6.0
  • 0.5.0
  • 0.4.0
  • 0.3.0
  • 0.2.0
27 results

DataRestConfiguration.java

Blame
  • link.component.ts 561 B
    import { CommonModule } from '@angular/common';
    import { Component, Input } from '@angular/core';
    import { twMerge } from 'tailwind-merge';
    
    @Component({
      selector: 'ods-link',
      standalone: true,
      imports: [CommonModule],
      template: `<a [target]="openInNewTab ? '_blank' : '_self'" [href]="url" [class]="twMerge('text-text outline-focus', class)">
        <ng-content />
      </a>`,
    })
    export class LinkComponent {
      @Input({ required: true }) url!: string;
      @Input() openInNewTab: boolean = false;
      @Input() class: string = '';
    
      readonly twMerge = twMerge;
    }