Skip to content

Commit a904739

Browse files
Update angular to 19 part 1
1 parent 71ea6db commit a904739

File tree

166 files changed

+3849
-2433
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+3849
-2433
lines changed

package-lock.json

Lines changed: 3140 additions & 1878 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14-
"@angular/animations": "^18.2.14",
14+
"@angular/animations": "^19.2.15",
1515
"@angular/cdk": "^18.2.14",
16-
"@angular/common": "^18.2.14",
17-
"@angular/compiler": "^18.2.14",
18-
"@angular/core": "^18.2.14",
19-
"@angular/forms": "^18.2.14",
20-
"@angular/localize": "^18.2.14",
16+
"@angular/common": "^19.2.15",
17+
"@angular/compiler": "^19.2.15",
18+
"@angular/core": "^19.2.15",
19+
"@angular/forms": "^19.2.15",
20+
"@angular/localize": "^19.2.15",
2121
"@angular/material": "^18.2.14",
2222
"@angular/material-moment-adapter": "^18.2.14",
23-
"@angular/platform-browser": "^18.2.14",
24-
"@angular/platform-browser-dynamic": "^18.2.14",
25-
"@angular/router": "^18.2.14",
23+
"@angular/platform-browser": "^19.2.15",
24+
"@angular/platform-browser-dynamic": "^19.2.15",
25+
"@angular/router": "^19.2.15",
2626
"@auth0/angular-jwt": "^5.0.1",
27-
"@fortawesome/angular-fontawesome": "^0.15.0",
27+
"@fortawesome/angular-fontawesome": "^1.0.0",
2828
"@fortawesome/fontawesome-free": "^7.1.0",
29-
"@fortawesome/fontawesome-svg-core": "^1.2.28",
29+
"@fortawesome/fontawesome-svg-core": "^7.1.0",
3030
"@fortawesome/free-solid-svg-icons": "^5.13.0",
31-
"@ng-bootstrap/ng-bootstrap": "^17.0.1",
31+
"@ng-bootstrap/ng-bootstrap": "^18.0.0",
3232
"@ngx-translate/core": "^17.0.0",
3333
"@ngx-translate/http-loader": "^17.0.0",
3434
"@popperjs/core": "^2.11.6",
@@ -43,11 +43,11 @@
4343
"leaflet-geosearch": "3.6.1",
4444
"leaflet.fullscreen": "3.0.1",
4545
"moment": "^2.29.4",
46-
"monaco-editor": "^0.50.0",
46+
"monaco-editor": "^0.52.2",
4747
"ng": "0.0.0",
4848
"ng-inline-svg-2": "^15.0.1",
49-
"ngx-cookie-service": "^18.0.0",
50-
"ngx-monaco-editor-v2": "^18.1.0",
49+
"ngx-cookie-service": "^19.1.2",
50+
"ngx-monaco-editor-v2": "^19.0.2",
5151
"ngx-papaparse": "^5.0.0",
5252
"popper.js": "^1.16.1",
5353
"proj4": "2.12.1",
@@ -56,13 +56,13 @@
5656
"tslib": "^2.0.0",
5757
"tslint": "~6.1.0",
5858
"ua-parser-js": "^1.0.33",
59-
"zone.js": "~0.14.10"
59+
"zone.js": "~0.15.1"
6060
},
6161
"devDependencies": {
62-
"@angular-devkit/build-angular": "^18.2.21",
63-
"@angular/cli": "^18.2.21",
64-
"@angular/compiler-cli": "^18.2.14",
65-
"@ngrx/store-devtools": "^18.1.1",
62+
"@angular-devkit/build-angular": "^19.2.18",
63+
"@angular/cli": "^19.2.18",
64+
"@angular/compiler-cli": "^19.2.15",
65+
"@ngrx/store-devtools": "^19.2.1",
6666
"@types/jasmine": "~3.6.0",
6767
"@types/jasminewd2": "~2.0.3",
6868
"@types/jest": "^30.0.0",
@@ -87,6 +87,6 @@
8787
"ts-node": "~8.3.0",
8888
"tslint-angular": "^3.0.3",
8989
"tslint-config-prettier": "^1.18.0",
90-
"typescript": "~5.4.5"
90+
"typescript": "~5.8.3"
9191
}
9292
}

src/app/admin/api-key/api-key-edit/api-key-edit.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ import { ApiKeyService } from "../api-key.service";
1313
import { FormControl } from "@angular/forms";
1414

