Skip to content

Commit 552534b

Browse files
committed
angular 13 update, changelogs, .gitignore updated, fixed plugin cosmetic issue fixed
1 parent 5ae88d2 commit 552534b

File tree

11 files changed

+81
-49
lines changed

11 files changed

+81
-49
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
npm-debug.log
3333
testem.log
3434
/typings
35+
/.angular
3536

3637
# e2e
3738
/e2e/*.js
@@ -40,3 +41,4 @@ testem.log
4041
# System Files
4142
.DS_Store
4243
Thumbs.db
44+
package-lock.json

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [2.3.0] 2022-05-02
2+
### Updates
3+
- update to Angular 13
4+
- update all dependencies to match Angular 13 version
5+
- fixed cosmetic issue
16
## [2.2.0] 2020-10-08
27
### Updates
38
- update to Angular 10

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# [Paper Dashboard Angular](https://www.creative-tim.com/product/paper-dashboard-angular)
2-
![version](https://img.shields.io/badge/version-2.2.0-blue.svg) ![license](https://img.shields.io/badge/license-MIT-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/creativetimofficial/paper-dashboard-angular.svg?maxAge=2592000)]() [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/creativetimofficial/paper-dashboard-angular.svg?maxAge=2592000)]() [![Chat](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/E4aHAQy)
2+
![version](https://img.shields.io/badge/version-2.3.0-blue.svg) ![license](https://img.shields.io/badge/license-MIT-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/creativetimofficial/paper-dashboard-angular.svg?maxAge=2592000)]() [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/creativetimofficial/paper-dashboard-angular.svg?maxAge=2592000)]() [![Chat](https://img.shields.io/badge/chat-on%20discord-7289da.svg)](https://discord.gg/E4aHAQy)
33

44
![Product Gif](https://raw.githubusercontent.com/creativetimofficial/public-assets/master/paper-dashboard-angular/paper-dashboard-angular.gif)
55

angular.json

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@
3535
"optimization": true,
3636
"outputHashing": "all",
3737
"sourceMap": false,
38-
"extractCss": true,
3938
"namedChunks": false,
40-
"aot": true,
4139
"extractLicenses": true,
4240
"vendorChunk": false,
4341
"buildOptimizer": true,
@@ -47,6 +45,22 @@
4745
"with": "src/environments/environment.prod.ts"
4846
}
4947
]
48+
},
49+
"development": {
50+
"vendorChunk": true,
51+
"extractLicenses": false,
52+
"sourceMap": true,
53+
"namedChunks": true,
54+
"buildOptimizer": false,
55+
"optimization": {
56+
"scripts": true,
57+
"styles": {
58+
"minify": false,
59+
"inlineCritical": true
60+
},
61+
"fonts": true
62+
},
63+
"outputHashing": "all"
5064
}
5165
}
5266
},
@@ -58,7 +72,11 @@
5872
"configurations": {
5973
"production": {
6074
"browserTarget": "pd-free-angularcli:build:production"
61-
}
75+
},
76+
"development": {
77+
"browserTarget": "pd-free-angularcli:build:development"
78+
},
79+
"defaultConfiguration": "development"
6280
}
6381
},
6482
"extract-i18n": {

documentation/css/paper-dashboard.css

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

documentation/tutorial-components.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<h1 class="title">
6969
Paper Dashboard Angular
7070
</h1>
71-
<h3 class="description">Documentation v2.2.0</h3>
71+
<h3 class="description">Documentation v2.3.0</h3>
7272
<br/>
7373
<a href="https://demos.creative-tim.com/paper-dashboard-angular/#/documentation/tutorial" class="btn btn-primary btn-round btn-lg">View documentation</a>
7474
</div>

package.json

Lines changed: 41 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "paper-dashboard-angular",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"license": "MIT",
55
"scripts": {
66
"ng": "ng",
@@ -13,53 +13,57 @@
1313
},
1414
"private": true,
1515
"dependencies": {
16-
"@angular/animations": "10.1.5",
17-
"@angular/common": "10.1.5",
18-
"@angular/compiler": "10.1.5",
19-
"@angular/core": "10.1.5",
20-
"@angular/forms": "10.1.5",
21-
"@angular/localize": "^10.1.5",
22-
"@angular/platform-browser": "10.1.5",
23-
"@angular/platform-browser-dynamic": "10.1.5",
24-
"@angular/router": "10.1.5",
25-
"@ng-bootstrap/ng-bootstrap": "7.0.0",
16+
"@angular/animations": "^13.2.6",
17+
"@angular/cdk": "^13.2.6",
18+
"@angular/common": "^13.2.6",
19+
"@angular/compiler": "^13.2.6",
20+
"@angular/core": "^13.2.6",
21+
"@angular/elements": "^13.2.6",
22+
"@angular/forms": "^13.2.6",
23+
"@angular/google-maps": "^13.3.3",
24+
"@angular/localize": "^13.2.6",
25+
"@angular/material": "^13.2.6",
26+
"@angular/platform-browser": "^13.2.6",
27+
"@angular/platform-browser-dynamic": "^13.2.6",
28+
"@angular/router": "^13.2.6",
29+
"@ng-bootstrap/ng-bootstrap": "12.0.1",
30+
"@popperjs/core": "^2.11.4",
2631
"@ngui/map": "0.30.3",
2732
"@types/googlemaps": "3.39.14",
2833
"arrive": "2.4.1",
2934
"bootstrap": "4.5.2",
3035
"bootstrap-notify": "3.1.3",
31-
"chart.js": "2.9.3",
36+
"chart.js": "2.9.4",
3237
"chartist": "0.11.4",
33-
"core-js": "3.6.5",
34-
"express": "4.17.1",
38+
"core-js": "3.21.1",
39+
"express": "4.18.0",
3540
"jquery": "3.5.1",
3641
"moment": "2.29.1",
37-
"ngx-toastr": "13.1.0",
38-
"rxjs": "6.6.3",
39-
"tslib": "2.0.2",
40-
"zone.js": "0.11.1"
42+
"ngx-toastr": "14.3.0",
43+
"rxjs": "^7.5.5",
44+
"zone.js": "~0.11.5"
4145
},
4246
"devDependencies": {
43-
"@angular-devkit/build-angular": "0.1001.5",
44-
"@angular/cli": "10.1.5",
45-
"@angular/compiler-cli": "10.1.5",
46-
"@types/bootstrap": "5.0.0",
47+
"@angular-devkit/build-angular": "^13.2.6",
48+
"@angular/cli": "^13.2.6",
49+
"@angular/compiler-cli": "^13.2.6",
50+
"@angular/language-service": "13.2.6",
51+
"@types/jasmine": "~3.10.3",
52+
"@types/jasminewd2": "~2.0.10",
4753
"@types/chartist": "0.11.0",
48-
"@types/jasmine": "3.5.14",
49-
"@types/jquery": "3.5.2",
50-
"@types/node": "14.11.5",
51-
"codelyzer": "6.0.1",
52-
"jasmine-core": "3.6.0",
53-
"jasmine-spec-reporter": "6.0.0",
54-
"karma": "5.2.3",
55-
"karma-chrome-launcher": "3.1.0",
56-
"karma-cli": "2.0.0",
57-
"karma-coverage-istanbul-reporter": "3.0.3",
58-
"karma-jasmine": "4.0.1",
59-
"karma-jasmine-html-reporter": "1.5.4",
54+
"@types/jquery": "3.5.1",
55+
"@types/node": "16.3.2",
56+
"codelyzer": "6.0.2",
57+
"jasmine-core": "~4.0.1",
58+
"jasmine-spec-reporter": "~7.0.0",
59+
"karma": "^6.3.17",
60+
"karma-chrome-launcher": "~3.1.1",
61+
"karma-coverage": "^2.2.0",
62+
"karma-coverage-istanbul-reporter": "~3.0.3",
63+
"karma-jasmine": "~4.0.1",
64+
"karma-jasmine-html-reporter": "^1.7.0",
6065
"protractor": "7.0.0",
61-
"ts-node": "9.0.0",
62-
"tslint": "6.1.3",
63-
"typescript": "4.0.3"
66+
"ts-node": "~10.7.0",
67+
"typescript": "~4.4.2"
6468
}
6569
}

src/app/app.routing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const AppRoutes: Routes = [
1313
children: [
1414
{
1515
path: '',
16-
loadChildren: './layouts/admin-layout/admin-layout.module#AdminLayoutModule'
16+
loadChildren: () => import('./layouts/admin-layout/admin-layout.module').then(x => x.AdminLayoutModule)
1717
}]},
1818
{
1919
path: '**',

src/assets/scss/paper-dashboard.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
33
=========================================================
4-
* Paper Dashboard Angular - v2.2.0
4+
* Paper Dashboard Angular - v2.3.0
55
=========================================================
66
77
* Product Page: https://www.creative-tim.com/product/paper-dashboard-angular

src/assets/scss/paper-dashboard/_misc.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,3 +148,6 @@ a[data-toggle="collapse"][aria-expanded="true"] .caret,
148148
}
149149
}
150150
}
151+
.fixed-plugin .dropdown-menu {
152+
right: 70px !important;
153+
}

0 commit comments

Comments
 (0)