build(package.json): update Angular dependencies to 19.2.2 #77

Closed
jank wants to merge 8 commits from update-angular into main
8 changed files with 34 additions and 34 deletions
Showing only changes of commit 1469918b4b - Show all commits

View file

@ -10,6 +10,6 @@ import { FooterComponent } from './shared/components/footer/footer.component';
providers: [],
templateUrl: './app.component.html',
styleUrl: './app.component.css',
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class AppComponent {}

View file

@ -27,7 +27,7 @@ import gsap from 'gsap';
selector: 'app-deposit',
imports: [ReactiveFormsModule, NgIf],
templateUrl: './deposit.component.html',
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class DepositComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges {
@Input() isOpen = false;

View file

@ -11,7 +11,7 @@ import { ActivatedRoute } from '@angular/router';
selector: 'app-homepage',
imports: [NavbarComponent, CurrencyPipe, NgFor, DepositComponent, ConfirmationComponent],
templateUrl: './home.component.html',
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export default class HomeComponent implements OnInit {
isDepositModalOpen = false;

View file

@ -6,7 +6,7 @@ import { NgFor } from '@angular/common';
selector: 'app-landing-page',
imports: [NavbarComponent, NgFor],
templateUrl: './landing.component.html',
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class LandingComponent implements OnInit, OnDestroy {
currentSlide = 0;

View file

@ -8,7 +8,7 @@ import { Router } from '@angular/router';
imports: [],
templateUrl: './login-success.component.html',
styleUrl: './login-success.component.css',
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export default class LoginSuccessComponent implements OnInit {
private userService: UserService = inject(UserService);

View file

@ -14,7 +14,7 @@ import gsap from 'gsap';
@Component({
selector: 'app-confirmation',
imports: [],
templateUrl: './confirmation.component.html'
templateUrl: './confirmation.component.html',
})
export class ConfirmationComponent implements AfterViewInit, OnDestroy {
@Input() successful = true;

View file

@ -7,7 +7,7 @@ import { faPaypal, faGooglePay, faApplePay } from '@fortawesome/free-brands-svg-
selector: 'app-footer',
templateUrl: './footer.component.html',
imports: [FontAwesomeModule],
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class FooterComponent {
currentYear: number = new Date().getFullYear();

View file

@ -8,7 +8,7 @@ import { CurrencyPipe } from '@angular/common';
selector: 'app-navbar',
templateUrl: './navbar.component.html',
imports: [RouterModule, CurrencyPipe],
changeDetection: ChangeDetectionStrategy.OnPush
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class NavbarComponent implements OnInit {
isMenuOpen = false;