1515
@Component({
16-
selector: "app-api-key-edit",
17-
templateUrl: "./api-key-edit.component.html",
18-
styleUrls: ["./api-key-edit.component.scss"],
16+
selector: "app-api-key-edit",
17+
templateUrl: "./api-key-edit.component.html",
18+
styleUrls: ["./api-key-edit.component.scss"],
19+
standalone: false
1920
})
2021
export class ApiKeyEditComponent implements OnInit {
2122
apiKeyRequest = new ApiKeyRequest();

src/app/admin/api-key/api-key-list/api-key-list.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ import { MeService } from "@shared/services/me.service";
66
import { OrganizationAccessScope } from "@shared/enums/access-scopes";
77

88
@Component({
9-
selector: "app-api-key-list",
10-
templateUrl: "./api-key-list.component.html",
11-
styleUrls: ["./api-key-list.component.scss"],
9+
selector: "app-api-key-list",
10+
templateUrl: "./api-key-list.component.html",
11+
styleUrls: ["./api-key-list.component.scss"],
12+
standalone: false
1213
})
1314
export class ApiKeyListComponent implements OnInit {
1415
@Input() organisationId: number;

src/app/admin/api-key/api-key-list/api-key-table/api-key-table.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ import { OrganizationAccessScope } from "@shared/enums/access-scopes";
1313
import { DefaultPageSizeOptions } from "@shared/constants/page.constants";
1414

1515
@Component({
16-
selector: "app-api-key-table",
17-
templateUrl: "./api-key-table.component.html",
18-
styleUrls: ["./api-key-table.component.scss"],
16+
selector: "app-api-key-table",
17+
templateUrl: "./api-key-table.component.html",
18+
styleUrls: ["./api-key-table.component.scss"],
19+
standalone: false
1920
})
2021
export class ApiKeyTableComponent implements AfterViewInit {
2122
@Input() organisationId: number;

src/app/admin/api-key/api-key.component.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import { Component, OnInit } from "@angular/core";
22

33
@Component({
4-
selector: "app-api-key",
5-
template: "<router-outlet></router-outlet>",
4+
selector: "app-api-key",
5+
template: "<router-outlet></router-outlet>",
6+
standalone: false
67
})
78
export class ApiKeyComponent implements OnInit {
89
constructor() {}

src/app/admin/organisation/organisation-detail/organisation-detail.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ import { ErrorMessageService } from "@shared/error-message.service";
2121
import { HttpErrorResponse } from "@angular/common/http";
2222

2323
@Component({
24-
selector: "app-organisation-detail",
25-
templateUrl: "./organisation-detail.component.html",
26-
styleUrls: ["./organisation-detail.component.scss"],
24+
selector: "app-organisation-detail",
25+
templateUrl: "./organisation-detail.component.html",
26+
styleUrls: ["./organisation-detail.component.scss"],
27+
standalone: false
2728
})
2829
export class OrganisationDetailComponent implements OnInit, OnChanges, OnDestroy {
2930
isLoadingResults = true;

src/app/admin/organisation/organisation-edit/organisation-edit.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ import { BackButton } from "@shared/models/back-button.model";
1111
import { SharedVariableService } from "@shared/shared-variable/shared-variable.service";
1212

1313
@Component({
14-
selector: "app-organisation-edit",
15-
templateUrl: "./organisation-edit.component.html",
16-
styleUrls: ["./organisation-edit.component.scss"],
14+
selector: "app-organisation-edit",
15+
templateUrl: "./organisation-edit.component.html",
16+
styleUrls: ["./organisation-edit.component.scss"],
17+
standalone: false
1718
})
1819
export class OrganisationEditComponent implements OnInit {
1920
organisation = new Organisation();

src/app/admin/organisation/organisation-list/organisation-list.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ import { MeService } from "@shared/services/me.service";
55
import { OrganizationAccessScope } from "@shared/enums/access-scopes";
66

77
@Component({
8-
selector: "app-organisation-list",
9-
templateUrl: "./organisation-list.component.html",
10-
styleUrls: ["./organisation-list.component.scss"],
8+
selector: "app-organisation-list",
9+
templateUrl: "./organisation-list.component.html",
10+
styleUrls: ["./organisation-list.component.scss"],
11+
standalone: false
1112
})
1213
export class OrganisationListComponent implements OnInit {
1314
canEdit: boolean;

src/app/admin/organisation/organisation-list/organisation-tabel/organisation-tabel.component.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ import { ErrorMessageService } from "@shared/error-message.service";
1212
import { HttpErrorResponse } from "@angular/common/http";
1313

1414
@Component({
15-
selector: "app-organisation-tabel",
16-
templateUrl: "./organisation-tabel.component.html",
17-
styleUrls: ["./organisation-tabel.component.scss"],
15+
selector: "app-organisation-tabel",
16+
templateUrl: "./organisation-tabel.component.html",
17+
styleUrls: ["./organisation-tabel.component.scss"],
18+
standalone: false
1819
})
1920
export class OrganisationTabelComponent implements AfterViewInit {
2021
displayedColumns: string[] = ["name", "applications", "menu"];

0 commit comments

Comments
 (0)