Update to v1.0.6

- refactor: raw html to b-row, b-col, b-card, b-button components
- fix: Cards change variant="accent- to class="card-accent-
- refactor: Modal's ok-button variants
- refactor: forms with validation feedback
- update: bootstrap-vue to 1.1.0 closes #28
- update: to vue 2.5.6

from build v1.0.5
- update: bootstrap-vue to 1.0.x
- fix: use <b-form-radio-group> instead of <b-form-radio>
- refactor: <b-table> bootstrap-vue component in Tables closes #24
- refactor: extract Table component from Tables
- refactor: <b-table> bootstrap-vue component in Switches
- fix: add table-responsive-sm class to Tables closes #26
- refactor: use component <b-navbar-nav> instead of deprecated prop is-nav-bar
- fix: b-progress height property workaround (bootstrap-vue)
- chore: dependencies update
This commit is contained in:
xidedix
2017-11-21 18:28:34 +01:00
parent a1db02c4d0
commit 683cf9bb92
34 changed files with 3325 additions and 4220 deletions
@@ -1,7 +1,7 @@
<template>
<div class="animated fadeIn">
<div class="row">
<div class="col-md-6">
<b-row>
<b-col md="6">
<b-card>
<div slot="header">
<strong>Options</strong>
@@ -114,8 +114,8 @@
<b-button size="lg" variant="danger" :block="true">Block level button</b-button>
<b-button size="lg" variant="link" :block="true">Block level button</b-button>
</b-card>
</div><!--/.col-->
<div class="col-md-6">
</b-col><!--/.col-->
<b-col md="6">
<b-card>
<div slot="header">
<strong>Options</strong>
@@ -218,8 +218,8 @@
<b-button size="lg" variant="outline-warning" :block="true">Block level button</b-button>
<b-button size="lg" variant="outline-danger" :block="true">Block level button</b-button>
</b-card>
</div><!--/.col-->
</div><!--/.row-->
</b-col><!--/.col-->
</b-row><!--/.row-->
</div>
</template>