|
1 | 1 | ## [CoreUI for Vue.js](./README.md) version `changelog`
|
2 | 2 |
|
| 3 | +##### `v2.1.0` |
| 4 | +- feat(SidebarNav): navLink `attributes` - optional JS object with valid JS API naming: |
| 5 | + - attributes: `rel`, `target`, `hidden`, `disabled`, etc... |
| 6 | + - starting with `@coreui/coreui ^2.1.4`, `@coreui/vue ^2.1.0` |
| 7 | + - item example(`./src/_nav.js`): |
| 8 | +``` |
| 9 | +{ |
| 10 | + name: 'Disabled', |
| 11 | + url: '/disabled', |
| 12 | + icon: 'icon-ban', |
| 13 | + attributes: { disabled: true }, |
| 14 | +}, |
| 15 | +{ |
| 16 | + name: 'Try CoreUI PRO', |
| 17 | + url: 'https://coreui.io/pro/react/', |
| 18 | + icon: 'cui-layers icons', |
| 19 | + variant: 'danger', |
| 20 | + attributes: { target: '_blank', rel: "noopener" }, |
| 21 | +}, |
| 22 | +``` |
| 23 | +- test: e2e and snapshots update |
| 24 | +- chore: update `@coreui/coreui` to `^2.1.4` |
| 25 | +- chore: update `@coreui/vue` to `^2.1.0` |
| 26 | +- chore: update `core-js` to `^2.6.0` |
| 27 | +- chore: update `css-vars-ponyfill` to `^1.15.3` |
| 28 | +- chore: update `vue` to `^2.5.19` |
| 29 | +- chore: update `vue-router` to `^3.0.2" |
| 30 | +- chore: update `vue-template-compiler` to `^2.5.19` |
| 31 | +- chore: update `@vue/cli-plugin-babel` to `^3.2.0` |
| 32 | +- chore: update `@vue/cli-plugin-e2e-nightwatch` to `^3.2.0` |
| 33 | +- chore: update `@vue/cli-plugin-eslint` to `^3.2.1` |
| 34 | +- chore: update `@vue/cli-plugin-unit-jest` to `^3.2.0` |
| 35 | +- chore: update `@vue/cli-service` to `^3.2.0` |
| 36 | +- chore: update `@vue/test-utils` to `^1.0.0-beta.27` |
| 37 | +- chore: update `node-sass` to `^4.11.0` |
| 38 | + |
3 | 39 | ##### `v2.0.3`
|
4 | 40 | - test(init): update Tables snapshot
|
5 | 41 | - test(e2e): add `aside-menu-*-show` testing
|
|
0 commit comments