mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-13 06:13:03 -05:00
chore(version): update to version 16
This commit is contained in:
7
apps/testing-todos-list/src/app/app.config.ts
Normal file
7
apps/testing-todos-list/src/app/app.config.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { ApplicationConfig } from '@angular/core';
|
||||
import { provideAnimations } from '@angular/platform-browser/animations';
|
||||
import { provideRouter } from '@angular/router';
|
||||
import { APP_ROUTES } from './app.route';
|
||||
export const appConfig: ApplicationConfig = {
|
||||
providers: [provideAnimations(), provideRouter(APP_ROUTES)],
|
||||
};
|
||||
@@ -3,7 +3,7 @@ import { Component, inject } from '@angular/core';
|
||||
import { MatButtonModule } from '@angular/material/button';
|
||||
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
||||
import { RouterLink } from '@angular/router';
|
||||
import { LetModule } from '@ngrx/component';
|
||||
import { LetDirective } from '@ngrx/component';
|
||||
import { provideComponentStore } from '@ngrx/component-store';
|
||||
import { DetailStore } from './detail.store';
|
||||
|
||||
@@ -16,7 +16,7 @@ import { DetailStore } from './detail.store';
|
||||
NgIf,
|
||||
AsyncPipe,
|
||||
MatProgressBarModule,
|
||||
LetModule,
|
||||
LetDirective,
|
||||
],
|
||||
template: `
|
||||
<h2 class="text-xl mb-2">Ticket Detail:</h2>
|
||||
|
||||
@@ -4,7 +4,7 @@ import { FormControl, ReactiveFormsModule } from '@angular/forms';
|
||||
import { MatFormFieldModule } from '@angular/material/form-field';
|
||||
import { MatInputModule } from '@angular/material/input';
|
||||
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
||||
import { LetModule } from '@ngrx/component';
|
||||
import { LetDirective } from '@ngrx/component';
|
||||
import { provideComponentStore } from '@ngrx/component-store';
|
||||
import { TicketStore } from './ticket.store';
|
||||
import { AddComponent } from './ui/add.component';
|
||||
@@ -22,7 +22,7 @@ import { RowComponent } from './ui/row.component';
|
||||
NgIf,
|
||||
NgFor,
|
||||
MatInputModule,
|
||||
LetModule,
|
||||
LetDirective,
|
||||
],
|
||||
template: `
|
||||
<h2 class="text-xl mb-2">Tickets</h2>
|
||||
|
||||
Reference in New Issue
Block a user