fix: removed all mentions of momentjs

This commit is contained in:
2025-06-11 11:12:05 +02:00
parent 76de91349d
commit 2601396961
6 changed files with 13 additions and 29 deletions

View File

@@ -18,8 +18,8 @@ import { DateTime } from 'luxon';
})
class DateSelectorStub {
@Input() date: string = DateTime.now().toISODate();
@Output() dateChange = new EventEmitter<moment.Moment>();
@Input() filter: (date: moment.Moment | null) => boolean = () => true
@Output() dateChange = new EventEmitter<string>();
@Input() filter: (date: DateTime | null) => boolean = () => true
}
@Component({