Skip to content

Commit 636a845

Browse files
committed
refactor: components, containers
1 parent fceb4ba commit 636a845

35 files changed

+209
-1154
lines changed

CHANGELOG.md

Lines changed: 26 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,28 @@
11
## [vue](./README.md) version `changelog`
22

3-
##### `v1.0.10`
4-
- fix: `className` -> `class`
5-
- refactor: `<b-input-group-prepend>`
6-
- refactor: `<b-input-group-append>`
7-
- refactor: `<b-input-group-text>`
8-
- refactor: remove `<b-input-group-button>`
9-
- test: initial `Dashboard` unit test added
10-
- update: bootstrap-vue to `2.0.0-rc.1`
11-
- chore: dependencies update
12-
13-
###### `v1.0.9`
14-
- refactor: Sidebar structure
15-
- test: initial e2e test added
16-
- chore: dependencies update
17-
18-
###### `v1.0.8`
19-
- update: vue to `2.5.13`
20-
- update: Bootstrap to `4.0.0-beta.3`
21-
- update: bootstrap-vue to `1.4.0`
22-
- chore: dependencies update
23-
- refactor: `<b-table>` use the prop `responsive="sm"` instead of `class="table-responsive-sm"`
24-
- fix: `Vue warn:` Do not use built-in or reserved HTML elements as component id: (header, aside, footer, table)
25-
- feature: some Bootstrap4 components added
26-
- temp tweaks(b4 beta3): `InputGroupAddon` and `InputGroupButton`
27-
- refactor(checkboxes, radios, labels): temp tweaks
28-
- feat: mobile sidebar link click closes the sidebar [#18](https://github.com/mrholek/CoreUI-Vue/pull/18)
29-
30-
###### `v1.0.6`
31-
- refactor: raw html to `b-row`, `b-col`, `b-card`, `b-button` components
32-
- fix: Cards.vue: change `variant="accent-` to `class="card-accent-`
33-
- refactor: Modal's ok-button variants
34-
- refactor: forms with validation feedback
35-
- update: bootstrap-vue to `1.1.0`
36-
- update: to vue: `2.5.6`
37-
38-
###### `v1.0.5`
39-
- update: bootstrap-vue to `1.0.x`
40-
- fix: use `<b-form-radio-group>` instead of `<b-form-radio>` **[breaking change](https://bootstrap-vue.js.org/docs/components/form-radios)** :fire:
41-
- refactor: `<b-table>` bootstrap-vue component in `Tables` #24
42-
- refactor: extract `Table` component from `Tables`
43-
- refactor: `<b-table>` bootstrap-vue component in `Switches` #24
44-
- fix: add `table-responsive-sm` class to `Tables` #26
45-
- refactor: use component `<b-navbar-nav>` instead of deprecated prop `is-nav-bar`
46-
- fix: `b-progress` `height` property workaround (bootstrap-vue)
47-
- chore: dependencies update
48-
49-
###### `v1.0.4`
50-
- refactor: import Bootstrap 4 SCSS files from node_modules
51-
- fix: callouts styles
52-
53-
###### `v1.0.3`
54-
- update: Bootstrap version to `4.0.0-beta.2`
55-
- update: vue-chartjs to `3.0.0` **[breaking change](https://github.com/apertureless/vue-chartjs/releases/tag/v3.0.0)** :fire:
56-
57-
###### `v1.0.2`
58-
- update: to vue: `^2.5.x`
59-
- update: bootstrap-vue to `1.0.0-beta.9`
60-
- refactor: (vue `v2.5.x`) deprecated `<template scope="props">` replace with `<div slot-scope="props">`
61-
- refactor: `HeaderDropdown` component added to `Header`
62-
- refactor: `b-badge` component added (bootstrap-vue)
63-
- chore: `package.json` project dependencies update
64-
3+
##### `v2.0.0-alpha.0`
4+
- refactor: separation of concerns - (CoreUI template vs CoreUI components) prepare to use CoreUI as dependency
5+
- refactor: project structure change
6+
- refactor: moved to [vuejs-templates](http://vuejs-templates.github.io/webpack/)
7+
- chore: moved to [Semantic Versioning](https://semver.org/)
8+
- refactor: move to [CoreUI-Vue](https://github.com/coreui/coreui-vue) components `v2`
9+
- refactor: rename containers
10+
- refactor(Colors): view layout, sub-components
11+
- refactor(Switches): move to `Switch component v2`
12+
13+
other:
14+
15+
- feat: app-footer fixed
16+
- refactor(dashboard): brand-card, progress-group-bars
17+
- refactor(social-box-chart-example): props
18+
- feat(forms): new `<b-form-input type="date">` example added
19+
- refactor(cards): Card outline, Card accent - title variants added
20+
- feat: card-header-actions
21+
- feat(_nav): Navbars example added
22+
- update: vuejs-templates/webpack to v1.3.1
23+
- fix: eslint `valid template root`
24+
- refactor: card header title spacing
25+
- refactor: btn-brand
26+
- test(e2e): update
27+
- refactor: sidebar
28+
- refactor: chart examples

package.json

Lines changed: 28 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@coreui/vue",
2+
"name": "@coreui/coreui-free-vue-admin-template",
33
"version": "2.0.0-alpha.0",
44
"description": "Open Source Bootstrap Admin Template",
55
"author": "Łukasz Holeczek",
@@ -18,9 +18,12 @@
1818
},
1919
"dependencies": {
2020
"@coreui/coreui": "^2.0.1",
21+
"@coreui/vue": "^2.0.0-alpha.0",
2122
"bootstrap": "^4.1.1",
22-
"bootstrap-vue": "^2.0.0-rc.9",
23+
"bootstrap-vue": "^2.0.0-rc.11",
2324
"chart.js": "^2.7.2",
25+
"core-js": "^2.5.6",
26+
"css-vars-ponyfill": "^1.7.2",
2427
"flag-icon-css": "^3.0.0",
2528
"font-awesome": "^4.7.0",
2629
"perfect-scrollbar": "^1.3.0",
@@ -31,30 +34,30 @@
3134
"vue-router": "^3.0.1"
3235
},
3336
"devDependencies": {
34-
"autoprefixer": "7.2.5",
35-
"babel-core": "^6.26.0",
36-
"babel-eslint": "^8.2.2",
37+
"autoprefixer": "^8.5.0",
38+
"babel-core": "^6.26.3",
39+
"babel-eslint": "^8.2.3",
3740
"babel-helper-vue-jsx-merge-props": "^2.0.3",
3841
"babel-loader": "^7.1.4",
3942
"babel-plugin-istanbul": "^4.1.6",
4043
"babel-plugin-syntax-jsx": "^6.18.0",
4144
"babel-plugin-transform-runtime": "^6.23.0",
4245
"babel-plugin-transform-vue-jsx": "^3.7.0",
43-
"babel-preset-env": "^1.6.1",
46+
"babel-preset-env": "^1.7.0",
4447
"babel-preset-stage-2": "^6.24.1",
4548
"babel-register": "^6.26.0",
4649
"chai": "^4.1.2",
47-
"chalk": "^2.3.2",
48-
"chromedriver": "^2.37.0",
49-
"copy-webpack-plugin": "^4.3.1",
50-
"cross-env": "^5.1.4",
50+
"chalk": "^2.4.1",
51+
"chromedriver": "^2.38.3",
52+
"copy-webpack-plugin": "^4.5.1",
53+
"cross-env": "^5.1.5",
5154
"cross-spawn": "^6.0.5",
5255
"css-loader": "^0.28.11",
5356
"eslint": "^4.19.1",
5457
"eslint-config-standard": "^11.0.0",
5558
"eslint-friendly-formatter": "^3.0.0",
5659
"eslint-loader": "^2.0.0",
57-
"eslint-plugin-import": "^2.10.0",
60+
"eslint-plugin-import": "^2.12.0",
5861
"eslint-plugin-node": "^6.0.1",
5962
"eslint-plugin-promise": "^3.6.0",
6063
"eslint-plugin-standard": "^3.0.1",
@@ -64,40 +67,40 @@
6467
"friendly-errors-webpack-plugin": "^1.7.0",
6568
"html-webpack-plugin": "^2.30.1",
6669
"inject-loader": "^3.0.1",
67-
"karma": "^2.0.0",
68-
"karma-coverage": "^1.1.1",
70+
"karma": "^2.0.2",
71+
"karma-coverage": "^1.1.2",
6972
"karma-mocha": "^1.3.0",
7073
"karma-phantomjs-launcher": "^1.0.4",
7174
"karma-phantomjs-shim": "^1.5.0",
72-
"karma-sinon-chai": "^1.3.3",
75+
"karma-sinon-chai": "^1.3.4",
7376
"karma-sourcemap-loader": "^0.3.7",
7477
"karma-spec-reporter": "^0.0.32",
7578
"karma-webpack": "^2.0.9",
76-
"mocha": "^5.0.5",
77-
"nightwatch": "0.9.20",
79+
"mocha": "^5.2.0",
80+
"nightwatch": "^1.0.6",
7881
"node-notifier": "^5.1.2",
79-
"node-sass": "^4.8.3",
82+
"node-sass": "^4.9.0",
8083
"optimize-css-assets-webpack-plugin": "^3.2.0",
81-
"ora": "^2.0.0",
84+
"ora": "^2.1.0",
8285
"phantomjs-prebuilt": "^2.1.16",
8386
"portfinder": "^1.0.13",
8487
"postcss-import": "^11.1.0",
85-
"postcss-loader": "^2.1.3",
88+
"postcss-loader": "^2.1.5",
8689
"postcss-url": "^7.3.2",
8790
"rimraf": "^2.6.2",
8891
"sass-loader": "^6.0.7",
89-
"selenium-server": "3.11.0",
92+
"selenium-server": "^3.12.0",
9093
"semver": "^5.5.0",
91-
"shelljs": "^0.8.1",
94+
"shelljs": "^0.8.2",
9295
"sinon": "^4.5.0",
9396
"sinon-chai": "^2.14.0",
94-
"uglifyjs-webpack-plugin": "^1.1.1",
97+
"uglifyjs-webpack-plugin": "^1.2.5",
9598
"url-loader": "^1.0.1",
9699
"vue-loader": "^14.2.2",
97100
"vue-style-loader": "^4.1.0",
98101
"vue-template-compiler": "^2.5.16",
99-
"webpack": "^3.6.0",
100-
"webpack-bundle-analyzer": "^2.11.1",
102+
"webpack": "^3.12.0",
103+
"webpack-bundle-analyzer": "^2.13.0",
101104
"webpack-dev-server": "^2.11.2",
102105
"webpack-merge": "^4.1.2"
103106
},
@@ -108,6 +111,6 @@
108111
"browserslist": [
109112
"> 1%",
110113
"last 2 versions",
111-
"not ie <= 8"
114+
"not ie <= 9"
112115
]
113116
}

src/components/Aside/Aside.vue

Lines changed: 0 additions & 48 deletions
This file was deleted.

src/components/Aside/AsideToggler.vue

Lines changed: 0 additions & 55 deletions
This file was deleted.

src/components/Aside/index.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

src/components/Breadcrumb/Breadcrumb.vue

Lines changed: 0 additions & 34 deletions
This file was deleted.

src/components/Callout/Callout.vue

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)