build(package.json): update Angular dependencies to 19.2.2 #77
					 10 changed files with 596 additions and 430 deletions
				
			
		build(package.json): update Angular dependencies to 19.2.2
	
		
			
	
		
	
	
		
	
		
			Some checks failed
		
		
	
	
	
		
	
		
			Some checks failed
		
		
	
	
				commit
				
					
					
						d285297ede
					
				
			
		
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							| 
						 | 
				
			
			@ -13,15 +13,15 @@
 | 
			
		|||
  },
 | 
			
		||||
  "private": true,
 | 
			
		||||
  "dependencies": {
 | 
			
		||||
    "@angular/animations": "^18.2.0",
 | 
			
		||||
    "@angular/animations": "^19.2.2",
 | 
			
		||||
    "@angular/cdk": "~18.2.14",
 | 
			
		||||
    "@angular/common": "^18.2.0",
 | 
			
		||||
    "@angular/compiler": "^18.2.0",
 | 
			
		||||
    "@angular/core": "^18.2.0",
 | 
			
		||||
    "@angular/forms": "^18.2.0",
 | 
			
		||||
    "@angular/platform-browser": "^18.2.0",
 | 
			
		||||
    "@angular/platform-browser-dynamic": "^18.2.0",
 | 
			
		||||
    "@angular/router": "^18.2.0",
 | 
			
		||||
    "@angular/common": "^19.2.2",
 | 
			
		||||
    "@angular/compiler": "^19.2.2",
 | 
			
		||||
    "@angular/core": "^19.2.2",
 | 
			
		||||
    "@angular/forms": "^19.2.2",
 | 
			
		||||
    "@angular/platform-browser": "^19.2.2",
 | 
			
		||||
    "@angular/platform-browser-dynamic": "^19.2.2",
 | 
			
		||||
    "@angular/router": "^19.2.2",
 | 
			
		||||
    "@fortawesome/angular-fontawesome": "^1.0.0",
 | 
			
		||||
    "@fortawesome/fontawesome-svg-core": "^6.7.2",
 | 
			
		||||
    "@fortawesome/free-brands-svg-icons": "^6.7.2",
 | 
			
		||||
| 
						 | 
				
			
			@ -37,9 +37,9 @@
 | 
			
		|||
    "tslib": "^2.3.0"
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "@angular-devkit/build-angular": "^18.2.2",
 | 
			
		||||
    "@angular/cli": "^18.2.2",
 | 
			
		||||
    "@angular/compiler-cli": "^18.2.0",
 | 
			
		||||
    "@angular-devkit/build-angular": "^19.2.2",
 | 
			
		||||
    "@angular/cli": "^19.2.2",
 | 
			
		||||
    "@angular/compiler-cli": "^19.2.2",
 | 
			
		||||
    "@types/jasmine": "~5.1.0",
 | 
			
		||||
    "angular-eslint": "19.1.0",
 | 
			
		||||
    "eslint": "^9.20.0",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -6,11 +6,10 @@ import { FooterComponent } from './shared/components/footer/footer.component';
 | 
			
		|||
 | 
			
		||||
@Component({
 | 
			
		||||
    selector: 'app-root',
 | 
			
		||||
  standalone: true,
 | 
			
		||||
    imports: [CommonModule, RouterOutlet, KeycloakAngularModule, FooterComponent],
 | 
			
		||||
    providers: [],
 | 
			
		||||
    templateUrl: './app.component.html',
 | 
			
		||||
    styleUrl: './app.component.css',
 | 
			
		||||
  changeDetection: ChangeDetectionStrategy.OnPush,
 | 
			
		||||
    changeDetection: ChangeDetectionStrategy.OnPush
 | 
			
		||||
})
 | 
			
		||||
export class AppComponent {}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -25,10 +25,9 @@ import gsap from 'gsap';
 | 
			
		|||
 | 
			
		||||
@Component({
 | 
			
		||||
    selector: 'app-deposit',
 | 
			
		||||
  standalone: true,
 | 
			
		||||
    imports: [ReactiveFormsModule, NgIf],
 | 
			
		||||
    templateUrl: './deposit.component.html',
 | 
			
		||||
  changeDetection: ChangeDetectionStrategy.OnPush,
 | 
			
		||||
    changeDetection: ChangeDetectionStrategy.OnPush
 | 
			
		||||
})
 | 
			
		||||
export class DepositComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges {
 | 
			
		||||
  @Input() isOpen = false;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -9,10 +9,9 @@ import { ActivatedRoute } from '@angular/router';
 | 
			
		|||
 | 
			
		||||
@Component({
 | 
			
		||||
    selector: 'app-homepage',
 | 
			
		||||
  standalone: true,
 | 
			
		||||
    imports: [NavbarComponent, CurrencyPipe, NgFor, DepositComponent, ConfirmationComponent],
 | 
			
		||||
    templateUrl: './home.component.html',
 | 
			
		||||
  changeDetection: ChangeDetectionStrategy.OnPush,
 | 
			
		||||
    changeDetection: ChangeDetectionStrategy.OnPush
 | 
			
		||||
})
 | 
			
		||||
export default class HomeComponent implements OnInit {
 | 
			
		||||
  isDepositModalOpen = false;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -4,10 +4,9 @@ import { NgFor } from '@angular/common';
 | 
			
		|||
 | 
			
		||||
@Component({
 | 
			
		||||
    selector: 'app-landing-page',
 | 
			
		||||
  standalone: true,
 | 
			
		||||
    imports: [NavbarComponent, NgFor],
 | 
			
		||||
    templateUrl: './landing.component.html',
 | 
			
		||||
  changeDetection: ChangeDetectionStrategy.OnPush,
 | 
			
		||||
    changeDetection: ChangeDetectionStrategy.OnPush
 | 
			
		||||
})
 | 
			
		||||
export class LandingComponent implements OnInit, OnDestroy {
 | 
			
		||||
  currentSlide = 0;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -5,11 +5,10 @@ import { Router } from '@angular/router';
 | 
			
		|||
 | 
			
		||||
@Component({
 | 
			
		||||
    selector: 'app-login-success',
 | 
			
		||||
  standalone: true,
 | 
			
		||||
    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);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -13,9 +13,8 @@ import gsap from 'gsap';
 | 
			
		|||
 | 
			
		||||
@Component({
 | 
			
		||||
    selector: 'app-confirmation',
 | 
			
		||||
  standalone: true,
 | 
			
		||||
    imports: [],
 | 
			
		||||
  templateUrl: './confirmation.component.html',
 | 
			
		||||
    templateUrl: './confirmation.component.html'
 | 
			
		||||
})
 | 
			
		||||
export class ConfirmationComponent implements AfterViewInit, OnDestroy {
 | 
			
		||||
  @Input() successful = true;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -5,10 +5,9 @@ import { faPaypal, faGooglePay, faApplePay } from '@fortawesome/free-brands-svg-
 | 
			
		|||
 | 
			
		||||
@Component({
 | 
			
		||||
    selector: 'app-footer',
 | 
			
		||||
  standalone: true,
 | 
			
		||||
    templateUrl: './footer.component.html',
 | 
			
		||||
    imports: [FontAwesomeModule],
 | 
			
		||||
  changeDetection: ChangeDetectionStrategy.OnPush,
 | 
			
		||||
    changeDetection: ChangeDetectionStrategy.OnPush
 | 
			
		||||
})
 | 
			
		||||
export class FooterComponent {
 | 
			
		||||
  currentYear: number = new Date().getFullYear();
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -7,9 +7,8 @@ import { CurrencyPipe } from '@angular/common';
 | 
			
		|||
@Component({
 | 
			
		||||
    selector: 'app-navbar',
 | 
			
		||||
    templateUrl: './navbar.component.html',
 | 
			
		||||
  standalone: true,
 | 
			
		||||
    imports: [RouterModule, CurrencyPipe],
 | 
			
		||||
  changeDetection: ChangeDetectionStrategy.OnPush,
 | 
			
		||||
    changeDetection: ChangeDetectionStrategy.OnPush
 | 
			
		||||
})
 | 
			
		||||
export class NavbarComponent implements OnInit {
 | 
			
		||||
  isMenuOpen = false;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in a new issue