Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vue-chartjs

Package Overview
Dependencies
Maintainers
1
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-chartjs - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

.travis.yml

7

CHANGELOG.md
# Change Log
## [1.1.2](https://github.com/apertureless/vue-chartjs/tree/1.1.2) (2016-09-07)
[Full Changelog](https://github.com/apertureless/vue-chartjs/compare/1.1.1...1.1.2)
**Implemented enhancements:**
- Change name of the render method to ensure compatiblity with Vue 2.0 [\#4](https://github.com/apertureless/vue-chartjs/issues/4)
## [1.1.1](https://github.com/apertureless/vue-chartjs/tree/1.1.1) (2016-08-23)

@@ -4,0 +11,0 @@ [Full Changelog](https://github.com/apertureless/vue-chartjs/compare/1.1.0...1.1.1)

7

package.json
{
"name": "vue-chartjs",
"version": "1.1.2",
"version": "1.1.3",
"description": "Vue wrapper for chart.js",

@@ -23,4 +23,5 @@ "author": "Jakub Juszczak <jakub@nextindex.de>",

"e2e": "node test/e2e/runner.js",
"test": "npm run unit && npm run e2e",
"lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs"
"test": "npm run unit",
"lint": "eslint --ext .js,.vue src test/unit/specs",
"prepublish": "node build/build.js"
},

@@ -27,0 +28,0 @@ "dependencies": {

# Vue-ChartJs
[![npm version](https://badge.fury.io/js/vue-chartjs.svg)](https://badge.fury.io/js/vue-chartjs) ![npm dependencies](https://david-dm.org/apertureless/vue-chartjs.svg)
[![npm version](https://badge.fury.io/js/vue-chartjs.svg)](https://badge.fury.io/js/vue-chartjs) ![npm dependencies](https://david-dm.org/apertureless/vue-chartjs.svg) [![codecov](https://codecov.io/gh/apertureless/vue-chartjs/branch/master/graph/badge.svg)](https://codecov.io/gh/apertureless/vue-chartjs) [![Build Status](https://travis-ci.org/apertureless/vue-chartjs.svg?branch=master)](https://travis-ci.org/apertureless/vue-chartjs)

@@ -110,14 +110,6 @@ > VueJS wrapper for ChartJs

## Todo
### Bubble
- [x] ~~Implement Bar Chart~~
- [x] ~~Implement Line Chart~~
- [x] ~~Implement Radar Chart~~
- [x] ~~Implement Polar Area Chart~~
- [x] ~~Implement Pie Chart~~
- [x] ~~Implement Doughnut Chart~~
- [x] ~~Make npm module~~
- [ ] Add tests
![Bubble](assets/bubble.png)
## Build Setup

@@ -124,0 +116,0 @@

@@ -8,3 +8,3 @@ import Vue from 'vue'

<div>
<canvas id="bar-chart" width="{{width}}" height="{{height}}" v-el:canvas></canvas>
<canvas id="{{chartId}}" width="{{width}}" height="{{height}}" v-el:canvas></canvas>
</div>

@@ -14,2 +14,6 @@ `,

props: {
chartId: {
default: 'bar-chart',
type: String
},
width: {

@@ -16,0 +20,0 @@ default: 400,

@@ -8,3 +8,3 @@ import Vue from 'vue'

<div>
<canvas id="doughnut-chart" width={{width}} height={{height}} v-el:canvas></canvas>
<canvas id="{{chartId}}" width={{width}} height={{height}} v-el:canvas></canvas>
</div>

@@ -14,2 +14,6 @@ `,

props: {
chartId: {
default: 'doughnut-chart',
type: String
},
width: {

@@ -16,0 +20,0 @@ default: 400,

@@ -8,3 +8,3 @@ import Vue from 'vue'

<div>
<canvas id="line-chart" width={{width}} height={{height}} v-el:canvas></canvas>
<canvas id="{{chartId}}" width={{width}} height={{height}} v-el:canvas></canvas>
</div>

@@ -14,2 +14,6 @@ `,

props: {
chartId: {
default: 'line-chart',
type: String
},
width: {

@@ -16,0 +20,0 @@ default: 400,

@@ -8,3 +8,3 @@ import Vue from 'vue'

<div>
<canvas id="pie-chart" width={{width}} height={{height}} v-el:canvas></canvas>
<canvas id="{{chartId}}" width={{width}} height={{height}} v-el:canvas></canvas>
</div>

@@ -14,2 +14,6 @@ `,

props: {
chartId: {
default: 'pie-chart',
type: String
},
width: {

@@ -16,0 +20,0 @@ default: 400,

@@ -8,3 +8,3 @@ import Vue from 'vue'

<div>
<canvas id="polar-chart" width={{width}} height={{height}} v-el:canvas></canvas>
<canvas id="{{chartId}}" width={{width}} height={{height}} v-el:canvas></canvas>
</div>

@@ -14,2 +14,6 @@ `,

props: {
chartId: {
default: 'polar-chart',
type: String
},
width: {

@@ -16,0 +20,0 @@ default: 400,

@@ -8,3 +8,3 @@ import Vue from 'vue'

<div>
<canvas id="radar-chart" width={{width}} height={{height}} v-el:canvas></canvas>
<canvas id="{{chartId}}" width={{width}} height={{height}} v-el:canvas></canvas>
</div>

@@ -14,2 +14,6 @@ `,

props: {
chartId: {
default: 'radar-chart',
type: String
},
width: {

@@ -16,0 +20,0 @@ default: 400,

@@ -7,2 +7,3 @@ import Bar from './BaseCharts/Bar'

import Radar from './BaseCharts/Radar'
import Bubble from './BaseCharts/Bubble'

@@ -15,5 +16,6 @@ const VueCharts = {

PolarArea,
Radar
Radar,
Bubble
}
module.exports = VueCharts

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc