Skip to content

Commit 13c57cb

Browse files
committed
feat: upgrade to angular 19
1 parent 7cfb9cd commit 13c57cb

File tree

10 files changed

+4304
-4821
lines changed

10 files changed

+4304
-4821
lines changed

package-lock.json

+4,271-4,795
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+25-25
Original file line numberDiff line numberDiff line change
@@ -12,36 +12,36 @@
1212
},
1313
"private": true,
1414
"dependencies": {
15-
"@angular/animations": "^18.2.0",
16-
"@angular/cdk": "^18.2.0",
17-
"@angular/common": "^18.2.0",
18-
"@angular/compiler": "^18.2.0",
19-
"@angular/core": "^18.2.0",
20-
"@angular/forms": "^18.2.0",
21-
"@angular/material": "^18.2.0",
22-
"@angular/platform-browser": "^18.2.0",
23-
"@angular/platform-browser-dynamic": "^18.2.0",
24-
"@angular/router": "^18.2.0",
25-
"rxjs": "~7.8.0",
26-
"tslib": "^2.3.0",
27-
"zone.js": "~0.14.10"
15+
"@angular/animations": "^19.1.3",
16+
"@angular/cdk": "^19.1.1",
17+
"@angular/common": "^19.1.3",
18+
"@angular/compiler": "^19.1.3",
19+
"@angular/core": "^19.1.3",
20+
"@angular/forms": "^19.1.3",
21+
"@angular/material": "^19.1.1",
22+
"@angular/platform-browser": "^19.1.3",
23+
"@angular/platform-browser-dynamic": "^19.1.3",
24+
"@angular/router": "^19.1.3",
25+
"rxjs": "~7.8.1",
26+
"tslib": "^2.8.1",
27+
"zone.js": "~0.15.0"
2828
},
2929
"devDependencies": {
30-
"@angular-builders/custom-webpack": "^18.0.0",
31-
"@angular-devkit/build-angular": "^18.2.7",
32-
"@angular/cli": "^18.2.7",
33-
"@angular/compiler-cli": "^18.2.0",
34-
"@types/jasmine": "~5.1.0",
35-
"angular-eslint": "18.3.1",
30+
"@angular-builders/custom-webpack": "^19.0.0",
31+
"@angular-devkit/build-angular": "^19.1.4",
32+
"@angular/cli": "^19.1.4",
33+
"@angular/compiler-cli": "^19.1.3",
34+
"@types/jasmine": "~5.1.5",
35+
"angular-eslint": "19.0.2",
3636
"dotenv-webpack": "^8.1.0",
37-
"eslint": "^9.9.1",
38-
"jasmine-core": "~5.2.0",
39-
"karma": "~6.4.0",
37+
"eslint": "^9.19.0",
38+
"jasmine-core": "~5.5.0",
39+
"karma": "~6.4.4",
4040
"karma-chrome-launcher": "~3.2.0",
41-
"karma-coverage": "~2.2.0",
41+
"karma-coverage": "~2.2.1",
4242
"karma-jasmine": "~5.1.0",
4343
"karma-jasmine-html-reporter": "~2.1.0",
44-
"typescript": "~5.5.2",
45-
"typescript-eslint": "8.2.0"
44+
"typescript": "~5.7.3",
45+
"typescript-eslint": "8.21.0"
4646
}
4747
}

src/app/app.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { AuthService } from './services/auth.service';
33
import { Subscription } from 'rxjs';
44

55
@Component({
6+
standalone: false,
67
selector: 'app-root',
78
templateUrl: './app.component.html',
89
styleUrls: ['./app.component.scss'],

src/app/app.module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ import { MatAnchor, MatButtonModule, MatIconButton } from '@angular/material/but
3030
declarations: [
3131
AppComponent,
3232
QueryComponent,
33-
JsonStringifyPipe,
3433
CatalogBrowserComponent,
3534
NodeTableComponent,
3635
NodeDetailsComponent,
@@ -58,6 +57,7 @@ import { MatAnchor, MatButtonModule, MatIconButton } from '@angular/material/but
5857
MatTooltipModule,
5958
MatAnchor,
6059
MatIconButton,
60+
JsonStringifyPipe,
6161
],
6262
providers: [],
6363
bootstrap: [AppComponent],

src/app/components/authentication/authentication.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { AuthService } from 'src/app/services/auth.service';
44
import { Subscription } from 'rxjs';
55

66
@Component({
7+
standalone: false,
78
selector: 'app-authentication',
89
templateUrl: './authentication.component.html',
910
styleUrls: ['./authentication.component.scss'],

src/app/components/catalog-browser/catalog-browser.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { BehaviorSubject, combineLatest, Observable, Subject } from 'rxjs';
66
import { map, switchMap, scan, startWith, concatMap } from 'rxjs/operators';
77

88
@Component({
9+
standalone: false,
910
selector: 'app-catalog-browser',
1011
templateUrl: './catalog-browser.component.html',
1112
styleUrls: ['./catalog-browser.component.scss'],

src/app/components/node-details/node-details.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { ActivatedRoute } from '@angular/router';
55
import { map, Observable, switchMap } from 'rxjs';
66

77
@Component({
8+
standalone: false,
89
selector: 'app-node-details',
910
templateUrl: './node-details.component.html',
1011
styleUrls: ['./node-details.component.scss'],

src/app/components/node-labels/node-labels.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { Component, Input } from '@angular/core';
22

33
@Component({
4+
standalone: false,
45
selector: 'app-node-labels',
56
templateUrl: './node-labels.component.html',
67
styleUrls: ['./node-labels.component.scss'],

src/app/components/node-table/node-table.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { Component, Input } from '@angular/core';
22
import { NodeQueryResult } from '../../types/dtos';
33

44
@Component({
5+
standalone: false,
56
selector: 'app-node-table',
67
templateUrl: './node-table.component.html',
78
styleUrls: ['./node-table.component.scss'],

src/app/components/query/query.component.ts

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { concatMap, map, tap } from 'rxjs';
88

99
const DEFAULT_QUERY = 'Match (n)-[r]->(m)\nReturn n,r,m\nLIMIT 100';
1010
@Component({
11+
standalone: false,
1112
selector: 'app-query',
1213
templateUrl: './query.component.html',
1314
styleUrls: ['./query.component.scss'],

0 commit comments

Comments
 (0)