vue-apexcharts
Advanced tools
Comparing version 1.3.2 to 1.3.3
@@ -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; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
54240
555