Add virtual scrolling card component

Add OpenAPI client(s)
This commit is contained in:
2025-04-24 20:53:25 +02:00
parent 39377d7dfe
commit 5d05dbd041
31 changed files with 2588 additions and 167 deletions

View File

@@ -0,0 +1,9 @@
import { InjectionToken } from '@angular/core';
export const BASE_PATH = new InjectionToken<string>('basePath');
export const COLLECTION_FORMATS = {
'csv': ',',
'tsv': ' ',
'ssv': ' ',
'pipes': '|'
}