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

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,9 +1,10 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-under-development',
templateUrl: './under-development.component.html',
styleUrl: './under-development.component.css'
selector: 'app-under-development',
templateUrl: './under-development.component.html',
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

@ -5,9 +5,10 @@ import {PlayerModel} from "../../models/player.model";
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'
selector: 'app-custom-event-participants-model',
templateUrl: './custom-event-participants-model.component.html',
styleUrl: './custom-event-participants-model.component.css',
standalone: false
})
export class CustomEventParticipantsModelComponent implements OnInit {

View File

@ -4,9 +4,10 @@ import {NgbActiveModal} from "@ng-bootstrap/ng-bootstrap";
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'
selector: 'app-desert-storm-participants-modal',
templateUrl: './desert-storm-participants-modal.component.html',
styleUrl: './desert-storm-participants-modal.component.css',
standalone: false
})
export class DesertStormParticipantsModalComponent implements OnInit {

View File

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

View File

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

View File

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

View File

@ -5,9 +5,10 @@ import {PlayerService} from "../../services/player.service";
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'
selector: 'app-player-dismiss-information-modal',
templateUrl: './player-dismiss-information-modal.component.html',
styleUrl: './player-dismiss-information-modal.component.css',
standalone: false
})
export class PlayerDismissInformationModalComponent implements OnInit {

View File

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

View File

@ -6,9 +6,10 @@ import {JwtTokenService} from "../../services/jwt-token.service";
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'
selector: 'app-player-excel-import-modal',
templateUrl: './player-excel-import-modal.component.html',
styleUrl: './player-excel-import-modal.component.css',
standalone: false
})
export class PlayerExcelImportModalComponent {

View File

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

View File

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

View File

@ -6,9 +6,10 @@ import {UpdateUserModel, UserModel} from "../../models/user.model";
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'
selector: 'app-user-edit-modal',
templateUrl: './user-edit-modal.component.html',
styleUrl: './user-edit-modal.component.css',
standalone: false
})
export class UserEditModalComponent implements OnInit {

View File

@ -8,9 +8,10 @@ import {VsDuelLeagueService} from "../../services/vs-duel-league.service";
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'
selector: 'app-vs-duel-edit-modal',
templateUrl: './vs-duel-create-modal.component.html',
styleUrl: './vs-duel-create-modal.component.css',
standalone: false
})
export class VsDuelCreateModalComponent implements OnInit {

View File

@ -4,9 +4,10 @@ import {PlayerService} from "../../services/player.service";
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'
selector: 'app-zombie-siege-participants-modal',
templateUrl: './zombie-siege-participants-modal.component.html',
styleUrl: './zombie-siege-participants-modal.component.css',
standalone: false
})
export class ZombieSiegeParticipantsModalComponent implements OnInit {

View File

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

View File

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

View File

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

View File

@ -9,9 +9,10 @@ import {InviteUserModalComponent} from "../../../modals/invite-user-modal/invite
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'
selector: 'app-alliance-user-administration',
templateUrl: './alliance-user-administration.component.html',
styleUrl: './alliance-user-administration.component.css',
standalone: false
})
export class AllianceUserAdministrationComponent implements OnInit {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -10,9 +10,10 @@ import {
} from "../../../models/customEventLeaderboard.model";
@Component({
selector: 'app-custom-event-leaderboard',
templateUrl: './custom-event-leaderboard.component.html',
styleUrl: './custom-event-leaderboard.component.css'
selector: 'app-custom-event-leaderboard',
templateUrl: './custom-event-leaderboard.component.html',
styleUrl: './custom-event-leaderboard.component.css',
standalone: false
})
export class CustomEventLeaderboardComponent implements OnInit {

View File

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

View File

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

View File

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

View File

@ -11,9 +11,10 @@ import {
} from "../../modals/player-dismiss-information-modal/player-dismiss-information-modal.component";
@Component({
selector: 'app-dismiss-player',
templateUrl: './dismiss-player.component.html',
styleUrl: './dismiss-player.component.css'
selector: 'app-dismiss-player',
templateUrl: './dismiss-player.component.html',
styleUrl: './dismiss-player.component.css',
standalone: false
})
export class DismissPlayerComponent implements OnInit {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,9 +1,10 @@
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'
selector: 'app-player-info-custom-event',
templateUrl: './player-info-custom-event.component.html',
styleUrl: './player-info-custom-event.component.css',
standalone: false
})
export class PlayerInfoCustomEventComponent {

View File

@ -1,9 +1,10 @@
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'
selector: 'app-player-info-desert-storm',
templateUrl: './player-info-desert-storm.component.html',
styleUrl: './player-info-desert-storm.component.css',
standalone: false
})
export class PlayerInfoDesertStormComponent {

View File

@ -4,9 +4,10 @@ import {ToastrService} from "ngx-toastr";
import {MarshalGuardParticipantModel} from "../../../models/marshalGuardParticipant.model";
@Component({
selector: 'app-player-info-marshal-guard',
templateUrl: './player-info-marshal-guard.component.html',
styleUrl: './player-info-marshal-guard.component.css'
selector: 'app-player-info-marshal-guard',
templateUrl: './player-info-marshal-guard.component.html',
styleUrl: './player-info-marshal-guard.component.css',
standalone: false
})
export class PlayerInfoMarshalGuardComponent {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -11,9 +11,10 @@ import {VsDuelLeagueService} from "../../../services/vs-duel-league.service";
import {VsDuelLeagueModel} from "../../../models/vsDuelLeague.model";
@Component({
selector: 'app-vs-duel-edit',
templateUrl: './vs-duel-edit.component.html',
styleUrl: './vs-duel-edit.component.css'
selector: 'app-vs-duel-edit',
templateUrl: './vs-duel-edit.component.html',
styleUrl: './vs-duel-edit.component.css',
standalone: false
})
export class VsDuelEditComponent implements OnInit {

View File

@ -9,10 +9,11 @@ import Swal from "sweetalert2";
import {Router} from "@angular/router";
@Component({
selector: 'app-vs-duel',
templateUrl: './vs-duel.component.html',
styleUrl: './vs-duel.component.css',
providers: [WeekPipe]
selector: 'app-vs-duel',
templateUrl: './vs-duel.component.html',
styleUrl: './vs-duel.component.css',
providers: [WeekPipe],
standalone: false
})
export class VsDuelComponent implements OnInit {

View File

@ -4,9 +4,10 @@ import {ActivatedRoute} from "@angular/router";
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'
selector: 'app-zombie-siege-detail',
templateUrl: './zombie-siege-detail.component.html',
styleUrl: './zombie-siege-detail.component.css',
standalone: false
})
export class ZombieSiegeDetailComponent implements OnInit {

View File

@ -21,9 +21,10 @@ import {forkJoin, Observable} from "rxjs";
import {PagedResponseModel} from "../../models/pagedResponse.model";
@Component({
selector: 'app-zombie-siege',
templateUrl: './zombie-siege.component.html',
styleUrl: './zombie-siege.component.css',
selector: 'app-zombie-siege',
templateUrl: './zombie-siege.component.html',
styleUrl: './zombie-siege.component.css',
standalone: false
})
export class ZombieSiegeComponent implements OnInit {