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

chartjs-chart-error-bars

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chartjs-chart-error-bars - npm Package Compare versions

Comparing version 4.3.0 to 4.3.1

2

build/index.d.ts

@@ -254,3 +254,3 @@ /**

export { ArcWithErrorBar, BarWithErrorBar, BarWithErrorBarsChart, BarWithErrorBarsController, BarWithErrorBarsControllerDatasetOptions, IErrorBarOptions, IErrorBarRDataPoint, IErrorBarXDataPoint, IErrorBarXYDataPoint, IErrorBarYDataPoint, LineWithErrorBarsChart, LineWithErrorBarsController, LineWithErrorBarsControllerDatasetOptions, PointWithErrorBar, PolarAreaWithErrorBarsChart, PolarAreaWithErrorBarsController, PolarAreaWithErrorBarsControllerDatasetOptions, ScatterWithErrorBarsChart, ScatterWithErrorBarsController, ScatterWithErrorBarsControllerDatasetOptions };
export { ArcWithErrorBar, BarWithErrorBar, BarWithErrorBarsChart, BarWithErrorBarsController, type BarWithErrorBarsControllerDatasetOptions, type IErrorBarOptions, type IErrorBarRDataPoint, type IErrorBarXDataPoint, type IErrorBarXYDataPoint, type IErrorBarYDataPoint, LineWithErrorBarsChart, LineWithErrorBarsController, type LineWithErrorBarsControllerDatasetOptions, PointWithErrorBar, PolarAreaWithErrorBarsChart, PolarAreaWithErrorBarsController, type PolarAreaWithErrorBarsControllerDatasetOptions, ScatterWithErrorBarsChart, ScatterWithErrorBarsController, type ScatterWithErrorBarsControllerDatasetOptions };
//# sourceMappingURL=index.d.ts.map
{
"name": "chartjs-chart-error-bars",
"description": "Chart.js module for charting error bars",
"version": "4.3.0",
"version": "4.3.1",
"author": {

@@ -56,47 +56,51 @@ "name": "Samuel Gratzl",

"@chiogen/rollup-plugin-terser": "^7.1.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.2",
"@types/jest-image-snapshot": "^6.1.0",
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@rollup/plugin-typescript": "^11.1.3",
"@types/jest": "^29.5.5",
"@types/jest-image-snapshot": "^6.2.1",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@yarnpkg/sdks": "^2.7.1",
"canvas": "^2.11.2",
"canvas-5-polyfill": "^0.1.5",
"chart.js": "^4.3.0",
"chart.js": "^4.4.0",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^2.30.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint": "^8.49.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.0",
"jest-environment-jsdom": "^29.6.0",
"jest-image-snapshot": "^6.1.0",
"prettier": "^2.8.8",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-image-snapshot": "^6.2.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"rollup": "^3.26.0",
"rollup": "^3.29.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-dts": "^6.0.2",
"ts-jest": "^29.1.1",
"tslib": "^2.6.0",
"typedoc": "^0.24.8",
"tslib": "^2.6.2",
"typedoc": "^0.25.1",
"typedoc-plugin-markdown": "^4.0.0-next.16",
"typedoc-vitepress-theme": "^1.0.0-next.2",
"typescript": "^5.1.6",
"vitepress": "^1.0.0-beta.5",
"typedoc-vitepress-theme": "^1.0.0-next.3",
"typescript": "^5.2.2",
"vitepress": "^1.0.0-rc.14",
"vue": "^3.3.4",
"vue-chartjs": "^5.2.0"
},
"resolutions": {
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0"
},
"scripts": {
"clean": "rimraf --glob build docs node_modules \"*.tgz\" \"*.tsbuildinfo\"",
"clean": "rimraf --glob build node_modules \"*.tgz\" \"*.tsbuildinfo\"",
"compile": "tsc -b tsconfig.c.json",

@@ -121,3 +125,3 @@ "start": "yarn run watch",

},
"packageManager": "yarn@3.6.1"
"packageManager": "yarn@3.6.3"
}

@@ -36,3 +36,3 @@ /// <reference types="jest" />

DATA extends unknown[] = DefaultDataPoint<TYPE>,
LABEL = string
LABEL = string,
>(config: ChartConfiguration<TYPE, DATA, LABEL>, width = 300, height = 300): ChartHelper<TYPE, DATA, LABEL> {

@@ -39,0 +39,0 @@ const canvas = document.createElement('canvas');

@@ -1,2 +0,2 @@

import {
import {
Chart,

@@ -3,0 +3,0 @@ BarController,

@@ -1,2 +0,2 @@

import {
import {
Chart,

@@ -3,0 +3,0 @@ LineController,

@@ -1,2 +0,2 @@

import {
import {
Chart,

@@ -3,0 +3,0 @@ PolarAreaController,

@@ -1,2 +0,2 @@

import {
import {
Chart,

@@ -3,0 +3,0 @@ ScatterController,

@@ -1,2 +0,2 @@

import {
import {
ArcElement,

@@ -3,0 +3,0 @@ ArcOptions,

@@ -1,2 +0,2 @@

import {
import {
BarElement,

@@ -3,0 +3,0 @@ BarHoverOptions,

@@ -1,2 +0,2 @@

import {
import {
PointElement,

@@ -3,0 +3,0 @@ PointOptions,

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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