first commit

This commit is contained in:
2026-04-08 13:36:23 -07:00
parent fa95cc5ec3
commit ce97ca74c7
34 changed files with 1813 additions and 1016 deletions
@@ -0,0 +1,19 @@
import { Component, input, output } from '@angular/core';
@Component({
selector: 'app-modal-shell',
templateUrl: './modal-shell.html',
styleUrl: './modal-shell.scss',
})
export class ModalShell {
readonly title = input.required<string>();
readonly closed = output<void>();
onOverlayClick() {
this.closed.emit();
}
onClose() {
this.closed.emit();
}
}