Skip to content

Commit 2026787

Browse files
Merge pull request #1 from SyncfusionExamples/1040273-heatmap-bind
Bug(1040273): Addressed the dependabot issue
2 parents 09027fe + d08169b commit 2026787

3 files changed

Lines changed: 22 additions & 17 deletions

File tree

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,30 @@
1010
},
1111
"private": true,
1212
"dependencies": {
13-
"@angular/animations": "^18.1.0",
14-
"@angular/common": "^18.1.0",
15-
"@angular/compiler": "^18.1.0",
16-
"@angular/core": "^18.1.0",
17-
"@angular/forms": "^18.1.0",
18-
"@angular/platform-browser": "^18.1.0",
19-
"@angular/platform-browser-dynamic": "^18.1.0",
20-
"@angular/router": "^18.1.0",
13+
"@angular/animations": "^20.3.16",
14+
"@angular/common": "^20.3.16",
15+
"@angular/compiler": "^20.3.16",
16+
"@angular/core": "^20.3.16",
17+
"@angular/forms": "^20.3.16",
18+
"@angular/platform-browser": "^20.3.16",
19+
"@angular/platform-browser-dynamic": "^20.3.16",
20+
"@angular/router": "^20.3.16",
2121
"@syncfusion/ej2-angular-heatmap": "^26.2.5",
2222
"rxjs": "~7.8.0",
2323
"tslib": "^2.3.0",
24-
"zone.js": "~0.14.3"
24+
"zone.js": "~0.15.0"
2525
},
2626
"devDependencies": {
27-
"@angular-devkit/build-angular": "^18.1.2",
28-
"@angular/cli": "^18.1.2",
29-
"@angular/compiler-cli": "^18.1.0",
27+
"@angular-devkit/build-angular": "^20.3.16",
28+
"@angular/cli": "^20.3.16",
29+
"@angular/compiler-cli": "^20.3.16",
3030
"@types/jasmine": "~5.1.0",
3131
"jasmine-core": "~5.1.0",
3232
"karma": "~6.4.0",
3333
"karma-chrome-launcher": "~3.2.0",
3434
"karma-coverage": "~2.2.0",
3535
"karma-jasmine": "~5.1.0",
3636
"karma-jasmine-html-reporter": "~2.1.0",
37-
"typescript": "~5.5.2"
37+
"typescript": "~5.8.0"
3838
}
3939
}

src/app/app.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import { Component } from '@angular/core';
2-
import { RouterOutlet } from '@angular/router';
32
import { HeatMapModule, AdaptorService } from '@syncfusion/ej2-angular-heatmap';
43

54
@Component({
65
selector: 'app-root',
76
standalone: true,
8-
imports: [RouterOutlet, HeatMapModule],
7+
imports: [HeatMapModule],
98
providers: [AdaptorService],
109
templateUrl: './app.component.html',
1110
styleUrl: './app.component.css'

src/app/app.config.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
1+
import { ApplicationConfig, APP_ID, provideZoneChangeDetection } from '@angular/core';
22
import { provideRouter } from '@angular/router';
3+
import { provideClientHydration } from '@angular/platform-browser';
34

45
import { routes } from './app.routes';
56

67
export const appConfig: ApplicationConfig = {
7-
providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes)]
8+
providers: [
9+
provideZoneChangeDetection({ eventCoalescing: true }),
10+
provideRouter(routes),
11+
{ provide: APP_ID, useValue: 'myapp-unique-secure-id' },
12+
provideClientHydration()
13+
]
814
};

0 commit comments

Comments
 (0)