From a1db02c4d011eb92768f9f9979638da3b5adfa0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Mon, 13 Nov 2017 11:38:39 +0100 Subject: [PATCH] Update to 1.0.5 --- Vue_Full_Project/CHANGELOG.md | 7 ++++++ Vue_Full_Project/package.json | 2 +- Vue_Full_Project/scss/core/_layout.scss | 7 +++--- Vue_Full_Project/scss/style.scss | 2 +- Vue_Full_Project/src/views/Dashboard.vue | 2 +- .../src/views/components/Forms.vue | 24 +++++++++++-------- Vue_Starter/package.json | 2 +- Vue_Starter/scss/core/_layout.scss | 7 +++--- Vue_Starter/scss/style.scss | 2 +- Vue_Starter/src/views/Dashboard.vue | 2 +- Vue_Starter/test/unit/specs/Hello.spec.js | 10 ++++---- package.json | 2 +- 12 files changed, 39 insertions(+), 30 deletions(-) diff --git a/Vue_Full_Project/CHANGELOG.md b/Vue_Full_Project/CHANGELOG.md index 26c98c32..ea910f23 100644 --- a/Vue_Full_Project/CHANGELOG.md +++ b/Vue_Full_Project/CHANGELOG.md @@ -1,5 +1,12 @@ ## [vue](./README.md) version `changelog` +###### `v1.0.5` +- fix: use `` instead of `` **[breaking change](https://bootstrap-vue.js.org/docs/components/form-radios)** :fire: + +###### `v1.0.4` +- refactor: import Bootstrap 4 SCSS files from node_modules +- fix: callouts styles + ###### `v1.0.3` - update: Bootstrap version to `4.0.0-beta.2` - update: vue-chartjs to `3.0.0` **[breaking change](https://github.com/apertureless/vue-chartjs/releases/tag/v3.0.0)** :fire: diff --git a/Vue_Full_Project/package.json b/Vue_Full_Project/package.json index e8ee4e94..a60cb3b3 100644 --- a/Vue_Full_Project/package.json +++ b/Vue_Full_Project/package.json @@ -1,6 +1,6 @@ { "name": "@coreui/vue", - "version": "1.0.4", + "version": "1.0.5", "description": "", "author": "Łukasz Holeczek", "homepage": "http://coreui.io", diff --git a/Vue_Full_Project/scss/core/_layout.scss b/Vue_Full_Project/scss/core/_layout.scss index 0234922c..8a050031 100644 --- a/Vue_Full_Project/scss/core/_layout.scss +++ b/Vue_Full_Project/scss/core/_layout.scss @@ -338,17 +338,16 @@ app-root { } } - .sidebar, - .sidebar-fixed .sidebar { + .sidebar { position: fixed; z-index: $zindex-sticky - 1; width: $mobile-sidebar-width; - // height: 100%; + height: calc(100vh - #{$navbar-height}); margin-left: - $mobile-sidebar-width; .sidebar-nav, .nav { - width: $mobile-sidebar-width !important; + width: $mobile-sidebar-width; min-height: calc(100vh - #{$navbar-height}); } diff --git a/Vue_Full_Project/scss/style.scss b/Vue_Full_Project/scss/style.scss index f59ceddc..3e56e7c3 100644 --- a/Vue_Full_Project/scss/style.scss +++ b/Vue_Full_Project/scss/style.scss @@ -1,6 +1,6 @@ /*! * CoreUI - Open Source Bootstrap Admin Template - * @version v1.0.4 + * @version v1.0.5 * @link http://coreui.io * Copyright (c) 2017 creativeLabs Łukasz Holeczek * @license MIT diff --git a/Vue_Full_Project/src/views/Dashboard.vue b/Vue_Full_Project/src/views/Dashboard.vue index d9609dfb..17488bca 100644 --- a/Vue_Full_Project/src/views/Dashboard.vue +++ b/Vue_Full_Project/src/views/Dashboard.vue @@ -497,7 +497,7 @@
- - + stacked> +
- + stacked> + - + value="1"> + - + value="1"> +
- +
- +
Please provide a valid informations. diff --git a/Vue_Starter/package.json b/Vue_Starter/package.json index 63d727f1..ea8ebb71 100644 --- a/Vue_Starter/package.json +++ b/Vue_Starter/package.json @@ -1,6 +1,6 @@ { "name": "@coreui/vue", - "version": "1.0.4", + "version": "1.0.5", "description": "Open Source Bootstrap Admin Template", "author": "Łukasz Holeczek", "homepage": "http://coreui.io", diff --git a/Vue_Starter/scss/core/_layout.scss b/Vue_Starter/scss/core/_layout.scss index 0234922c..8a050031 100644 --- a/Vue_Starter/scss/core/_layout.scss +++ b/Vue_Starter/scss/core/_layout.scss @@ -338,17 +338,16 @@ app-root { } } - .sidebar, - .sidebar-fixed .sidebar { + .sidebar { position: fixed; z-index: $zindex-sticky - 1; width: $mobile-sidebar-width; - // height: 100%; + height: calc(100vh - #{$navbar-height}); margin-left: - $mobile-sidebar-width; .sidebar-nav, .nav { - width: $mobile-sidebar-width !important; + width: $mobile-sidebar-width; min-height: calc(100vh - #{$navbar-height}); } diff --git a/Vue_Starter/scss/style.scss b/Vue_Starter/scss/style.scss index f59ceddc..3e56e7c3 100644 --- a/Vue_Starter/scss/style.scss +++ b/Vue_Starter/scss/style.scss @@ -1,6 +1,6 @@ /*! * CoreUI - Open Source Bootstrap Admin Template - * @version v1.0.4 + * @version v1.0.5 * @link http://coreui.io * Copyright (c) 2017 creativeLabs Łukasz Holeczek * @license MIT diff --git a/Vue_Starter/src/views/Dashboard.vue b/Vue_Starter/src/views/Dashboard.vue index 9f2c5199..270ba695 100644 --- a/Vue_Starter/src/views/Dashboard.vue +++ b/Vue_Starter/src/views/Dashboard.vue @@ -1,6 +1,6 @@ diff --git a/Vue_Starter/test/unit/specs/Hello.spec.js b/Vue_Starter/test/unit/specs/Hello.spec.js index ca3ad740..80140baa 100644 --- a/Vue_Starter/test/unit/specs/Hello.spec.js +++ b/Vue_Starter/test/unit/specs/Hello.spec.js @@ -1,11 +1,11 @@ import Vue from 'vue' -import Dashboard from '@/views/Dashboard' +import Hello from '@/components/Hello' -describe('Dashboard.vue', () => { +describe('Hello.vue', () => { it('should render correct contents', () => { - const Constructor = Vue.extend(Dashboard) + const Constructor = Vue.extend(Hello) const vm = new Constructor().$mount() - expect(vm.$el.querySelector('.text-info').textContent) - .to.equal('Hello World') + expect(vm.$el.querySelector('.hello h1').textContent) + .to.equal('Welcome to Your Vue.js App') }) }) diff --git a/package.json b/package.json index df9475b0..a8b77c17 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@coreui/vue", - "version": "1.0.4", + "version": "1.0.5", "description": "Open Source Vue Admin Template", "main": "", "homepage": "http://coreui.io/vue/",