Skip to content

Commit 07e8192

Browse files
authored
Merge pull request #469 from coreui/dev-vnext
v2.1.12
2 parents c31b402 + 0350d9f commit 07e8192

Some content is hidden

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

65 files changed

+1297
-1100
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## v2.1.12
2+
- chore(build/vendors): removes hash tag from urls in css files #460 - thanks @mgsmus
3+
- update: `@coreui/coreui` to `^2.1.7`
4+
- update: `bootstrap` to `^4.3.1`
5+
- update: `core-js` to `^2.6.5`
6+
- update: `popper.js` to `^1.14.7`
7+
- update: `@babel/core` to `^7.3.3`
8+
- update: `@babel/plugin-proposal-object-rest-spread` to `^7.3.2`
9+
- update: `@babel/preset-env` to `^7.3.1`
10+
- update: `autoprefixer` to `^9.4.8`
11+
- update: `eslint` to `^5.14.1`
12+
- update: `eslint-plugin-compat` to `^2.7.0`
13+
- update: `nodemon` to `^1.18.10`
14+
- update: `postcss-cli` to `^6.1.2`
15+
- update: `stylelint` to `^9.10.1`
16+
- update: `stylelint-scss` to `^3.5.3`
17+
118
## v2.1.11
219
- fix(collapse): add `mb-0` to accordion cards, thanks @ubugnu #449
320
- update: `@coreui/coreui` to `^2.1.5`

build/vendors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const findVendors = () => {
8989
let subVendor = []
9090
if (assetPath !== undefined) {
9191
// console.log(assetPath)
92-
const path = assetPath.replace(/\?.*/, '').replace(/\'|\"/, '')
92+
const path = assetPath.replace(/\?.*|#.*/, '').replace(/\'|\"/, '')
9393
subVendor['name'] = name
9494
subVendor['filetype'] = 'other'
9595
subVendor['src'] = normalize(`css/${path}`)

package-lock.json

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

package.json

+15-15
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.11",
3+
"version": "2.1.12",
44
"description": "Free Bootstrap Admin Template",
55
"keywords": [
66
"admin",
@@ -63,49 +63,49 @@
6363
"watch-pug": "nodemon -e pug -x \"npm run pug\""
6464
},
6565
"dependencies": {
66-
"@coreui/coreui": "^2.1.5",
66+
"@coreui/coreui": "^2.1.7",
6767
"@coreui/coreui-plugin-chartjs-custom-tooltips": "1.2.0",
6868
"@coreui/icons": "0.3.0",
69-
"bootstrap": "^4.2.1",
69+
"bootstrap": "^4.3.1",
7070
"chart.js": "2.7.3",
71-
"core-js": "^2.6.1",
71+
"core-js": "^2.6.5",
7272
"flag-icon-css": "^3.2.1",
7373
"font-awesome": "4.7.0",
7474
"jquery": "3.3.1",
7575
"pace-progress": "1.0.2",
7676
"perfect-scrollbar": "^1.4.0",
77-
"popper.js": "^1.14.6",
77+
"popper.js": "^1.14.7",
7878
"simple-line-icons": "2.4.1"
7979
},
8080
"devDependencies": {
8181
"@babel/cli": "^7.2.3",
82-
"@babel/core": "^7.2.2",
83-
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
84-
"@babel/preset-env": "^7.2.3",
85-
"autoprefixer": "^9.4.4",
82+
"@babel/core": "^7.3.3",
83+
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
84+
"@babel/preset-env": "^7.3.1",
85+
"autoprefixer": "^9.4.8",
8686
"babel-eslint": "^10.0.1",
8787
"babel-plugin-transform-es2015-modules-strip": "^0.1.1",
8888
"browser-sync": "^2.26.3",
8989
"chalk": "^2.4.2",
9090
"clean-css-cli": "^4.2.1",
9191
"copyfiles": "^2.1.0",
9292
"cross-env": "^5.2.0",
93-
"eslint": "^5.12.0",
94-
"eslint-plugin-compat": "^2.6.3",
93+
"eslint": "^5.14.1",
94+
"eslint-plugin-compat": "^2.7.0",
9595
"foreach-cli": "^1.8.1",
9696
"js-beautify": "^1.8.9",
9797
"node-sass": "^4.11.0",
98-
"nodemon": "^1.18.9",
98+
"nodemon": "^1.18.10",
9999
"npm-run-all": "^4.1.5",
100-
"postcss-cli": "^6.1.1",
100+
"postcss-cli": "^6.1.2",
101101
"pug": "^2.0.3",
102102
"rimraf": "^2.6.3",
103103
"shelljs": "^0.8.3",
104-
"stylelint": "^9.9.0",
104+
"stylelint": "^9.10.1",
105105
"stylelint-config-recommended-scss": "^3.2.0",
106106
"stylelint-config-standard": "^18.2.0",
107107
"stylelint-order": "^2.0.0",
108-
"stylelint-scss": "^3.4.4"
108+
"stylelint-scss": "^3.5.3"
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.11
4+
* @version v2.1.12
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.11
4+
* @version v2.1.12
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.11
4+
* @version v2.1.12
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.11
4+
* @version v2.1.12
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.11
4+
* @version v2.1.12
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.11
4+
* @version v2.1.12
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.11
4+
* @version v2.1.12
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.11
4+
* @version v2.1.12
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.11
4+
* @version v2.1.12
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.11
4+
* @version v2.1.12
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.11
4+
* @version v2.1.12
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.11
4+
* @version v2.1.12
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.11
4+
* @version v2.1.12
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/scrollspy.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.11
4+
* @version v2.1.12
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/switches.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.11
4+
* @version v2.1.12
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/tables.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.11
4+
* @version v2.1.12
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/tabs.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.11
4+
* @version v2.1.12
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/base/tooltips.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.11
4+
* @version v2.1.12
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/blank.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.11
4+
* @version v2.1.12
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/buttons/brand-buttons.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.11
4+
* @version v2.1.12
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/buttons/button-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.11
4+
* @version v2.1.12
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/buttons/buttons.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.11
4+
* @version v2.1.12
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/buttons/dropdowns.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.11
4+
* @version v2.1.12
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/charts.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.11
4+
* @version v2.1.12
55
* @link https://coreui.io
66
* Copyright (c) 2018 creativeLabs Łukasz Holeczek
77
* Licensed under MIT (https://coreui.io/license)

src/colors.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.11
4+
* @version v2.1.12
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)