Skip to content

Commit

Permalink
Version bump to 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Dec 5, 2016
1 parent 98d9be7 commit 92a4e49
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.3

- Added `curve`, `legend`, and `title` options

## 0.1.2 ## 0.1.2


- Added `download`, `refresh`, and `donut` options - Added `download`, `refresh`, and `donut` options
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
{ {
"name": "vue-chartkick", "name": "vue-chartkick",
"version": "0.1.2", "version": "0.1.3",
"main": "dist/vue-chartkick.js", "main": "dist/vue-chartkick.js",
"ignore": [ "ignore": [
"**/.*" "**/.*"
Expand Down
6 changes: 3 additions & 3 deletions dist/vue-chartkick.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ return /******/ (function(modules) { // webpackBootstrap
* Vue Chartkick * Vue Chartkick
* Create beautiful charts with one line in Vue.js * Create beautiful charts with one line in Vue.js
* https://github.com/ankane/vue-chartkick * https://github.com/ankane/vue-chartkick
* v0.1.2 * v0.1.3
* @license MIT * @license MIT
*/ */


Expand All @@ -67,7 +67,7 @@ return /******/ (function(modules) { // webpackBootstrap
var chartId = 1 var chartId = 1


var createComponent = function(tagName, chartType) { var createComponent = function(tagName, chartType) {
var chartProps = ["min", "max", "colors", "stacked", "discrete", "label", "xtitle", "ytitle", "library", "download", "refresh", "donut"] var chartProps = ["min", "max", "colors", "stacked", "discrete", "label", "xtitle", "ytitle", "library", "download", "refresh", "donut", "legend", "curve", "title"]
Vue.component(tagName, { Vue.component(tagName, {
props: ["data", "id", "width", "height"].concat(chartProps), props: ["data", "id", "width", "height"].concat(chartProps),
template: '<div v-bind:id="chartId" v-bind:style="chartStyle">Loading...</div>', template: '<div v-bind:id="chartId" v-bind:style="chartStyle">Loading...</div>',
Expand Down Expand Up @@ -97,7 +97,7 @@ return /******/ (function(modules) { // webpackBootstrap
var props = chartProps var props = chartProps
for (var i = 0; i < props.length; i++) { for (var i = 0; i < props.length; i++) {
var prop = props[i] var prop = props[i]
if (this[prop]) { if (this[prop] !== undefined) {
options[prop] = this[prop] options[prop] = this[prop]
} }
} }
Expand Down
4 changes: 2 additions & 2 deletions dist/vue-chartkick.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Vue Chartkick * Vue Chartkick
* Create beautiful charts with one line in Vue.js * Create beautiful charts with one line in Vue.js
* https://github.com/ankane/vue-chartkick * https://github.com/ankane/vue-chartkick
* v0.1.2 * v0.1.3
* @license MIT * @license MIT
*/ */


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
{ {
"name": "vue-chartkick", "name": "vue-chartkick",
"version": "0.1.2", "version": "0.1.3",
"description": "Create beautiful charts with one line in Vue.js", "description": "Create beautiful charts with one line in Vue.js",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
Expand Down

0 comments on commit 92a4e49

Please sign in to comment.