Skip to content

Commit 5e9af89

Browse files
authored
Merge pull request #440 from coreui/dev-vnext
v2.1.7
2 parents ec7fd3f + 0d4befa commit 5e9af89

Some content is hidden

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

62 files changed

+338
-370
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## v2.1.7
2+
- fix(pug): crossplatform use `path.sep` instead of `/` - thanks @vasilevich
3+
- update: `@coreui/coreui` to `2.0.21`
4+
- feat(sidebar): mobile clickout behaviour
5+
- fix(layout): sidebar on mobile issue [#23](https://github.com/coreui/coreui-angular/issues/23)
6+
- fix: sidebar, sidebar-minimizer `rtl` ie issues, tweaks
7+
- refactor(sidebar.js): ps minor cleanup
8+
- update: `flag-icon-css` to `3.2.1`
9+
- update: `autoprefixer` to `9.3.1`
10+
- update: `js-beautify` to `1.8.8`
11+
- update: `postcss-cli` to `6.0.1`
12+
- update: `stylelint-scss` to `3.3.2`
13+
114
## v2.1.6
215
- fix(cards): smooth collapse card - thanks @MartijnBastiaansen #378
316
- fix(header): migrate `.divider` to `.dropdown-divider` - thanks @vanam #406

package-lock.json

+44-61
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/coreui-free-bootstrap-admin-template",
3-
"version": "2.1.6",
3+
"version": "2.1.7",
44
"description": "Free Bootstrap Admin Template",
55
"keywords": [
66
"admin",
@@ -63,13 +63,13 @@
6363
"watch-pug": "nodemon -e pug -x \"npm run pug\""
6464
},
6565
"dependencies": {
66-
"@coreui/coreui": "^2.0.19",
66+
"@coreui/coreui": "^2.0.21",
6767
"@coreui/coreui-plugin-chartjs-custom-tooltips": "1.2.0",
6868
"@coreui/icons": "0.3.0",
6969
"bootstrap": "4.1.3",
7070
"chart.js": "2.7.3",
7171
"core-js": "^2.5.7",
72-
"flag-icon-css": "3.2.0",
72+
"flag-icon-css": "^3.2.1",
7373
"font-awesome": "4.7.0",
7474
"jquery": "3.3.1",
7575
"pace-progress": "1.0.2",
@@ -82,7 +82,7 @@
8282
"@babel/core": "^7.1.2",
8383
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
8484
"@babel/preset-env": "^7.1.0",
85-
"autoprefixer": "^9.2.0",
85+
"autoprefixer": "^9.3.1",
8686
"babel-eslint": "^10.0.1",
8787
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
8888
"browser-sync": "^2.26.3",
@@ -93,19 +93,19 @@
9393
"eslint": "^5.7.0",
9494
"eslint-plugin-compat": "^2.6.2",
9595
"foreach-cli": "^1.8.1",
96-
"js-beautify": "^1.8.7",
96+
"js-beautify": "^1.8.8",
9797
"node-sass": "^4.9.4",
9898
"nodemon": "^1.18.4",
9999
"npm-run-all": "^4.1.3",
100-
"postcss-cli": "^6.0.0",
100+
"postcss-cli": "^6.0.1",
101101
"pug": "^2.0.3",
102102
"rimraf": "^2.6.2",
103103
"shelljs": "^0.8.2",
104104
"stylelint": "^9.6.0",
105105
"stylelint-config-recommended-scss": "^3.2.0",
106106
"stylelint-config-standard": "^18.2.0",
107107
"stylelint-order": "^1.0.0",
108-
"stylelint-scss": "^3.3.1"
108+
"stylelint-scss": "^3.3.2"
109109
},
110110
"engines": {
111111
"node": ">=6"

src/404.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.1.6
4+
* @version v2.1.7
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/500.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.1.6
4+
* @version v2.1.7
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/breadcrumb.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.1.6
4+
* @version v2.1.7
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/cards.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.1.6
4+
* @version v2.1.7
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/carousel.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.1.6
4+
* @version v2.1.7
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/collapse.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.1.6
4+
* @version v2.1.7
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/forms.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.1.6
4+
* @version v2.1.7
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/jumbotron.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.1.6
4+
* @version v2.1.7
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/list-group.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.1.6
4+
* @version v2.1.7
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/navs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.1.6
4+
* @version v2.1.7
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/pagination.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.1.6
4+
* @version v2.1.7
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/popovers.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.1.6
4+
* @version v2.1.7
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/progress.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE html>
22
<!--
33
* CoreUI - Free Bootstrap Admin Template
4-
* @version v2.1.6
4+
* @version v2.1.7
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

0 commit comments

Comments
 (0)