Skip to content

Commit

Permalink
Fixed #11586 - Support Angular 14
Browse files Browse the repository at this point in the history
  • Loading branch information
yigitfindikli committed Jun 28, 2022
1 parent 193bd16 commit a9261e4
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 27 deletions.
3 changes: 3 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
],
"styles": [
"src/assets/showcase/styles/app/app.scss",
"./node_modules/@fullcalendar/common/main.css",
"./node_modules/@fullcalendar/daygrid/main.css",
"./node_modules/@fullcalendar/timegrid/main.css",
"src/styles.scss"
],
"scripts": [
Expand Down
44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@
"url": "https://github.com/primefaces/primeng.git"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.2.6",
"@angular/animations": "~13.2.6",
"@angular/cdk": "~13.2.6",
"@angular/cli": "~13.2.6",
"@angular/common": "~13.2.6",
"@angular/compiler": "~13.2.6",
"@angular/compiler-cli": "~13.2.6",
"@angular/core": "~13.2.6",
"@angular/forms": "~13.2.6",
"@angular/platform-browser": "~13.2.6",
"@angular/platform-browser-dynamic": "~13.2.6",
"@angular/router": "~13.2.6",
"@fullcalendar/angular": "^5.8.0",
"@fullcalendar/core": "^5.8.0",
"@fullcalendar/daygrid": "^5.8.0",
"@fullcalendar/interaction": "^5.8.0",
"@fullcalendar/timegrid": "^5.8.0",
"@angular-devkit/build-angular": "~14.0.3",
"@angular/animations": "~14.0.0",
"@angular/cdk": "~14.0.0",
"@angular/cli": "~14.0.3",
"@angular/common": "~14.0.0",
"@angular/compiler": "~14.0.0",
"@angular/compiler-cli": "~14.0.0",
"@angular/core": "~14.0.0",
"@angular/forms": "~14.0.0",
"@angular/platform-browser": "~14.0.0",
"@angular/platform-browser-dynamic": "~14.0.0",
"@angular/router": "~14.0.0",
"@fullcalendar/angular": "~5.11.0",
"@fullcalendar/core": "~5.11.0",
"@fullcalendar/daygrid": "~5.11.0",
"@fullcalendar/interaction": "~5.11.0",
"@fullcalendar/timegrid": "~5.11.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"chart.js": "3.3.2",
Expand All @@ -45,25 +45,25 @@
"gulp-rename": "^2.0.0",
"gulp-uglify": "^3.0.2",
"gulp-uglifycss": "^1.0.6",
"jasmine-core": "~3.7.0",
"jasmine-core": "~4.1.0",
"jasmine-spec-reporter": "~5.0.0",
"jspdf": "^1.5.3",
"jspdf-autotable": "^3.2.5",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "~13.0.0",
"primeflex": "^3.1.0",
"primeicons": "^5.0.0",
"prismjs": "1.20.0",
"quill": "1.3.7",
"rxjs": "~7.4.0",
"rxjs": "~7.5.0",
"ts-node": "~8.3.0",
"tslib": "^2.3.0",
"tslint": "~6.1.0",
"typescript": "~4.4.3",
"typescript": "~4.7.2",
"xlsx": "^0.15.1",
"zone.js": "~0.11.4"
}
Expand Down
6 changes: 3 additions & 3 deletions src/app/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"module": "primeng.js",
"typings": "primeng.d.ts",
"peerDependencies": {
"@angular/core": "^13.0.0",
"@angular/common": "^13.0.0",
"@angular/forms": "^13.0.0",
"@angular/core": "^14.0.0",
"@angular/common": "^14.0.0",
"@angular/forms": "^14.0.0",
"rxjs": "^6.0.0 || ^7.0.0",
"zone.js": "^0.10.2 || ^0.11.0",
"primeicons": "^5.0.0"
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"target": "es2020",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"es2020",
"dom"
],
"paths": {
Expand Down

0 comments on commit a9261e4

Please sign in to comment.