fix model links

This commit is contained in:
2025-10-16 22:01:31 +02:00
parent 5750a5d7aa
commit 3684cf3cb2
3 changed files with 9 additions and 1195 deletions

1197
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -28,7 +28,7 @@
"@angular/forms": "^20.3.0", "@angular/forms": "^20.3.0",
"@angular/platform-browser": "^20.3.0", "@angular/platform-browser": "^20.3.0",
"@angular/router": "^20.3.0", "@angular/router": "^20.3.0",
"@InfiniMotion/model-frontend": "^0.0.0", "@InfiniMotion/model-frontend": "^0.0.1",
"@tailwindcss/postcss": "^4.1.14", "@tailwindcss/postcss": "^4.1.14",
"postcss": "^8.5.6", "postcss": "^8.5.6",
"rxjs": "~7.8.0", "rxjs": "~7.8.0",

View File

@@ -1,5 +1,5 @@
import { Component } from '@angular/core'; import { Component } from '@angular/core';
import { Eintrittskarte } from '@InfiniMotion/model-frontend'; import { Eintrittskarte, Kinosaal, Vorstellung } from '@InfiniMotion/model-frontend';
@Component({ @Component({
selector: 'app-poc-model-component', selector: 'app-poc-model-component',
@@ -11,5 +11,8 @@ export class PocModelComponent {
ticket: Eintrittskarte = { ticket: Eintrittskarte = {
id: 12345, id: 12345,
code: 'ABCDEF', code: 'ABCDEF',
show: undefined as any,
seat: undefined as any,
state: undefined as any,
}; };
} }