build(package.json): update Angular dependencies to 19.2.2
Some checks failed
CI / Get Changed Files (pull_request) Successful in 6s
CI / Checkstyle Main (pull_request) Has been skipped
CI / prettier (pull_request) Failing after 19s
CI / eslint (pull_request) Failing after 46s
CI / test-build (pull_request) Failing after 47s

This commit is contained in:
Jan K9f 2025-03-13 11:18:10 +01:00
parent ce7c30b9ae
commit d285297ede
Signed by: jank
GPG key ID: 22BEAC760B3333D6
10 changed files with 596 additions and 430 deletions

View file

@ -12,10 +12,9 @@ import { ModalAnimationService } from '../../services/modal-animation.service';
import gsap from 'gsap';
@Component({
selector: 'app-confirmation',
standalone: true,
imports: [],
templateUrl: './confirmation.component.html',
selector: 'app-confirmation',
imports: [],
templateUrl: './confirmation.component.html'
})
export class ConfirmationComponent implements AfterViewInit, OnDestroy {
@Input() successful = true;

View file

@ -4,11 +4,10 @@ import { faMoneyBillTransfer, faCreditCard, faWallet } from '@fortawesome/free-s
import { faPaypal, faGooglePay, faApplePay } from '@fortawesome/free-brands-svg-icons';
@Component({
selector: 'app-footer',
standalone: true,
templateUrl: './footer.component.html',
imports: [FontAwesomeModule],
changeDetection: ChangeDetectionStrategy.OnPush,
selector: 'app-footer',
templateUrl: './footer.component.html',
imports: [FontAwesomeModule],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class FooterComponent {
currentYear: number = new Date().getFullYear();

View file

@ -5,11 +5,10 @@ import { UserService } from '../../../service/user.service';
import { CurrencyPipe } from '@angular/common';
@Component({
selector: 'app-navbar',
templateUrl: './navbar.component.html',
standalone: true,
imports: [RouterModule, CurrencyPipe],
changeDetection: ChangeDetectionStrategy.OnPush,
selector: 'app-navbar',
templateUrl: './navbar.component.html',
imports: [RouterModule, CurrencyPipe],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class NavbarComponent implements OnInit {
isMenuOpen = false;