Socket
Socket
Sign inDemoInstall

vue-apexcharts

Package Overview
Dependencies
20
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.5.1 to 1.5.2

2

dist/vue-apexcharts.d.ts

@@ -18,3 +18,3 @@ import Vue, { Component, ComponentOptions } from 'vue';

destroy(): void;
updateOptions(options: any, redrawPaths?: boolean, animate?: boolean): Promise<void>;
updateOptions(options: any, redrawPaths?: boolean, animate?: boolean, updateSyncedCharts?: boolean): Promise<void>;
updateSeries(newSeries: any, animate?: boolean): Promise<void>;

@@ -21,0 +21,0 @@ toggleSeries(seriesName: string): any;

@@ -186,4 +186,4 @@ (function (global, factory) {

},
updateOptions: function updateOptions(newOptions, redrawPaths, animate) {
return this.chart.updateOptions(newOptions, redrawPaths, animate);
updateOptions: function updateOptions(newOptions, redrawPaths, animate, updateSyncedCharts) {
return this.chart.updateOptions(newOptions, redrawPaths, animate, updateSyncedCharts);
},

@@ -217,2 +217,5 @@ toggleSeries: function toggleSeries(seriesName) {

},
setLocale: function setLocale(localeName) {
return this.chart.setLocale(localeName);
},
addXaxisAnnotation: function addXaxisAnnotation(options, pushToMemory) {

@@ -219,0 +222,0 @@ this.chart.addXaxisAnnotation(options, pushToMemory);

{
"name": "vue-apexcharts",
"version": "1.5.1",
"version": "1.5.2",
"description": "Vue.js wrapper for ApexCharts",

@@ -5,0 +5,0 @@ "main": "dist/vue-apexcharts.js",

@@ -146,4 +146,4 @@ import ApexCharts from 'apexcharts'

},
updateOptions (newOptions, redrawPaths, animate) {
return this.chart.updateOptions(newOptions, redrawPaths, animate)
updateOptions (newOptions, redrawPaths, animate, updateSyncedCharts) {
return this.chart.updateOptions(newOptions, redrawPaths, animate, updateSyncedCharts)
},

@@ -177,2 +177,5 @@ toggleSeries (seriesName) {

},
setLocale(localeName) {
return this.chart.setLocale(localeName)
},
addXaxisAnnotation (options, pushToMemory) {

@@ -179,0 +182,0 @@ this.chart.addXaxisAnnotation(options, pushToMemory)

@@ -18,3 +18,3 @@ import Vue, { Component, ComponentOptions } from 'vue';

destroy(): void;
updateOptions(options: any, redrawPaths?: boolean, animate?: boolean): Promise<void>;
updateOptions(options: any, redrawPaths?: boolean, animate?: boolean, updateSyncedCharts?: boolean): Promise<void>;
updateSeries(newSeries: any, animate?: boolean): Promise<void>;

@@ -21,0 +21,0 @@ toggleSeries(seriesName: string): any;

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

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc