Skip to content

Commit f5895ee

Browse files
authored
Merge pull request #22 from coreui/dev-vnext
v2.1.1
2 parents 40c7e6f + 87b9ad5 commit f5895ee

File tree

4 files changed

+37
-20
lines changed

4 files changed

+37
-20
lines changed

Diff for: CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
### [@coreui/vue](https://coreui.io/) changelog
22

3+
##### v2.1.1
4+
- update `@vue/test-utils` to `^1.0.0-beta.28`
5+
- update `eslint` to `^5.12.0`
6+
- update `eslint-plugin-prettier` to `^3.0.1`
7+
- update `eslint-plugin-vue` to `^5.1.0`
8+
- update `husky` to `^1.3.1`
9+
- update `vue` to `^2.5.21`
10+
- update `vue-jest` to `^3.0.2`
11+
- update `vue-loader` to `^15.5.1`
12+
- update `vue-server-renderer` to `^2.5.21`
13+
- update `vue-template-compiler` to `^2.5.21`
14+
- update `jest-serializer-html` to `^6.0.0`
15+
- update `rollup` to `^0.68.2`
16+
317
##### v2.1.0
418
- feat(SidebarNavLink): attributes
519
- refactor(SidebarNav*): classes type [String, Array, Object]

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
[![Npm badge](https://img.shields.io/npm/v/@coreui/vue.svg)][npm]
44
[![NPM downloads][npm-download]][npm]
5-
![Rollup badge](https://img.shields.io/badge/Rollup-^0.67.4-ff69b4.svg)
5+
![Rollup badge](https://img.shields.io/badge/Rollup-^0.68.2-ff69b4.svg)
66
![Jest](https://img.shields.io/badge/Jest-^23.6.0-blue.svg)
7-
![Vue](https://img.shields.io/badge/Vue-^2.5.19-brightgreen.svg)
7+
![Vue](https://img.shields.io/badge/Vue-^2.5.21-brightgreen.svg)
88

99
[npm]: https://www.npmjs.com/package/@coreui/vue
1010
[npm-download]: https://img.shields.io/npm/dm/@coreui/vue.svg?style=flat-square

Diff for: package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@coreui/vue",
33
"description": "CoreUI Vue Bootstrap 4 layout components",
4-
"version": "2.1.0",
4+
"version": "2.1.1",
55
"license": "MIT",
66
"main": "dist/coreui-vue.common.js",
77
"module": "dist/coreui-vue.esm.js",
@@ -63,31 +63,31 @@
6363
"vue-perfect-scrollbar": "^0.1.0"
6464
},
6565
"devDependencies": {
66-
"@vue/test-utils": "^1.0.0-beta.27",
66+
"@vue/test-utils": "^1.0.0-beta.28",
6767
"babel-core": "^6.26.3",
6868
"babel-eslint": "^10.0.1",
6969
"babel-jest": "^23.6.0",
7070
"babel-plugin-dynamic-import-node": "^2.2.0",
7171
"babel-plugin-module-resolver": "^3.1.1",
7272
"babel-preset-vue-app": "^2.0.0",
73-
"eslint": "^5.10.0",
73+
"eslint": "^5.12.0",
7474
"eslint-config-prettier": "^3.3.0",
7575
"eslint-import-resolver-babel-module": "^4.0.0",
7676
"eslint-plugin-html": "^5.0.0",
7777
"eslint-plugin-import": "^2.14.0",
7878
"eslint-plugin-jest": "^22.1.2",
79-
"eslint-plugin-prettier": "^3.0.0",
80-
"eslint-plugin-vue": "^5.0.0",
81-
"husky": "^1.2.0",
79+
"eslint-plugin-prettier": "^3.0.1",
80+
"eslint-plugin-vue": "^5.1.0",
81+
"husky": "^1.3.1",
8282
"jest": "^23.6.0",
83-
"jest-serializer-html": "^5.0.0",
83+
"jest-serializer-html": "^6.0.0",
8484
"jest-serializer-vue": "^2.0.2",
8585
"jest-vue-preprocessor": "^1.4.0",
8686
"lint-staged": "^8.1.0",
8787
"lodash": "^4.17.11",
8888
"node-sass": "^4.11.0",
8989
"prettier": "^1.15.3",
90-
"rollup": "^0.67.4",
90+
"rollup": "^0.68.2",
9191
"rollup-plugin-babel": "^3.0.7",
9292
"rollup-plugin-commonjs": "^9.2.0",
9393
"rollup-plugin-filesize": "^5.0.1",
@@ -99,12 +99,12 @@
9999
"rollup-plugin-vue": "^4.3.2",
100100
"sass-loader": "^7.1.0",
101101
"uglify-es": "^3.3.9",
102-
"vue": "^2.5.19",
103-
"vue-jest": "^3.0.1",
104-
"vue-loader": "^15.4.2",
102+
"vue": "^2.5.21",
103+
"vue-jest": "^3.0.2",
104+
"vue-loader": "^15.5.1",
105105
"vue-router": "^3.0.2",
106-
"vue-server-renderer": "^2.5.19",
107-
"vue-template-compiler": "^2.5.19"
106+
"vue-server-renderer": "^2.5.21",
107+
"vue-template-compiler": "^2.5.21"
108108
},
109109
"peerDependencies": {
110110
"@coreui/coreui": "^2.1.4"

Diff for: src/components/Sidebar/SidebarNavLabel.vue

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
<template>
22
<SidebarNavItem :classes="classList.navItem">
3-
<a :class="classList.navLink" :href="url"><i :class="classList.icon"></i> {{name}}</a>
3+
<a
4+
:class="classList.navLink"
5+
:href="url"
6+
>
7+
<i :class="classList.icon" /> {{ name }}
8+
</a>
49
</SidebarNavItem>
510
</template>
611

712
<script>
813
import SidebarNavItem from './SidebarNavItem'
9-
import SidebarNavLink from './SidebarNavLink'
1014
export default {
11-
name: 'sidebar-nav-label',
15+
name: 'SidebarNavLabel',
1216
components: {
13-
SidebarNavItem,
14-
SidebarNavLink
17+
SidebarNavItem
1518
},
1619
props: {
1720
name: {

0 commit comments

Comments
 (0)