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

vue3-apexcharts

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue3-apexcharts - npm Package Compare versions

Comparing version 1.5.3 to 1.6.0

4

package.json
{
"name": "vue3-apexcharts",
"type": "module",
"version": "1.5.3",
"version": "1.6.0",
"main": "./dist/vue3-apexcharts.umd.cjs",

@@ -58,2 +58,2 @@ "module": "./dist/vue3-apexcharts.js",

}
}
}

@@ -135,6 +135,13 @@ /* eslint-disable */

// emit events to the parent component
// to allow for two-way data binding
// to allow for two-way data binding, while
// also allowing chart options to define callbacks
const optionsEvents = props.options.chart.events;
events.forEach(event => {
let callback = (...args) => emit(event, ...args); // args => chartContext, options
newOptions.chart.events[event] = callback;
newOptions.chart.events[event] = (...args) => {
callback(...args);
if (optionsEvents && optionsEvents.hasOwnProperty(event)) {
optionsEvents[event](...args);
}
};
});

@@ -141,0 +148,0 @@

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