Skip to content

Commit 6806fd5

Browse files
author
Elissandro Mendes
authored
Merge pull request #1 from coreui/master
Atualizando Fork!
2 parents 1970e64 + e170d22 commit 6806fd5

File tree

317 files changed

+5300
-47491
lines changed

Some content is hidden

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

317 files changed

+5300
-47491
lines changed
Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1+
# Editor configuration, see http://editorconfig.org
12
root = true
23

34
[*]
45
charset = utf-8
5-
indent_style = space
6-
indent_size = 2
76
end_of_line = lf
7+
indent_size = 2
8+
indent_style = space
89
insert_final_newline = true
910
trim_trailing_whitespace = true
11+
12+
[*.md]
13+
max_line_length = off
14+
trim_trailing_whitespace = false

.eslintrc.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
'extends': [
7+
'plugin:vue/essential',
8+
'eslint:recommended'
9+
],
10+
rules: {
11+
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
12+
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
13+
},
14+
parserOptions: {
15+
parser: 'babel-eslint'
16+
}
17+
}

.gitignore

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
.DS_Store
2+
node_modules
3+
package-lock.json
4+
/dist
5+
6+
/tests/e2e/reports/
7+
selenium-debug.log
8+
9+
# local env files
10+
.env.local
11+
.env.*.local
12+
13+
# Log files
14+
npm-debug.log*
15+
yarn-debug.log*
16+
yarn-error.log*
17+
18+
# Editor directories and files
219
.idea
3-
node_modules/
4-
dist/
5-
test/unit/coverage
6-
test/e2e/reports
20+
.vscode
21+
*.suo
22+
*.ntvs*
23+
*.njsproj
24+
*.sln
25+
*.sw*

.postcssrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
plugins: {
3+
autoprefixer: {}
4+
}
5+
}

CHANGELOG.md

Lines changed: 69 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,83 @@
11
## [vue](./README.md) version `changelog`
22

3-
##### `v1.0.13`
4-
- fix: rollback `optimize-css-assets-webpack-plugin` to `^3.2.0`
5-
- refactor: App.vue scss/css imports cleanup
6-
- chore: dependencies update
3+
##### `v2.0.0-beta.6`
4+
- fix: typo `DafaultAside` to `DefaultAside` - thanks @DamianLion
5+
- feat(router): `Users/User Details` Breadcrumb example with `/users/:id`
6+
- refactor(router): add dynamic imports for Webpack code splitting
7+
- refactor: remove empty `<style>` sections from `vue` files
8+
- refactor(Pages): add `b-form`, `b-form-input` and `autocomplete` to Login
9+
- refactor(Pages): add `b-form`, `b-form-input` and `autocomplete` to Register
10+
- chore: update `@coreui/coreui` to `2.0.3`
11+
- chore: update `@vue/cli-plugin-babel` to `3.0.0-rc.3`
12+
- chore: update `@vue/cli-plugin-e2e-nightwatch` to `3.0.0-rc.3`
13+
- chore: update `@vue/cli-plugin-eslint` to `3.0.0-rc.3`
14+
- chore: update `@vue/cli-plugin-unit-jest` to `3.0.0-rc.3`
15+
- chore: update `@vue/cli-service` to `3.0.0-rc.3`
16+
- chore: update `@vue/test-utils` to `3.0.0-rc.3`
17+
- chore: update `babel-jest` to `23.2.0`
718

8-
##### `v1.0.12`
9-
- refactor(Aside): b-tab title with icon issue
10-
- chore: dependencies update
11-
- refactor(pages): `<b-input-group-prepend>`, `<b-input-group-text>`
12-
- refactor(dashboard): `<b-form-radio-group>`
13-
- fix(widgets): props spacing
14-
- refactor: `router/index/ja` minor tweaks
15-
- refactor: rename components `c-aside`, `c-footer`
16-
- refactor(breadcrumb): add `:key` porp
17-
- feat(forms): datepicker input `<b-form-input type="date">`
19+
##### `v2.0.0-beta.5`
20+
- chore: move tooling to `vue-cli v3.0.0-rc.2`
21+
- refactor: move from `static/img` to `public/img` dir
22+
- refactor: move `index.thml` to `public` dir
23+
- refactor: move to Jest testing
24+
- tests: fix e2e, unit
1825

19-
##### `v1.0.11`
20-
- refactor: project directory structure
21-
- update: vuejs-templates/webpack to `1.3.1`
22-
- update: vue to `2.5.13`
26+
##### `v2.0.0-beta.4`
2327
- chore: dependencies update
2428

25-
##### `v1.0.10`
26-
- fix: `className` -> `class`
27-
- refactor: `<b-input-group-prepend>`
28-
- refactor: `<b-input-group-append>`
29-
- refactor: `<b-input-group-text>`
30-
- refactor: remove `<b-input-group-button>`
31-
- test: initial `Dashboard` unit test added
32-
- update: bootstrap-vue to `2.0.0-rc.1`
33-
- chore: dependencies update
29+
##### `v2.0.0-beta.3`
30+
- refactor: `getStyles()` back to `@coreui/coreui` version `^2.0.2`
31+
- fix(Dashboard): `width` card-line*-chart-example `ie` issue
3432

35-
###### `v1.0.9`
36-
- refactor: Sidebar structure
37-
- test: initial e2e test added
33+
##### `v2.0.0-beta.2`
34+
- refactor: `HeaderDropdown` with new slots `header` and `dropdown` *breaking change*
35+
- chore: update `@coreui/vue` to `2.0.0-beta.1`
3836
- chore: dependencies update
3937

40-
###### `v1.0.8`
41-
- update: vue to `2.5.13`
42-
- update: Bootstrap to `4.0.0-beta.3`
43-
- update: bootstrap-vue to `1.4.0`
44-
- chore: dependencies update
45-
- refactor: `<b-table>` use the prop `responsive="sm"` instead of `class="table-responsive-sm"`
46-
- fix: `Vue warn:` Do not use built-in or reserved HTML elements as component id: (header, aside, footer, table)
47-
- feature: some Bootstrap4 components added
48-
- temp tweaks(b4 beta3): `InputGroupAddon` and `InputGroupButton`
49-
- refactor(checkboxes, radios, labels): temp tweaks
50-
- feat: mobile sidebar link click closes the sidebar [#18](https://github.com/mrholek/CoreUI-Vue/pull/18)
38+
##### `v2.0.0-beta.1`
39+
- chore: update `@coreui/vue` to `2.0.0-beta.0`
5140

52-
###### `v1.0.6`
53-
- refactor: raw html to `b-row`, `b-col`, `b-card`, `b-button` components
54-
- fix: Cards.vue: change `variant="accent-` to `class="card-accent-`
55-
- refactor: Modal's ok-button variants
56-
- refactor: forms with validation feedback
57-
- update: bootstrap-vue to `1.1.0`
58-
- update: vue to `2.5.6`
41+
##### `v2.0.0-beta.0`
42+
- chore: update `core-js` to `2.5.7`
5943

60-
###### `v1.0.5`
61-
- update: bootstrap-vue to `1.0.x`
62-
- fix: use `<b-form-radio-group>` instead of `<b-form-radio>` **[breaking change](https://bootstrap-vue.js.org/docs/components/form-radios)** :fire:
63-
- refactor: `<b-table>` bootstrap-vue component in `Tables` #24
64-
- refactor: extract `Table` component from `Tables`
65-
- refactor: `<b-table>` bootstrap-vue component in `Switches` #24
66-
- fix: add `table-responsive-sm` class to `Tables` #26
67-
- refactor: use component `<b-navbar-nav>` instead of deprecated prop `is-nav-bar`
68-
- fix: `b-progress` `height` property workaround (bootstrap-vue)
44+
##### `v2.0.0-alpha.1`
45+
- refactor: separation of concerns - (CoreUI template/components) for use CoreUI as npm module
46+
- refactor: project structure change
47+
- refactor: moved to [vuejs-templates](http://vuejs-templates.github.io/webpack/)
48+
- chore: moved to [Semantic Versioning](https://semver.org/)
49+
- refactor: move to [CoreUI-Vue](https://github.com/coreui/coreui-vue) components `v2`
50+
- refactor: rename containers
51+
- refactor(Colors): view layout, sub-components
52+
- refactor(Switches): move to `Switch component v2`
53+
- refactor(Cards): add `transition` to card-header-action `btn-close`
54+
- refactor(Cards): add `collapse` to card-header-action `btn-minimize`
55+
- refactor(Forms): add `transition` to card-header-action `btn-close`
56+
- refactor(Forms): add `autocomplete` attrib
57+
- refactor(Forms): add missing `form` tags
58+
- refactor(Buttons): view rearrange
59+
- refactor(Jumbotrons): view rearrange
60+
- feat(Icons): add `CoreUI Icons` set
61+
- feat(Tabs): add missing feat `tabs`
62+
- feat(Charts): add `CustomTooltips`, fix tooltip `chartId` issue
63+
- refactor: move `scss` to `assets`
64+
- refactor: IE polyfills
6965
- chore: dependencies update
66+
- chore: cleanups
7067

71-
###### `v1.0.4`
72-
- refactor: import Bootstrap 4 SCSS files from node_modules
73-
- fix: callouts styles
74-
75-
###### `v1.0.3`
76-
- update: Bootstrap version to `4.0.0-beta.2`
77-
- update: vue-chartjs to `3.0.0` **[breaking change](https://github.com/apertureless/vue-chartjs/releases/tag/v3.0.0)** :fire:
78-
79-
###### `v1.0.2`
80-
- update: to vue: `^2.5.x`
81-
- update: bootstrap-vue to `1.0.0-beta.9`
82-
- refactor: (vue `v2.5.x`) deprecated `<template scope="props">` replace with `<div slot-scope="props">`
83-
- refactor: `HeaderDropdown` component added to `Header`
84-
- refactor: `b-badge` component added (bootstrap-vue)
85-
- chore: `package.json` project dependencies update
68+
other:
8669

70+
- feat: app-footer fixed
71+
- refactor(dashboard): brand-card, progress-group-bars
72+
- refactor(social-box-chart-example): props
73+
- feat(forms): new `<b-form-input type="date">` example added
74+
- refactor(cards): Card outline, Card accent - title variants added
75+
- feat: card-header-actions
76+
- feat(_nav): Navbars example added
77+
- update: vuejs-templates/webpack to v1.3.1
78+
- fix: eslint `valid template root`
79+
- refactor: card header title spacing
80+
- refactor: btn-brand
81+
- test(e2e): update
82+
- refactor: sidebar
83+
- refactor: chart examples

0 commit comments

Comments
 (0)