Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v4.3.1 #77

Merged
merged 7 commits into from
Sep 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
402 changes: 201 additions & 201 deletions .yarn/releases/yarn-3.6.1.cjs → .yarn/releases/yarn-3.6.3.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ packageExtensions:
dependencies:
eslint-import-resolver-node: "*"

yarnPath: .yarn/releases/yarn-3.6.1.cjs
yarnPath: .yarn/releases/yarn-3.6.3.cjs
62 changes: 33 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "chartjs-chart-error-bars",
"description": "Chart.js module for charting error bars",
"version": "4.3.0",
"version": "4.3.1",
"author": {
"name": "Samuel Gratzl",
"email": "samu@sgratzl.com",
Expand Down Expand Up @@ -53,51 +53,55 @@
],
"devDependencies": {
"@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",
"start": "yarn run watch",
"watch": "rollup -c -w",
Expand All @@ -117,5 +121,5 @@
"docs:build": "yarn run docs:api && vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"packageManager": "yarn@3.6.1"
"packageManager": "yarn@3.6.3"
}
2 changes: 1 addition & 1 deletion src/__tests__/createChart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export interface ChartHelper<TYPE extends ChartType, DATA extends unknown[] = De
export default function createChart<
TYPE extends ChartType,
DATA extends unknown[] = DefaultDataPoint<TYPE>,
LABEL = string
LABEL = string,
>(config: ChartConfiguration<TYPE, DATA, LABEL>, width = 300, height = 300): ChartHelper<TYPE, DATA, LABEL> {
const canvas = document.createElement('canvas');
canvas.width = width;
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/BarWithErrorBarsController.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {
import {
Chart,
BarController,
LinearScale,
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/LineWithErrorBarsController.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {
import {
Chart,
LineController,
LinearScale,
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/PolarAreaWithErrorBarsController.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {
import {
Chart,
PolarAreaController,
RadialLinearScale,
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/ScatterWithErrorBarsController.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {
import {
Chart,
ScatterController,
LinearScale,
Expand Down
2 changes: 1 addition & 1 deletion src/elements/ArcWithErrorBar.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {
import {
ArcElement,
ArcOptions,
ArcHoverOptions,
Expand Down
2 changes: 1 addition & 1 deletion src/elements/BarWithErrorBar.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {
import {
BarElement,
BarHoverOptions,
BarOptions,
Expand Down
2 changes: 1 addition & 1 deletion src/elements/PointWithErrorBar.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {
import {
PointElement,
PointOptions,
PointHoverOptions,
Expand Down
Loading