build(package.json): update Angular dependencies to 19.2.2
Some checks failed
Some checks failed
This commit is contained in:
parent
ce7c30b9ae
commit
d285297ede
10 changed files with 596 additions and 430 deletions
|
@ -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;
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue