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

vue-apexcharts

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-apexcharts - npm Package Compare versions

Comparing version 1.3.2 to 1.3.3

22

dist/vue-apexcharts.d.ts

@@ -1,5 +0,6 @@

import Vue from 'vue';
import Vue, { Component, ComponentOptions } from 'vue';
import { PluginObject } from 'vue/types/plugin';
import ApexCharts, { ApexOptions } from 'apexcharts';
interface VueApexCharts extends Vue {
interface VueApexChartsComponent extends Vue {
// data

@@ -14,7 +15,18 @@ readonly chart?: ApexCharts;

// method
init(): void;
refresh(): void;
destroy(): void;
updateOptions(options: any, redrawPaths?: boolean, animate?: boolean): void;
updateSeries(newSeries: ApexAxisChartSeries | ApexNonAxisChartSeries, animate: boolean): void;
toggleSeries(seriesName: string): void;
appendData(newData: any): void;
addText(options: any, pushToMemory?: boolean, context?: any): void;
addXaxisAnnotation(options: any, pushToMemory?: boolean, context?: any): void;
addYaxisAnnotation(options: any, pushToMemory?: boolean, context?: any): void;
addPointAnnotation(options: any, pushToMemory?: boolean, context?: any): void;
clearAnnotations(): void;
dataURI(): Promise<string>;
}
declare namespace VueApexCharts {
function install(app: typeof Vue): void;
}
declare const VueApexCharts: Component & ComponentOptions<Vue> & PluginObject<any>;

@@ -21,0 +33,0 @@ export default VueApexCharts;

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

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

@@ -1,5 +0,6 @@

import Vue from 'vue';
import Vue, { Component, ComponentOptions } from 'vue';
import { PluginObject } from 'vue/types/plugin';
import ApexCharts, { ApexOptions } from 'apexcharts';
interface VueApexCharts extends Vue {
interface VueApexChartsComponent extends Vue {
// data

@@ -14,7 +15,18 @@ readonly chart?: ApexCharts;

// method
init(): void;
refresh(): void;
destroy(): void;
updateOptions(options: any, redrawPaths?: boolean, animate?: boolean): void;
updateSeries(newSeries: ApexAxisChartSeries | ApexNonAxisChartSeries, animate: boolean): void;
toggleSeries(seriesName: string): void;
appendData(newData: any): void;
addText(options: any, pushToMemory?: boolean, context?: any): void;
addXaxisAnnotation(options: any, pushToMemory?: boolean, context?: any): void;
addYaxisAnnotation(options: any, pushToMemory?: boolean, context?: any): void;
addPointAnnotation(options: any, pushToMemory?: boolean, context?: any): void;
clearAnnotations(): void;
dataURI(): Promise<string>;
}
declare namespace VueApexCharts {
function install(app: typeof Vue): void;
}
declare const VueApexCharts: Component & ComponentOptions<Vue> & PluginObject<any>;

@@ -21,0 +33,0 @@ export default VueApexCharts;

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