diff --git a/CHANGELOG.md b/CHANGELOG.md index 39c2dda5..5f8f23e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ ## [vue](./README.md) version `changelog` ##### `v2.0.0-alpha.0` -- refactor: separation of concerns - (CoreUI template vs CoreUI components) prepare to use CoreUI as dependency +- refactor: separation of concerns - (CoreUI template/components) for use CoreUI as npm module - refactor: project structure change - refactor: moved to [vuejs-templates](http://vuejs-templates.github.io/webpack/) - chore: moved to [Semantic Versioning](https://semver.org/) @@ -9,6 +9,9 @@ - refactor: rename containers - refactor(Colors): view layout, sub-components - refactor(Switches): move to `Switch component v2` +- refactor(Cards): add transition to card-header-action `btn-close` +- refactor(Cards): add collapse to card-header-action `btn-minimize` +- refactor(Forms): add transition to card-header-action `btn-close` other: diff --git a/src/views/base/Forms.vue b/src/views/base/Forms.vue index f9b3ba57..3d701ee3 100644 --- a/src/views/base/Forms.vue +++ b/src/views/base/Forms.vue @@ -555,20 +555,22 @@ Validation feedback Form - - Input is valid - - - Input is valid. - - - - Input is invalid - - - Please provide a valid information. - - + + + Input is valid + + + Input is valid. + + + + Input is invalid + + + Please provide a valid information. + + + @@ -948,70 +950,72 @@ - - - Form Elements - - - - - - - - - - - - - - - - - - @ - - - - - - - - .00 - - - - - - $ - - - .00 - - - - - - - Go! - - - - - - - - Search - Options - - - - - Save changes - Cancel + + + + Form Elements + + + + + + + + + + - - - + + + + + + + @ + + + + + + + + .00 + + + + + + $ + + + .00 + + + + + + + Go! + + + + + + + + Search + Options + + + + + Save changes + Cancel + + + + + @@ -1022,7 +1026,8 @@ export default { name: 'forms', data () { return { - selected: [] // Must be an array reference! + selected: [], // Must be an array reference! + show: true } }, methods: { @@ -1032,3 +1037,12 @@ export default { } } + +