Skip to content

Commit e72de10

Browse files
committed
1017348: dependabot
1 parent 18a16bf commit e72de10

4 files changed

Lines changed: 23 additions & 22 deletions

File tree

angular.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,18 +61,18 @@
6161
"builder": "@angular-devkit/build-angular:dev-server",
6262
"configurations": {
6363
"production": {
64-
"browserTarget": "myangularproject:build:production"
64+
"buildTarget": "myangularproject:build:production"
6565
},
6666
"development": {
67-
"browserTarget": "myangularproject:build:development"
67+
"buildTarget": "myangularproject:build:development"
6868
}
6969
},
7070
"defaultConfiguration": "development"
7171
},
7272
"extract-i18n": {
7373
"builder": "@angular-devkit/build-angular:extract-i18n",
7474
"options": {
75-
"browserTarget": "myangularproject:build"
75+
"buildTarget": "myangularproject:build"
7676
}
7777
},
7878
"test": {

package.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,32 @@
1010
},
1111
"private": true,
1212
"dependencies": {
13-
"@angular/animations": "^16.0.0",
14-
"@angular/common": "^16.0.0",
15-
"@angular/compiler": "^16.0.0",
16-
"@angular/core": "^16.0.0",
17-
"@angular/forms": "^16.0.0",
18-
"@angular/platform-browser": "^16.0.0",
19-
"@angular/platform-browser-dynamic": "^16.0.0",
20-
"@angular/router": "^16.0.0",
13+
"@angular/animations": "^19.2.16",
14+
"@angular/common": "^19.2.16",
15+
"@angular/compiler": "^19.2.16",
16+
"@angular/core": "^19.2.16",
17+
"@angular/forms": "^19.2.16",
18+
"@angular/platform-browser": "^19.2.16",
19+
"@angular/platform-browser-dynamic": "^19.2.16",
20+
"@angular/router": "^19.2.16",
2121
"@syncfusion/ej2-angular-buttons": "^22.1.39",
2222
"@syncfusion/ej2-angular-diagrams": "^22.1.38",
2323
"@syncfusion/ej2-material-theme": "*",
2424
"rxjs": "~7.8.0",
2525
"tslib": "^2.3.0",
26-
"zone.js": "~0.13.0"
26+
"zone.js": "~0.15.1"
2727
},
2828
"devDependencies": {
29-
"@angular-devkit/build-angular": "^16.0.4",
30-
"@angular/cli": "~16.0.4",
31-
"@angular/compiler-cli": "^16.0.0",
32-
"@types/jasmine": "~4.3.0",
33-
"jasmine-core": "~4.6.0",
29+
"@angular-devkit/build-angular": "^19.2.16",
30+
"@angular/cli": "^19.2.16",
31+
"@angular/compiler-cli": "^19.2.16",
32+
"@types/jasmine": "~5.1.0",
33+
"jasmine-core": "~5.4.0",
3434
"karma": "~6.4.0",
3535
"karma-chrome-launcher": "~3.2.0",
3636
"karma-coverage": "~2.2.0",
3737
"karma-jasmine": "~5.1.0",
38-
"karma-jasmine-html-reporter": "~2.0.0",
39-
"typescript": "~5.0.2"
38+
"karma-jasmine-html-reporter": "~2.1.0",
39+
"typescript": "~5.7.3"
4040
}
4141
}

src/app/app.component.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
import { Component, ViewEncapsulation, ViewChild } from '@angular/core';
22
import { Diagram, DiagramComponent, DiagramTools, NodeModel, ShapeStyleModel,TextModel, ImageModel,
3-
PathModel, HtmlModel, NativeModel } from '@syncfusion/ej2-angular-diagrams';
3+
PathModel, HtmlModel, NativeModel,DiagramModule } from '@syncfusion/ej2-angular-diagrams';
44

55
@Component({
66
selector: 'app-root',
77
templateUrl: './app.component.html',
88
styleUrls: ['./app.component.css'],
9-
encapsulation: ViewEncapsulation.None
9+
encapsulation: ViewEncapsulation.None,
10+
standalone: true,
11+
imports:[DiagramModule]
1012
})
1113

1214
export class AppComponent {

src/app/app.module.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { ButtonModule } from '@syncfusion/ej2-angular-buttons';
77

88
@NgModule({
99
declarations: [
10-
AppComponent
1110
],
1211
imports: [
1312
BrowserModule,

0 commit comments

Comments
 (0)