ng update @angular/core@19 @angular/cli@19

This commit is contained in:
Tomasi - Developing 2026-02-17 13:02:28 +01:00
parent 3f7aea2e67
commit 4d47336e2b
55 changed files with 5608 additions and 4119 deletions

9330
Ui/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -10,14 +10,14 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.7",
"@angular/common": "^18.2.7",
"@angular/compiler": "^18.2.7",
"@angular/core": "^18.2.7",
"@angular/forms": "^18.2.7",
"@angular/platform-browser": "^18.2.7",
"@angular/platform-browser-dynamic": "^18.2.7",
"@angular/router": "^18.2.7",
"@angular/animations": "^19.2.18",
"@angular/common": "^19.2.18",
"@angular/compiler": "^19.2.18",
"@angular/core": "^19.2.18",
"@angular/forms": "^19.2.18",
"@angular/platform-browser": "^19.2.18",
"@angular/platform-browser-dynamic": "^19.2.18",
"@angular/router": "^19.2.18",
"@auth0/angular-jwt": "^5.2.0",
"@ng-bootstrap/ng-bootstrap": "^17.0.1",
"@popperjs/core": "^2.11.8",
@ -36,13 +36,13 @@
"rxjs": "~7.8.0",
"sweetalert2": "^11.22.4",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.8",
"@angular/cli": "^18.2.8",
"@angular/compiler-cli": "^18.2.7",
"@angular/localize": "^18.2.7",
"@angular-devkit/build-angular": "^19.2.20",
"@angular/cli": "^19.2.20",
"@angular/compiler-cli": "^19.2.18",
"@angular/localize": "^19.2.18",
"@types/jasmine": "~5.1.0",
"jasmine-core": "~5.3.0",
"karma": "~6.4.0",

View File

