Skip to content

Commit b5e68c0

Browse files
authored
Merge pull request #1120 from formio/angular-19-upgrade
FIO-9547: Upgrade to Angular 19.
2 parents f439607 + 629e49e commit b5e68c0

Some content is hidden

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

44 files changed

+3188
-2447
lines changed

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@formio/angular",
3-
"version": "8.1.0-rc.1",
3+
"version": "9.0.0-rc.1",
44
"scripts": {
55
"ng": "ng",
66
"build": "ng build angular-formio",
@@ -35,41 +35,41 @@
3535
"node": ">=6.0.0"
3636
},
3737
"devDependencies": {
38-
"@angular-devkit/build-angular": "^18.1.2",
39-
"@angular/animations": "^18.1.2",
40-
"@angular/cli": "^18.1.2",
41-
"@angular/common": "^18.1.2",
42-
"@angular/compiler": "^18.1.2",
43-
"@angular/compiler-cli": "^18.1.2",
44-
"@angular/core": "^18.1.2",
45-
"@angular/forms": "^18.1.2",
46-
"@angular/platform-browser": "^18.1.2",
47-
"@angular/platform-browser-dynamic": "^18.1.2",
48-
"@angular/router": "^18.1.2",
49-
"@compodoc/compodoc": "^1.1.25",
38+
"@angular-devkit/build-angular": "^19.0.6",
39+
"@angular/animations": "^19.0.5",
40+
"@angular/cli": "^19.0.6",
41+
"@angular/common": "^19.0.5",
42+
"@angular/compiler": "^19.0.5",
43+
"@angular/compiler-cli": "^19.0.5",
44+
"@angular/core": "^19.0.5",
45+
"@angular/forms": "^19.0.5",
46+
"@angular/platform-browser": "^19.0.5",
47+
"@angular/platform-browser-dynamic": "^19.0.5",
48+
"@angular/router": "^19.0.5",
49+
"@compodoc/compodoc": "1.1.25",
5050
"@formio/deprecated-types": "^0.1.0",
5151
"@formio/js": "^5.0.0",
52-
"@types/jasmine": "^5.1.4",
52+
"@types/jasmine": "^5.1.5",
5353
"@types/jasminewd2": "^2.0.13",
54-
"@types/node": "^22.0.0",
54+
"@types/node": "^22.10.5",
5555
"bootstrap": "5.3.3",
5656
"codelyzer": "^6.0.2",
57-
"jasmine-core": "^5.2.0",
57+
"jasmine-core": "^5.5.0",
5858
"jasmine-spec-reporter": "^7.0.0",
59-
"karma": "^6.4.3",
59+
"karma": "^6.4.4",
6060
"karma-chrome-launcher": "^3.1.1",
6161
"karma-coverage-istanbul-reporter": "~3.0.2",
6262
"karma-jasmine": "^5.1.0",
6363
"karma-jasmine-html-reporter": "^2.1.0",
64-
"ng-packagr": "^18.1.0",
65-
"ngx-bootstrap": "^18.0.2",
64+
"ng-packagr": "^19.0.1",
65+
"ngx-bootstrap": "^19.0.2",
6666
"protractor": "~7.0.0",
67-
"replace-in-file": "^7.2.0",
67+
"replace-in-file": "^8.3.0",
6868
"rxjs": "^7.8.1",
6969
"ts-node": "^10.9.2",
70-
"tslib": "^2.6.3",
70+
"tslib": "^2.8.1",
7171
"tslint": "~6.1.0",
72-
"typescript": "~5.5.4",
73-
"zone.js": "^0.14.8"
72+
"typescript": "~5.6.3",
73+
"zone.js": "^0.15.0"
7474
}
7575
}
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Component } from '@angular/core';
22
@Component({
3-
templateUrl: './auth.component.html'
3+
templateUrl: './auth.component.html',
4+
standalone: false
45
})
56
export class FormioAuthComponent {}

projects/angular-formio/auth/src/login/login.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { Component } from '@angular/core';
22
import { FormioAuthService } from '../auth.service';
33
@Component({
4-
templateUrl: './login.component.html'
4+
templateUrl: './login.component.html',
5+
standalone: false
56
})
67
export class FormioAuthLoginComponent {
78
public renderOptions: any = {

projects/angular-formio/auth/src/register/register.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { Component } from '@angular/core';
22
import { FormioAuthService } from '../auth.service';
33
@Component({
4-
templateUrl: './register.component.html'
4+
templateUrl: './register.component.html',
5+
standalone: false
56
})
67
export class FormioAuthRegisterComponent {
78
public renderOptions: any = {

projects/angular-formio/auth/src/resetpass/resetpass.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { Component } from '@angular/core';
22
import { FormioAuthService } from '../auth.service';
33
@Component({
4-
templateUrl: './resetpass.component.html'
4+
templateUrl: './resetpass.component.html',
5+
standalone: false
56
})
67
export class FormioResetPassComponent {
78
constructor(public service: FormioAuthService) {}

projects/angular-formio/embed/src/builder.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import WebformBuilder from '@formio/js/lib/cjs/WebformBuilder';
44

55
@Component({
66
selector: 'formio-builder',
7-
template: '<div #formio></div>'
7+
template: '<div #formio></div>',
8+
standalone: false
89
})
910
export class FormioBuilder implements AfterViewInit {
1011
@ViewChild('formio') element: ElementRef;

projects/angular-formio/embed/src/formio.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { Form as formType, Submission } from '@formio/core/types';
44

55
@Component({
66
selector: 'formio',
7-
template: '<div #formio></div>'
7+
template: '<div #formio></div>',
8+
standalone: false
89
})
910
export class FormioComponent implements AfterViewInit {
1011
@Input() src?: string;

projects/angular-formio/grid/src/GridBodyComponent.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import { GridService } from './grid.service';
55
import {FormioPromiseService} from '@formio/angular';
66

77
@Component({
8-
template: ''
8+
template: '',
9+
standalone: false
910
})
1011
export class GridBodyComponent {
1112
@Input() header: GridHeaderComponent;

projects/angular-formio/grid/src/GridFooterComponent.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { GridHeaderComponent } from './GridHeaderComponent';
44
import { GridBodyComponent } from './GridBodyComponent';
55

66
@Component({
7-
template: ''
7+
template: '',
8+
standalone: false
89
})
910
export class GridFooterComponent {
1011
@Input() header: GridHeaderComponent;

projects/angular-formio/grid/src/GridHeaderComponent.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import {FormioPromiseService} from '@formio/angular';
33
import {GridHeader} from './types/grid-header';
44

55
@Component({
6-
template: ''
6+
template: '',
7+
standalone: false
78
})
89
export class GridHeaderComponent {
910
@Input() actionAllowed: any;

0 commit comments

Comments
 (0)