Skip to content

Commit

Permalink
Merge branch 'DEVELOP'
Browse files Browse the repository at this point in the history
  • Loading branch information
hisk committed Dec 20, 2018
2 parents d27a60d + e88604c commit f6fd619
Show file tree
Hide file tree
Showing 17 changed files with 279 additions and 280 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

### 1.0.6 - (2018-11-20)

* compat: fix IE11 conflict
* fix(d-form-checkbox): remove unnecessary `:checked` binding.
* fix(d-form-radio): remove unnecessary `:checked` binding.

### 1.0.5 - (2018-10-30)

* fix(d-link): exact/active classes not properly applied #10
Expand Down
174 changes: 86 additions & 88 deletions dist/shards-vue.common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shards-vue.common.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shards-vue.common.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shards-vue.common.min.map

Large diffs are not rendered by default.

174 changes: 86 additions & 88 deletions dist/shards-vue.esm.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shards-vue.esm.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shards-vue.esm.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shards-vue.esm.min.map

Large diffs are not rendered by default.

174 changes: 86 additions & 88 deletions dist/shards-vue.umd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shards-vue.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shards-vue.umd.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/shards-vue.umd.min.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shards-vue",
"version": "1.0.5",
"version": "1.0.6",
"license": "MIT",
"description": "A free, beautiful and modern Vue.js UI kit based on the Shards UI kit.",
"main": "dist/shards-vue.common.js",
Expand Down Expand Up @@ -106,6 +106,6 @@
"sass-loader": "^7.1.0",
"uglify-es": "^3.3.9",
"uglify-js": "^3.4.8",
"vue-template-compiler": "^2.5.17"
"vue-template-compiler": "^2.5.21"
}
}
1 change: 0 additions & 1 deletion src/components/form-checkbox/FormCheckbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
:disabled="disabled"
:required="required"
v-model="computedLocalState"
:checked="checked"
@change="handleChange" />
<label :for="computedID" class="custom-control-label" aria-hidden="true"></label>
<span :class="['custom-control-description']">
Expand Down
1 change: 0 additions & 1 deletion src/components/form-radio/FormRadio.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
:disabled="disabled"
:required="name && required"
v-model="computedLocalChecked"
:checked="checked"
@change="handleChange" />
<label :for="computedID" class="custom-control-label" aria-hidden="true"></label>
<span :class="['custom-control-description']">
Expand Down
7 changes: 4 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2218,9 +2218,10 @@ vue-clickaway@^2.2.2:
dependencies:
loose-envify "^1.2.0"

vue-template-compiler@^2.5.17:
version "2.5.17"
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.5.17.tgz#52a4a078c327deb937482a509ae85c06f346c3cb"
vue-template-compiler@^2.5.21:
version "2.5.21"
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.5.21.tgz#a57ceb903177e8f643560a8d639a0f8db647054a"
integrity sha512-Vmk5Cv7UcmI99B9nXJEkaK262IQNnHp5rJYo+EwYpe2epTAXqcVyExhV6pk8jTkxQK2vRc8v8KmZBAwdmUZvvw==
dependencies:
de-indent "^1.0.2"
he "^1.1.0"
Expand Down

0 comments on commit f6fd619

Please sign in to comment.