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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -7,7 +7,8 @@ import {FormArray, FormControl, FormGroup, Validators} from "@angular/forms";
@Component({ @Component({
selector: 'app-custom-event-participants-model', selector: 'app-custom-event-participants-model',
templateUrl: './custom-event-participants-model.component.html', 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 { export class CustomEventParticipantsModelComponent implements OnInit {

View File

@ -6,7 +6,8 @@ import {PlayerModel} from "../../models/player.model";
@Component({ @Component({
selector: 'app-desert-storm-participants-modal', selector: 'app-desert-storm-participants-modal',
templateUrl: './desert-storm-participants-modal.component.html', 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 { export class DesertStormParticipantsModalComponent implements OnInit {

View File

@ -10,7 +10,8 @@ import {environment} from "../../../environments/environment";
@Component({ @Component({
selector: 'app-invite-user-modal', selector: 'app-invite-user-modal',
templateUrl: './invite-user-modal.component.html', 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 { export class InviteUserModalComponent implements OnInit {

View File

@ -6,7 +6,8 @@ import {PlayerModel} from "../../models/player.model";
@Component({ @Component({
selector: 'app-marshal-guard-modal', selector: 'app-marshal-guard-modal',
templateUrl: './marshal-guard-modal.component.html', 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 { export class MarshalGuardModalComponent implements OnInit {

View File

@ -10,7 +10,8 @@ import Swal from "sweetalert2";
@Component({ @Component({
selector: 'app-player-admonition-modal', selector: 'app-player-admonition-modal',
templateUrl: './player-admonition-modal.component.html', 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 { export class PlayerAdmonitionModalComponent implements OnInit {

View File

@ -7,7 +7,8 @@ import {ToastrService} from "ngx-toastr";
@Component({ @Component({
selector: 'app-player-dismiss-information-modal', selector: 'app-player-dismiss-information-modal',
templateUrl: './player-dismiss-information-modal.component.html', 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 { export class PlayerDismissInformationModalComponent implements OnInit {

View File

@ -10,7 +10,8 @@ import {ToastrService} from "ngx-toastr";
@Component({ @Component({
selector: 'app-player-edit-modal', selector: 'app-player-edit-modal',
templateUrl: './player-edit-modal.component.html', 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 { export class PlayerEditModalComponent implements OnInit {

View File

@ -8,7 +8,8 @@ import {PlayerService} from "../../services/player.service";
@Component({ @Component({
selector: 'app-player-excel-import-modal', selector: 'app-player-excel-import-modal',
templateUrl: './player-excel-import-modal.component.html', 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 { export class PlayerExcelImportModalComponent {

View File

@ -10,7 +10,8 @@ import Swal from "sweetalert2";
@Component({ @Component({
selector: 'app-player-note-modal', selector: 'app-player-note-modal',
templateUrl: './player-note-modal.component.html', 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 { export class PlayerNoteModalComponent implements OnInit {

View File

@ -10,7 +10,8 @@ import {ToastrService} from "ngx-toastr";
@Component({ @Component({
selector: 'app-squad-edit-modal', selector: 'app-squad-edit-modal',
templateUrl: './squad-edit-modal.component.html', 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 { export class SquadEditModalComponent implements OnInit {

View File

@ -8,7 +8,8 @@ import {FormControl, FormGroup, Validators} from "@angular/forms";
@Component({ @Component({
selector: 'app-user-edit-modal', selector: 'app-user-edit-modal',
templateUrl: './user-edit-modal.component.html', 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 { export class UserEditModalComponent implements OnInit {

View File

@ -10,7 +10,8 @@ import {VsDuelLeagueModel} from "../../models/vsDuelLeague.model";
@Component({ @Component({
selector: 'app-vs-duel-edit-modal', selector: 'app-vs-duel-edit-modal',
templateUrl: './vs-duel-create-modal.component.html', 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 { export class VsDuelCreateModalComponent implements OnInit {

View File

@ -6,7 +6,8 @@ import {PlayerModel} from "../../models/player.model";
@Component({ @Component({
selector: 'app-zombie-siege-participants-modal', selector: 'app-zombie-siege-participants-modal',
templateUrl: './zombie-siege-participants-modal.component.html', 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 { export class ZombieSiegeParticipantsModalComponent implements OnInit {

View File

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

View File

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

View File

@ -7,7 +7,8 @@ import {ToastrService} from "ngx-toastr";
@Component({ @Component({
selector: 'app-alliance-api-key', selector: 'app-alliance-api-key',
templateUrl: './alliance-api-key.component.html', 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 { export class AllianceApiKeyComponent implements OnInit {

View File

@ -11,7 +11,8 @@ import {JwtTokenService} from "../../../services/jwt-token.service";
@Component({ @Component({
selector: 'app-alliance-user-administration', selector: 'app-alliance-user-administration',
templateUrl: './alliance-user-administration.component.html', 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 { export class AllianceUserAdministrationComponent implements OnInit {

View File

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

View File

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

View File

@ -13,7 +13,8 @@ import Swal from "sweetalert2";
@Component({ @Component({
selector: 'app-custom-event-category', selector: 'app-custom-event-category',
templateUrl: './custom-event-category.component.html', 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 { export class CustomEventCategoryComponent implements OnInit {
isCreateCustomEventCategory: any; isCreateCustomEventCategory: any;

View File

@ -6,7 +6,8 @@ import {CustomEventDetailModel} from "../../../models/customEvent.model";
@Component({ @Component({
selector: 'app-custom-event-detail', selector: 'app-custom-event-detail',
templateUrl: './custom-event-detail.component.html', 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 { export class CustomEventDetailComponent implements OnInit {

View File

@ -19,7 +19,8 @@ import {forkJoin, Observable} from "rxjs";
@Component({ @Component({
selector: 'app-custom-event-events', selector: 'app-custom-event-events',
templateUrl: './custom-event-events.component.html', 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 { export class CustomEventEventsComponent implements OnInit {

View File

@ -12,7 +12,8 @@ import {
@Component({ @Component({
selector: 'app-custom-event-leaderboard', selector: 'app-custom-event-leaderboard',
templateUrl: './custom-event-leaderboard.component.html', 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 { export class CustomEventLeaderboardComponent implements OnInit {

View File

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

View File

@ -6,7 +6,8 @@ import {DesertStormDetailModel} from "../../../models/desertStorm.model";
@Component({ @Component({
selector: 'app-desert-storm-detail', selector: 'app-desert-storm-detail',
templateUrl: './desert-storm-detail.component.html', 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 { export class DesertStormDetailComponent implements OnInit {

View File

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

View File

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

View File

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

View File

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

View File

@ -6,7 +6,8 @@ import {MarshalGuardDetailModel} from "../../../models/marshalGuard.model";
@Component({ @Component({
selector: 'app-marshal-guard-detail', selector: 'app-marshal-guard-detail',
templateUrl: './marshal-guard-detail.component.html', 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 { export class MarshalGuardDetailComponent implements OnInit {

View File

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

View File

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

View File

@ -3,7 +3,8 @@ import {Component} from '@angular/core';
@Component({ @Component({
selector: 'app-player-info-custom-event', selector: 'app-player-info-custom-event',
templateUrl: './player-info-custom-event.component.html', 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 { export class PlayerInfoCustomEventComponent {

View File

@ -3,7 +3,8 @@ import {Component} from '@angular/core';
@Component({ @Component({
selector: 'app-player-info-desert-storm', selector: 'app-player-info-desert-storm',
templateUrl: './player-info-desert-storm.component.html', 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 { export class PlayerInfoDesertStormComponent {

View File

@ -6,7 +6,8 @@ import {MarshalGuardParticipantModel} from "../../../models/marshalGuardParticip
@Component({ @Component({
selector: 'app-player-info-marshal-guard', selector: 'app-player-info-marshal-guard',
templateUrl: './player-info-marshal-guard.component.html', 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 { export class PlayerInfoMarshalGuardComponent {

View File

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

View File

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

View File

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

View File

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

View File

@ -7,7 +7,8 @@ import {VsDuelDetailModel} from "../../../models/vsDuel.model";
@Component({ @Component({
selector: 'app-vs-duel-detail', selector: 'app-vs-duel-detail',
templateUrl: './vs-duel-detail.component.html', 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 { export class VsDuelDetailComponent implements OnInit {

View File

@ -13,7 +13,8 @@ import {VsDuelLeagueModel} from "../../../models/vsDuelLeague.model";
@Component({ @Component({
selector: 'app-vs-duel-edit', selector: 'app-vs-duel-edit',
templateUrl: './vs-duel-edit.component.html', 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 { export class VsDuelEditComponent implements OnInit {

View File

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

View File

@ -6,7 +6,8 @@ import {ZombieSiegeService} from "../../../services/zombie-siege.service";
@Component({ @Component({
selector: 'app-zombie-siege-detail', selector: 'app-zombie-siege-detail',
templateUrl: './zombie-siege-detail.component.html', 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 { export class ZombieSiegeDetailComponent implements OnInit {

View File

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