update angular to 19

Signed-off-by: kaedwen <kaedwen@heinrich.blue>
This commit is contained in:
kaedwen
2026-06-14 18:41:13 +02:00
parent 8b02d3e905
commit 8c9e7398de
4 changed files with 8247 additions and 5761 deletions
+8225 -5741
View File
File diff suppressed because it is too large Load Diff
+14 -14
View File
@@ -10,24 +10,24 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.8",
"@angular/common": "^18.2.8",
"@angular/compiler": "^18.2.8",
"@angular/core": "^18.2.8",
"@angular/forms": "^18.2.8",
"@angular/platform-browser": "^18.2.8",
"@angular/platform-browser-dynamic": "^18.2.8",
"@angular/router": "^18.2.8",
"@angular/service-worker": "^18.2.8",
"@angular/animations": "^19.2.25",
"@angular/common": "^19.2.25",
"@angular/compiler": "^19.2.25",
"@angular/core": "^19.2.25",
"@angular/forms": "^19.2.25",
"@angular/platform-browser": "^19.2.25",
"@angular/platform-browser-dynamic": "^19.2.25",
"@angular/router": "^19.2.25",
"@angular/service-worker": "^19.2.25",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"uuid": "^9.0.0",
"zone.js": "~0.14.10"
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.9",
"@angular/cli": "~18.2.9",
"@angular/compiler-cli": "^18.2.8",
"@angular-devkit/build-angular": "^19.2.27",
"@angular/cli": "~19.2.27",
"@angular/compiler-cli": "^19.2.25",
"@types/jasmine": "~4.0.0",
"@types/uuid": "^9.0.1",
"jasmine-core": "~4.3.0",
@@ -36,6 +36,6 @@
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"typescript": "~5.4.5"
"typescript": "~5.8.3"
}
}
@@ -1,9 +1,10 @@
import { Component, ElementRef, OnInit, ViewChild } from '@angular/core';
@Component({
selector: 'app-audio',
template: '<audio #audio></audio>',
styleUrls: ['./audio.component.scss']
selector: 'app-audio',
template: '<audio #audio></audio>',
styleUrls: ['./audio.component.scss'],
standalone: false
})
export class AudioComponent implements OnInit {
@ViewChild('audio', { static: true, read: ElementRef })
@@ -1,9 +1,10 @@
import { Component, ElementRef, ViewChild } from '@angular/core';
@Component({
selector: 'app-video',
template: '<video #video></video>',
styleUrls: ['./video.component.scss']
selector: 'app-video',
template: '<video #video></video>',
styleUrls: ['./video.component.scss'],
standalone: false
})
export class VideoComponent {
@ViewChild('video', { static: true, read: ElementRef })