Skip to content

v2.1.2 #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
### [@coreui/vue](https://coreui.io/) changelog

##### v2.1.2
- update `babel-plugin-module-resolver` to `^3.1.2`
- update `eslint-config-prettier` to `^3.5.0`
- update `eslint-plugin-jest` to `^22.1.3`
- update `rollup-plugin-uglify` to `^6.0.1`
- update `vue` to `^2.5.22`
- update `vue-server-renderer` to `^2.5.22`
- update `vue-template-compiler` to `^2.5.22`
- lock `rollup-plugin-vue` on `4.3.2`

##### v2.1.1
- update `@vue/test-utils` to `^1.0.0-beta.28`
- update `eslint` to `^5.12.0`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![NPM downloads][npm-download]][npm]
![Rollup badge](https://img.shields.io/badge/Rollup-^0.68.2-ff69b4.svg)
![Jest](https://img.shields.io/badge/Jest-^23.6.0-blue.svg)
![Vue](https://img.shields.io/badge/Vue-^2.5.21-brightgreen.svg)
![Vue](https://img.shields.io/badge/Vue-^2.5.22-brightgreen.svg)

[npm]: https://www.npmjs.com/package/@coreui/vue
[npm-download]: https://img.shields.io/npm/dm/@coreui/vue.svg?style=flat-square
Expand Down
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@coreui/vue",
"description": "CoreUI Vue Bootstrap 4 layout components",
"version": "2.1.1",
"version": "2.1.2",
"license": "MIT",
"main": "dist/coreui-vue.common.js",
"module": "dist/coreui-vue.esm.js",
Expand Down Expand Up @@ -68,14 +68,14 @@
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-module-resolver": "^3.1.2",
"babel-preset-vue-app": "^2.0.0",
"eslint": "^5.12.0",
"eslint-config-prettier": "^3.3.0",
"eslint-config-prettier": "^3.5.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-vue": "^5.1.0",
"husky": "^1.3.1",
Expand All @@ -95,16 +95,16 @@
"rollup-plugin-license": "^0.7.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.0",
"rollup-plugin-vue": "^4.3.2",
"rollup-plugin-uglify": "^6.0.1",
"rollup-plugin-vue": "4.3.2",
"sass-loader": "^7.1.0",
"uglify-es": "^3.3.9",
"vue": "^2.5.21",
"vue": "^2.5.22",
"vue-jest": "^3.0.2",
"vue-loader": "^15.5.1",
"vue-router": "^3.0.2",
"vue-server-renderer": "^2.5.21",
"vue-template-compiler": "^2.5.21"
"vue-server-renderer": "^2.5.22",
"vue-template-compiler": "^2.5.22"
},
"peerDependencies": {
"@coreui/coreui": "^2.1.4"
Expand Down
3 changes: 2 additions & 1 deletion src/components/__tests__/SidebarNavLabel.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ describe("SidebarNavLabel.vue", () => {
expect(wrapper.props().url).toBe('')
expect(wrapper.props().icon).toBe('fa fa-circle')
});
it('has hasSlotDefault computed property', () => {
it('has computed properties', () => {
expect(typeof SidebarNavLabel.computed.classList).toBe('function')
expect(typeof SidebarNavLabel.computed.itemClasses).toBe('function')
})
it('renders correctly', () => {
const wrapper = mount(SidebarNavLabel, {
propsData: {
name: 'test',
label: { variant: 'info' },
icon: 'fa fa-circle'
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ exports[`SidebarNavLabel.vue renders correctly 1`] = `
<i
class="fa fa-circle text-info "
/>

test

</a>
</li>
`;