@ -9,7 +9,8 @@ import {environment} from "../../../environments/environment";
@Component({
selector: 'app-email-confirmation',
templateUrl: './email-confirmation.component.html',
styleUrl: './email-confirmation.component.css'
styleUrl: './email-confirmation.component.css',
standalone: false
})
export class EmailConfirmationComponent implements OnInit {

View File

@ -9,7 +9,8 @@ import {environment} from "../../../environments/environment";
@Component({
selector: 'app-forgot-password',
templateUrl: './forgot-password.component.html',
styleUrl: './forgot-password.component.css'
styleUrl: './forgot-password.component.css',
standalone: false
})
export class ForgotPasswordComponent {

View File

@ -12,7 +12,8 @@ import {StatService} from "../../services/stat.service";
@Component({
selector: 'app-login',
templateUrl: './login.component.html',
styleUrl: './login.component.css'
styleUrl: './login.component.css',
standalone: false
})
export class LoginComponent implements OnInit {

View File

@ -10,7 +10,8 @@ import {environment} from "../../../environments/environment";
@Component({
selector: 'app-register',
templateUrl: './register.component.html',
styleUrl: './register.component.css'
styleUrl: './register.component.css',
standalone: false
})
export class RegisterComponent implements OnInit {

View File

@ -9,7 +9,8 @@ import {ResetPasswordModel} from "../../models/resetPassword.model";
@Component({
selector: 'app-reset-password',
templateUrl: './reset-password.component.html',
styleUrl: './reset-password.component.css'
styleUrl: './reset-password.component.css',
standalone: false
})
export class ResetPasswordComponent implements OnInit {

View File

@ -10,7 +10,8 @@ import {environment} from "../../../environments/environment";
@Component({
selector: 'app-sign-up',
templateUrl: './sign-up.component.html',
styleUrl: './sign-up.component.css'
styleUrl: './sign-up.component.css',
standalone: false
})
export class SignUpComponent {

View File

@ -4,7 +4,8 @@ import {AuthenticationService} from "./services/authentication.service";
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrl: './app.component.css'
styleUrl: './app.component.css',
standalone: false
})
export class AppComponent implements OnInit {
title = 'Last War - Player Management';

View File

@ -3,7 +3,8 @@ import { Component } from '@angular/core';
@Component({
selector: 'app-under-development',
templateUrl: './under-development.component.html',
styleUrl: './under-development.component.css'
styleUrl: './under-development.component.css',
standalone: false
})
export class UnderDevelopmentComponent {

View File

@ -2,7 +2,8 @@ import {Pipe, PipeTransform} from '@angular/core';
import moment from "moment";
@Pipe({
name: 'week'
name: 'week',
standalone: false
})
export class WeekPipe implements PipeTransform {

View File

@ -7,7 +7,8 @@ import {FormArray, FormControl, FormGroup, Validators} from "@angular/forms";
@Component({
selector: 'app-custom-event-participants-model',
templateUrl: './custom-event-participants-model.component.html',
styleUrl: './custom-event-participants-model.component.css'
styleUrl: './custom-event-participants-model.component.css',
standalone: false
})
export class CustomEventParticipantsModelComponent implements OnInit {

View File

@ -6,7 +6,8 @@ import {PlayerModel} from "../../models/player.model";
@Component({
selector: 'app-desert-storm-participants-modal',
templateUrl: './desert-storm-participants-modal.component.html',
styleUrl: './desert-storm-participants-modal.component.css'
styleUrl: './desert-storm-participants-modal.component.css',
standalone: false
})
export class DesertStormParticipantsModalComponent implements OnInit {

View File

@ -10,7 +10,8 @@ import {environment} from "../../../environments/environment";
@Component({
selector: 'app-invite-user-modal',
templateUrl: './invite-user-modal.component.html',
styleUrl: './invite-user-modal.component.css'
styleUrl: './invite-user-modal.component.css',
standalone: false
})
export class InviteUserModalComponent implements OnInit {

View File

@ -6,7 +6,8 @@ import {PlayerModel} from "../../models/player.model";
@Component({
selector: 'app-marshal-guard-modal',
templateUrl: './marshal-guard-modal.component.html',
styleUrl: './marshal-guard-modal.component.css'
styleUrl: './marshal-guard-modal.component.css',
standalone: false
})
export class MarshalGuardModalComponent implements OnInit {

View File

@ -10,7 +10,8 @@ import Swal from "sweetalert2";
@Component({
selector: 'app-player-admonition-modal',
templateUrl: './player-admonition-modal.component.html',
styleUrl: './player-admonition-modal.component.css'
styleUrl: './player-admonition-modal.component.css',
standalone: false
})
export class PlayerAdmonitionModalComponent implements OnInit {

View File

@ -7,7 +7,8 @@ import {ToastrService} from "ngx-toastr";
@Component({
selector: 'app-player-dismiss-information-modal',
templateUrl: './player-dismiss-information-modal.component.html',
styleUrl: './player-dismiss-information-modal.component.css'
styleUrl: './player-dismiss-information-modal.component.css',
standalone: false
})
export class PlayerDismissInformationModalComponent implements OnInit {

View File

@ -10,7 +10,8 @@ import {ToastrService} from "ngx-toastr";
@Component({
selector: 'app-player-edit-modal',
templateUrl: './player-edit-modal.component.html',
styleUrl: './player-edit-modal.component.css'
styleUrl: './player-edit-modal.component.css',
standalone: false
})
export class PlayerEditModalComponent implements OnInit {

View File

@ -8,7 +8,8 @@ import {PlayerService} from "../../services/player.service";
@Component({
selector: 'app-player-excel-import-modal',
templateUrl: './player-excel-import-modal.component.html',
styleUrl: './player-excel-import-modal.component.css'
styleUrl: './player-excel-import-modal.component.css',
standalone: false
})
export class PlayerExcelImportModalComponent {

View File

@ -10,7 +10,8 @@ import Swal from "sweetalert2";
@Component({
selector: 'app-player-note-modal',
templateUrl: './player-note-modal.component.html',
styleUrl: './player-note-modal.component.css'
styleUrl: './player-note-modal.component.css',
standalone: false
})
export class PlayerNoteModalComponent implements OnInit {

View File

@ -10,7 +10,8 @@ import {ToastrService} from "ngx-toastr";
@Component({
selector: 'app-squad-edit-modal',
templateUrl: './squad-edit-modal.component.html',
styleUrl: './squad-edit-modal.component.css'
styleUrl: './squad-edit-modal.component.css',
standalone: false
})
export class SquadEditModalComponent implements OnInit {

View File

@ -8,7 +8,8 @@ import {FormControl, FormGroup, Validators} from "@angular/forms";
@Component({
selector: 'app-user-edit-modal',
templateUrl: './user-edit-modal.component.html',
styleUrl: './user-edit-modal.component.css'
styleUrl: './user-edit-modal.component.css',
standalone: false
})
export class UserEditModalComponent implements OnInit {

View File

@ -10,7 +10,8 @@ import {VsDuelLeagueModel} from "../../models/vsDuelLeague.model";
@Component({
selector: 'app-vs-duel-edit-modal',
templateUrl: './vs-duel-create-modal.component.html',
styleUrl: './vs-duel-create-modal.component.css'
styleUrl: './vs-duel-create-modal.component.css',
standalone: false
})
export class VsDuelCreateModalComponent implements OnInit {

View File

@ -6,7 +6,8 @@ import {PlayerModel} from "../../models/player.model";
@Component({
selector: 'app-zombie-siege-participants-modal',
templateUrl: './zombie-siege-participants-modal.component.html',
styleUrl: './zombie-siege-participants-modal.component.css'
styleUrl: './zombie-siege-participants-modal.component.css',
standalone: false
})
export class ZombieSiegeParticipantsModalComponent implements OnInit {

View File

@ -7,7 +7,8 @@ import {environment} from "../../environments/environment";
@Component({
selector: 'app-navigation',
templateUrl: './navigation.component.html',
styleUrl: './navigation.component.css'
styleUrl: './navigation.component.css',
standalone: false
})
export class NavigationComponent implements OnInit, OnDestroy {

View File

@ -11,7 +11,8 @@ import {AuthenticationService} from "../../services/authentication.service";
@Component({
selector: 'app-account',
templateUrl: './account.component.html',
styleUrl: './account.component.css'
styleUrl: './account.component.css',
standalone: false
})
export class AccountComponent implements OnInit{

View File

@ -7,7 +7,8 @@ import {ToastrService} from "ngx-toastr";
@Component({
selector: 'app-alliance-api-key',
templateUrl: './alliance-api-key.component.html',
styleUrl: './alliance-api-key.component.css'
styleUrl: './alliance-api-key.component.css',
standalone: false
})
export class AllianceApiKeyComponent implements OnInit {

View File

@ -11,7 +11,8 @@ import {JwtTokenService} from "../../../services/jwt-token.service";
@Component({
selector: 'app-alliance-user-administration',
templateUrl: './alliance-user-administration.component.html',
styleUrl: './alliance-user-administration.component.css'
styleUrl: './alliance-user-administration.component.css',
standalone: false
})
export class AllianceUserAdministrationComponent implements OnInit {

View File

@ -9,7 +9,8 @@ import {JwtTokenService} from "../../services/jwt-token.service";
@Component({
selector: 'app-alliance',
templateUrl: './alliance.component.html',
styleUrl: './alliance.component.css'
styleUrl: './alliance.component.css',
standalone: false
})
export class AllianceComponent implements OnInit {

View File

@ -11,7 +11,8 @@ import {JwtTokenService} from "../../services/jwt-token.service";
@Component({
selector: 'app-change-password',
templateUrl: './change-password.component.html',
styleUrl: './change-password.component.css'
styleUrl: './change-password.component.css',
standalone: false
})
export class ChangePasswordComponent {

View File

@ -13,7 +13,8 @@ import Swal from "sweetalert2";
@Component({
selector: 'app-custom-event-category',
templateUrl: './custom-event-category.component.html',
styleUrl: './custom-event-category.component.css'
styleUrl: './custom-event-category.component.css',
standalone: false
})
export class CustomEventCategoryComponent implements OnInit {
isCreateCustomEventCategory: any;

View File

@ -6,7 +6,8 @@ import {CustomEventDetailModel} from "../../../models/customEvent.model";
@Component({
selector: 'app-custom-event-detail',
templateUrl: './custom-event-detail.component.html',
styleUrl: './custom-event-detail.component.css'
styleUrl: './custom-event-detail.component.css',
standalone: false
})
export class CustomEventDetailComponent implements OnInit {

View File

@ -19,7 +19,8 @@ import {forkJoin, Observable} from "rxjs";
@Component({
selector: 'app-custom-event-events',
templateUrl: './custom-event-events.component.html',
styleUrl: './custom-event-events.component.css'
styleUrl: './custom-event-events.component.css',
standalone: false
})
export class CustomEventEventsComponent implements OnInit {

View File

@ -12,7 +12,8 @@ import {
@Component({
selector: 'app-custom-event-leaderboard',
templateUrl: './custom-event-leaderboard.component.html',
styleUrl: './custom-event-leaderboard.component.css'
styleUrl: './custom-event-leaderboard.component.css',
standalone: false
})
export class CustomEventLeaderboardComponent implements OnInit {

View File

@ -4,7 +4,8 @@ import {Component} from '@angular/core';
@Component({
selector: 'app-custom-event',
templateUrl: './custom-event.component.html',
styleUrl: './custom-event.component.css'
styleUrl: './custom-event.component.css',
standalone: false
})
export class CustomEventComponent {

View File

@ -6,7 +6,8 @@ import {DesertStormDetailModel} from "../../../models/desertStorm.model";
@Component({
selector: 'app-desert-storm-detail',
templateUrl: './desert-storm-detail.component.html',
styleUrl: './desert-storm-detail.component.css'
styleUrl: './desert-storm-detail.component.css',
standalone: false
})
export class DesertStormDetailComponent implements OnInit {

View File

@ -21,7 +21,8 @@ import {forkJoin, Observable} from "rxjs";
@Component({
selector: 'app-desert-storm',
templateUrl: './desert-storm.component.html',
styleUrl: './desert-storm.component.css'
styleUrl: './desert-storm.component.css',
standalone: false
})
export class DesertStormComponent implements OnInit {

View File

@ -13,7 +13,8 @@ import {
@Component({
selector: 'app-dismiss-player',
templateUrl: './dismiss-player.component.html',
styleUrl: './dismiss-player.component.css'
styleUrl: './dismiss-player.component.css',
standalone: false
})
export class DismissPlayerComponent implements OnInit {

View File

@ -8,7 +8,8 @@ import {Router} from "@angular/router";
@Component({
selector: 'app-feedback',
templateUrl: './feedback.component.html',
styleUrl: './feedback.component.css'
styleUrl: './feedback.component.css',
standalone: false
})
export class FeedbackComponent implements OnInit {

View File

@ -3,7 +3,8 @@ import { Component } from '@angular/core';
@Component({
selector: 'app-imprint',
templateUrl: './imprint.component.html',
styleUrl: './imprint.component.css'
styleUrl: './imprint.component.css',
standalone: false
})
export class ImprintComponent {

View File

@ -6,7 +6,8 @@ import {MarshalGuardDetailModel} from "../../../models/marshalGuard.model";
@Component({
selector: 'app-marshal-guard-detail',
templateUrl: './marshal-guard-detail.component.html',
styleUrl: './marshal-guard-detail.component.css'
styleUrl: './marshal-guard-detail.component.css',
standalone: false
})
export class MarshalGuardDetailComponent implements OnInit {

View File

@ -24,7 +24,8 @@ import {forkJoin, Observable} from "rxjs";
@Component({
selector: 'app-marshal-guard',
templateUrl: './marshal-guard.component.html',
styleUrl: './marshal-guard.component.css'
styleUrl: './marshal-guard.component.css',
standalone: false
})
export class MarshalGuardComponent implements OnInit {

View File

@ -8,7 +8,8 @@ import {PlayerMvpModel} from "../../models/player.model";
@Component({
selector: 'app-mvp',
templateUrl: './mvp.component.html',
styleUrl: './mvp.component.css'
styleUrl: './mvp.component.css',
standalone: false
})
export class MvpComponent implements OnInit {

View File

@ -3,7 +3,8 @@ import {Component} from '@angular/core';
@Component({
selector: 'app-player-info-custom-event',
templateUrl: './player-info-custom-event.component.html',
styleUrl: './player-info-custom-event.component.css'
styleUrl: './player-info-custom-event.component.css',
standalone: false
})
export class PlayerInfoCustomEventComponent {

View File

@ -3,7 +3,8 @@ import {Component} from '@angular/core';
@Component({
selector: 'app-player-info-desert-storm',
templateUrl: './player-info-desert-storm.component.html',
styleUrl: './player-info-desert-storm.component.css'
styleUrl: './player-info-desert-storm.component.css',
standalone: false
})
export class PlayerInfoDesertStormComponent {

View File

@ -6,7 +6,8 @@ import {MarshalGuardParticipantModel} from "../../../models/marshalGuardParticip
@Component({
selector: 'app-player-info-marshal-guard',
templateUrl: './player-info-marshal-guard.component.html',
styleUrl: './player-info-marshal-guard.component.css'
styleUrl: './player-info-marshal-guard.component.css',
standalone: false
})
export class PlayerInfoMarshalGuardComponent {

View File

@ -9,7 +9,8 @@ import {ToastrService} from "ngx-toastr";
selector: 'app-player-info-vs-duel',
templateUrl: './player-info-vs-duel.component.html',
styleUrl: './player-info-vs-duel.component.css',
providers: [DatePipe]
providers: [DatePipe],
standalone: false
})
export class PlayerInfoVsDuelComponent {

View File

@ -10,7 +10,8 @@ import {ToastrService} from "ngx-toastr";
@Component({
selector: 'app-player-information',
templateUrl: './player-information.component.html',
styleUrl: './player-information.component.css'
styleUrl: './player-information.component.css',
standalone: false
})
export class PlayerInformationComponent implements OnInit {

View File

@ -9,7 +9,8 @@ import {ToastrService} from "ngx-toastr";
@Component({
selector: 'app-player-squads',
templateUrl: './player-squads.component.html',
styleUrl: './player-squads.component.css'
styleUrl: './player-squads.component.css',
standalone: false
})
export class PlayerSquadsComponent implements OnInit {

View File

@ -20,7 +20,8 @@ import {
@Component({
selector: 'app-player',
templateUrl: './player.component.html',
styleUrl: './player.component.css'
styleUrl: './player.component.css',
standalone: false
})
export class PlayerComponent implements OnInit {

View File

@ -7,7 +7,8 @@ import {VsDuelDetailModel} from "../../../models/vsDuel.model";
@Component({
selector: 'app-vs-duel-detail',
templateUrl: './vs-duel-detail.component.html',
styleUrl: './vs-duel-detail.component.css'
styleUrl: './vs-duel-detail.component.css',
standalone: false
})
export class VsDuelDetailComponent implements OnInit {

View File

@ -13,7 +13,8 @@ import {VsDuelLeagueModel} from "../../../models/vsDuelLeague.model";
@Component({
selector: 'app-vs-duel-edit',
templateUrl: './vs-duel-edit.component.html',
styleUrl: './vs-duel-edit.component.css'
styleUrl: './vs-duel-edit.component.css',
standalone: false
})
export class VsDuelEditComponent implements OnInit {

View File

@ -12,7 +12,8 @@ import {Router} from "@angular/router";
selector: 'app-vs-duel',
templateUrl: './vs-duel.component.html',
styleUrl: './vs-duel.component.css',
providers: [WeekPipe]
providers: [WeekPipe],
standalone: false
})
export class VsDuelComponent implements OnInit {

View File

@ -6,7 +6,8 @@ import {ZombieSiegeService} from "../../../services/zombie-siege.service";
@Component({
selector: 'app-zombie-siege-detail',
templateUrl: './zombie-siege-detail.component.html',
styleUrl: './zombie-siege-detail.component.css'
styleUrl: './zombie-siege-detail.component.css',
standalone: false
})
export class ZombieSiegeDetailComponent implements OnInit {

View File

@ -24,6 +24,7 @@ import {PagedResponseModel} from "../../models/pagedResponse.model";
selector: 'app-zombie-siege',
templateUrl: './zombie-siege.component.html',
styleUrl: './zombie-siege.component.css',
standalone: false
})
export class ZombieSiegeComponent implements OnInit {