Skip to content

Commit 3bdb4e2

Browse files
committed
Update to 1.0.5
1 parent bef4c64 commit 3bdb4e2

File tree

12 files changed

+39
-30
lines changed

12 files changed

+39
-30
lines changed

Diff for: Vue_Full_Project/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
## [vue](./README.md) version `changelog`
22

3+
###### `v1.0.5`
4+
- fix: use `<b-form-radio-group>` instead of `<b-form-radio>` **[breaking change](https://bootstrap-vue.js.org/docs/components/form-radios)** :fire:
5+
6+
###### `v1.0.4`
7+
- refactor: import Bootstrap 4 SCSS files from node_modules
8+
- fix: callouts styles
9+
310
###### `v1.0.3`
411
- update: Bootstrap version to `4.0.0-beta.2`
512
- update: vue-chartjs to `3.0.0` **[breaking change](https://github.com/apertureless/vue-chartjs/releases/tag/v3.0.0)** :fire:

Diff for: Vue_Full_Project/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/vue",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "",
55
"author": "Łukasz Holeczek",
66
"homepage": "http://coreui.io",

Diff for: Vue_Full_Project/scss/core/_layout.scss

+3-4
Original file line numberDiff line numberDiff line change
@@ -338,17 +338,16 @@ app-root {
338338
}
339339
}
340340

341-
.sidebar,
342-
.sidebar-fixed .sidebar {
341+
.sidebar {
343342
position: fixed;
344343
z-index: $zindex-sticky - 1;
345344
width: $mobile-sidebar-width;
346-
// height: 100%;
345+
height: calc(100vh - #{$navbar-height});
347346
margin-left: - $mobile-sidebar-width;
348347

349348
.sidebar-nav,
350349
.nav {
351-
width: $mobile-sidebar-width !important;
350+
width: $mobile-sidebar-width;
352351
min-height: calc(100vh - #{$navbar-height});
353352
}
354353

Diff for: Vue_Full_Project/scss/style.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* CoreUI - Open Source Bootstrap Admin Template
3-
* @version v1.0.4
3+
* @version v1.0.5
44
* @link http://coreui.io
55
* Copyright (c) 2017 creativeLabs Łukasz Holeczek
66
* @license MIT

Diff for: Vue_Full_Project/src/views/Dashboard.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@
497497
</div><!--/.col-->
498498
</div><!--/.row-->
499499
<br/>
500-
<b-table class="table-outline table-responsive-sm b-0" hover
500+
<b-table class="table-outline table-responsive-sm mb-0" hover
501501
:items="tableItems"
502502
:fields="tableFields"
503503
head-variant="light"

Diff for: Vue_Full_Project/src/views/components/Forms.vue

+14-10
Original file line numberDiff line numberDiff line change
@@ -205,53 +205,57 @@
205205
label="Radios"
206206
:label-cols="3"
207207
:horizontal="true">
208-
<b-form-radio
208+
<b-form-radio-group
209209
:plain="true"
210210
:options="[
211211
{text: 'Option 1 ',value: '1'},
212212
{text: 'Option 2 ',value: '2'},
213213
{text: 'Option 3 ',value: '3'}
214214
]"
215215
value="1"
216-
stacked></b-form-radio>
216+
stacked>
217+
</b-form-radio-group>
217218
</b-form-fieldset>
218219
<b-form-fieldset
219220
label="Radios - custom"
220221
:label-cols="3"
221222
:horizontal="true">
222-
<b-form-radio
223+
<b-form-radio-group
223224
:options="[
224225
{text: 'Option 1',value: '1'},
225226
{text: 'Option 2',value: '2'},
226227
{text: 'Option 3',value: '3'}
227228
]"
228229
value="1"
229-
stacked></b-form-radio>
230+
stacked>
231+
</b-form-radio-group>
230232
</b-form-fieldset>
231233
<b-form-fieldset
232234
label="Inline radios"
233235
:label-cols="3"
234236
:horizontal="true">
235-
<b-form-radio
237+
<b-form-radio-group
236238
:plain="true"
237239
:options="[
238240
{text: 'Option 1 ',value: '1'},
239241
{text: 'Option 2 ',value: '2'},
240242
{text: 'Option 3 ',value: '3'}
241243
]"
242-
value="1"></b-form-radio>
244+
value="1">
245+
</b-form-radio-group>
243246
</b-form-fieldset>
244247
<b-form-fieldset
245248
label="Inline radios - custom"
246249
:label-cols="3"
247250
:horizontal="true">
248-
<b-form-radio
251+
<b-form-radio-group
249252
:options="[
250253
{text: 'Option 1',value: '1'},
251254
{text: 'Option 2',value: '2'},
252255
{text: 'Option 3',value: '3'}
253256
]"
254-
value="1"></b-form-radio>
257+
value="1">
258+
</b-form-radio-group>
255259
</b-form-fieldset>
256260
<b-form-fieldset
257261
label="Checkboxes"
@@ -460,11 +464,11 @@
460464
</div>
461465
<div class="card-body">
462466
<div class="form-group">
463-
<label class="form-col-form-label" for="inputSuccess1">Input with success</label>
467+
<label class="col-form-label" for="inputSuccess1">Input with success</label>
464468
<input type="text" class="form-control is-valid" id="inputSuccess1">
465469
</div>
466470
<div class="form-group">
467-
<label class="form-col-form-label" for="inputError1">Input with error</label>
471+
<label class="col-form-label" for="inputError1">Input with error</label>
468472
<input type="text" class="form-control is-invalid" id="inputError1">
469473
<div class="invalid-feedback">
470474
Please provide a valid informations.

Diff for: Vue_Starter/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/vue",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "Open Source Bootstrap Admin Template",
55
"author": "Łukasz Holeczek",
66
"homepage": "http://coreui.io",

Diff for: Vue_Starter/scss/core/_layout.scss

+3-4
Original file line numberDiff line numberDiff line change
@@ -338,17 +338,16 @@ app-root {
338338
}
339339
}
340340

