Skip to content

Commit f257624

Browse files
mikeshtrorainerhahnekamp
authored andcommitted
feat: upgrade to NgRx 19
1 parent 40fa688 commit f257624

File tree

26 files changed

+4942
-3514
lines changed

26 files changed

+4942
-3514
lines changed

apps/demo/.eslintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"prefix": "demo",
2525
"style": "kebab-case"
2626
}
27-
]
27+
],
28+
"@angular-eslint/prefer-standalone": "off"
2829
}
2930
},
3031
{

apps/demo/src/app/app.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import { MatListItem, MatListModule } from '@angular/material/list';
1414
@Component({
1515
selector: 'demo-root',
1616
templateUrl: './app.component.html',
17-
standalone: true,
1817
styleUrl: './app.component.css',
1918
imports: [
2019
MatTableModule,

apps/demo/src/app/core/sidebar/sidebar.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { RouterModule } from '@angular/router';
1010
import { map, shareReplay } from 'rxjs';
1111

1212
@Component({
13-
standalone: true,
1413
selector: 'demo-sidebar-cmp',
1514
imports: [
1615
RouterModule,

apps/demo/src/app/flight-search-data-service-dynamic/flight-edit.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { FlightBookingStore } from './flight-booking.store';
66
import { Flight } from '../shared/flight';
77

88
@Component({
9-
standalone: true,
109
imports: [CommonModule, RouterModule, FormsModule],
1110
selector: 'demo-flight-edit',
1211
templateUrl: './flight-edit.component.html',

apps/demo/src/app/flight-search-data-service-dynamic/flight-search.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { RouterLink } from '@angular/router';
66
import { FlightBookingStore } from './flight-booking.store';
77

88
@Component({
9-
standalone: true,
109
imports: [
1110
NgIf,
1211
NgForOf,

apps/demo/src/app/flight-search-data-service-simple/flight-edit-simple.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { SimpleFlightBookingStore } from './flight-booking-simple.store';
66
import { Flight } from '../shared/flight';
77

88
@Component({
9-
standalone: true,
109
imports: [CommonModule, RouterModule, FormsModule],
1110
selector: 'demo-flight-edit-simple',
1211
templateUrl: './flight-edit-simple.component.html',

apps/demo/src/app/flight-search-data-service-simple/flight-search-simple.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { MatInputModule } from '@angular/material/input';
1010
import { MatButtonModule } from '@angular/material/button';
1111

1212
@Component({
13-
standalone: true,
1413
imports: [
1514
NgIf,
1615
NgForOf,

apps/demo/src/app/flight-search-redux-connector/flight-search.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { FlightFilter } from '../shared/flight.service';
1010
import { Flight } from '../shared/flight';
1111

1212
@Component({
13-
standalone: true,
1413
imports: [
1514
JsonPipe,
1615
RouterLink,

apps/demo/src/app/flight-search-with-pagination/flight-search-with-pagination.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import { MatPaginatorModule, PageEvent } from '@angular/material/paginator';
1212
@Component({
1313
selector: 'demo-flight-search-with-pagination',
1414
templateUrl: 'flight-search-with-pagination.component.html',
15-
standalone: true,
1615
imports: [
1716
MatTableModule,
1817
MatPaginatorModule,

apps/demo/src/app/flight-search/flight-search.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import { MatButtonModule } from '@angular/material/button';
1111
@Component({
1212
selector: 'demo-flight-search',
1313
templateUrl: 'flight-search.component.html',
14-
standalone: true,
1514
imports: [
1615
MatTableModule,
1716
DatePipe,

0 commit comments

Comments
 (0)