feat(blackjack): add animated number component and usage
Some checks failed
CI / Get Changed Files (pull_request) Successful in 27s
CI / Checkstyle Main (pull_request) Has been skipped
CI / eslint (pull_request) Failing after 41s
CI / test-build (pull_request) Successful in 49s
CI / prettier (pull_request) Failing after 58s

This commit is contained in:
Jan-Marlon Leibl 2025-04-03 10:02:15 +02:00
parent 3d7ee92cf2
commit f2d447abeb
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
11 changed files with 122 additions and 63 deletions

View file

@ -11,12 +11,13 @@ import { KeycloakService } from 'keycloak-angular';
import { CurrencyPipe } from '@angular/common';
import { UserService } from '@service/user.service';
import { Subscription } from 'rxjs';
import { AnimatedNumberComponent } from '@blackjack/components/animated-number/animated-number.component';
@Component({
selector: 'app-navbar',
templateUrl: './navbar.component.html',
standalone: true,
imports: [RouterModule, CurrencyPipe],
imports: [RouterModule, CurrencyPipe, AnimatedNumberComponent],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class NavbarComponent implements OnInit, OnDestroy {