341-
.sidebar,
342-
.sidebar-fixed .sidebar {
341+
.sidebar {
343342
position: fixed;
344343
z-index: $zindex-sticky - 1;
345344
width: $mobile-sidebar-width;
346-
// height: 100%;
345+
height: calc(100vh - #{$navbar-height});
347346
margin-left: - $mobile-sidebar-width;
348347

349348
.sidebar-nav,
350349
.nav {
351-
width: $mobile-sidebar-width !important;
350+
width: $mobile-sidebar-width;
352351
min-height: calc(100vh - #{$navbar-height});
353352
}
354353

Diff for: Vue_Starter/scss/style.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* CoreUI - Open Source Bootstrap Admin Template
3-
* @version v1.0.4
3+
* @version v1.0.5
44
* @link http://coreui.io
55
* Copyright (c) 2017 creativeLabs Łukasz Holeczek
66
* @license MIT

Diff for: Vue_Starter/src/views/Dashboard.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div class="animated fadeIn">
3-
<p class="text-info">Hello World</p>
3+
Hello World
44
</div>
55
</template>
66

Diff for: Vue_Starter/test/unit/specs/Hello.spec.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import Vue from 'vue'
2-
import Dashboard from '@/views/Dashboard'
2+
import Hello from '@/components/Hello'
33

4-
describe('Dashboard.vue', () => {
4+
describe('Hello.vue', () => {
55
it('should render correct contents', () => {
6-
const Constructor = Vue.extend(Dashboard)
6+
const Constructor = Vue.extend(Hello)
77
const vm = new Constructor().$mount()
8-
expect(vm.$el.querySelector('.text-info').textContent)
9-
.to.equal('Hello World')
8+
expect(vm.$el.querySelector('.hello h1').textContent)
9+
.to.equal('Welcome to Your Vue.js App')
1010
})
1111
})

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coreui/vue",
3-
"version": "1.0.4",
3+
"version": "1.0.5",
44
"description": "Open Source Vue Admin Template",
55
"main": "",
66
"homepage": "http://coreui.io/vue/",

0 commit comments

Comments
 (0)