Skip to content

Commit 75a1387

Browse files
authored
Merge pull request #83 from sgratzl/release/v4.2.5
Release v4.2.5
2 parents 3b07c66 + 20e3f7c commit 75a1387

File tree

11 files changed

+2369
-1834
lines changed

11 files changed

+2369
-1834
lines changed
Lines changed: 201 additions & 201 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ packageExtensions:
33
dependencies:
44
eslint-import-resolver-node: "*"
55

6-
yarnPath: .yarn/releases/yarn-3.6.1.cjs
6+
yarnPath: .yarn/releases/yarn-3.6.3.cjs

package.json

Lines changed: 33 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@sgratzl/chartjs-chart-boxplot",
33
"description": "Chart.js module for charting boxplots and violin charts",
4-
"version": "4.2.4",
4+
"version": "4.2.5",
55
"publishConfig": {
66
"access": "public"
77
},
@@ -73,49 +73,53 @@
7373
},
7474
"devDependencies": {
7575
"@chiogen/rollup-plugin-terser": "^7.1.3",
76-
"@rollup/plugin-commonjs": "^25.0.2",
77-
"@rollup/plugin-node-resolve": "^15.1.0",
76+
"@rollup/plugin-commonjs": "^25.0.4",
77+
"@rollup/plugin-node-resolve": "^15.2.1",
7878
"@rollup/plugin-replace": "^5.0.2",
79-
"@rollup/plugin-typescript": "^11.1.2",
80-
"@types/jest": "^29.5.2",
81-
"@types/jest-image-snapshot": "^6.1.0",
82-
"@types/node": "^20.3.3",
83-
"@typescript-eslint/eslint-plugin": "^5.61.0",
84-
"@typescript-eslint/parser": "^5.61.0",
79+
"@rollup/plugin-typescript": "^11.1.3",
80+
"@types/jest": "^29.5.5",
81+
"@types/jest-image-snapshot": "^6.2.1",
82+
"@types/node": "^20.6.2",
83+
"@typescript-eslint/eslint-plugin": "^6.7.0",
84+
"@typescript-eslint/parser": "^6.7.0",
8585
"@yarnpkg/sdks": "^2.7.1",
8686
"canvas": "^2.11.2",
8787
"canvas-5-polyfill": "^0.1.5",
88-
"chart.js": "^4.3.0",
89-
"eslint": "^8.44.0",
90-
"eslint-config-airbnb-typescript": "^17.0.0",
91-
"eslint-config-prettier": "^8.8.0",
88+
"chart.js": "^4.4.0",
89+
"eslint": "^8.49.0",
90+
"eslint-config-airbnb-typescript": "^17.1.0",
91+
"eslint-config-prettier": "^9.0.0",
9292
"eslint-config-react-app": "^7.0.1",
9393
"eslint-plugin-flowtype": "^8.0.3",
94-
"eslint-plugin-import": "^2.27.5",
94+
"eslint-plugin-import": "^2.28.1",
9595
"eslint-plugin-jsx-a11y": "^6.7.1",
96-
"eslint-plugin-prettier": "^4.2.1",
97-
"eslint-plugin-react": "^7.32.2",
96+
"eslint-plugin-prettier": "^5.0.0",
97+
"eslint-plugin-react": "^7.33.2",
9898
"eslint-plugin-react-hooks": "^4.6.0",
99-
"jest": "^29.6.0",
100-
"jest-environment-jsdom": "^29.6.0",
101-
"jest-image-snapshot": "^6.1.0",
102-
"prettier": "^2.8.8",
99+
"jest": "^29.7.0",
100+
"jest-environment-jsdom": "^29.7.0",
101+
"jest-image-snapshot": "^6.2.0",
102+
"prettier": "^3.0.3",
103103
"rimraf": "^5.0.1",
104-
"rollup": "^3.26.0",
104+
"rollup": "^3.29.2",
105105
"rollup-plugin-cleanup": "^3.2.1",
106-
"rollup-plugin-dts": "^5.3.0",
106+
"rollup-plugin-dts": "^6.0.2",
107107
"ts-jest": "^29.1.1",
108-
"tslib": "^2.6.0",
109-
"typedoc": "^0.24.8",
108+
"tslib": "^2.6.2",
109+
"typedoc": "^0.25.1",
110110
"typedoc-plugin-markdown": "^4.0.0-next.16",
111-
"typedoc-vitepress-theme": "^1.0.0-next.2",
112-
"typescript": "^5.1.6",
113-
"vitepress": "^1.0.0-beta.5",
111+
"typedoc-vitepress-theme": "^1.0.0-next.3",
112+
"typescript": "^5.2.2",
113+
"vitepress": "^1.0.0-rc.14",
114114
"vue": "^3.3.4",
115115
"vue-chartjs": "^5.2.0"
116116
},
117+
"resolutions": {
118+
"@typescript-eslint/eslint-plugin": "^6.7.0",
119+
"@typescript-eslint/parser": "^6.7.0"
120+
},
117121
"scripts": {
118-
"clean": "rimraf --glob build docs node_modules \"*.tgz\" \"*.tsbuildinfo\"",
122+
"clean": "rimraf --glob build node_modules \"*.tgz\" \"*.tsbuildinfo\"",
119123
"compile": "tsc -b tsconfig.c.json",
120124
"start": "yarn run watch",
121125
"watch": "rollup -c -w",
@@ -135,5 +139,5 @@
135139
"docs:build": "yarn run docs:api && vitepress build docs",
136140
"docs:preview": "vitepress preview docs"
137141
},
138-
"packageManager": "[email protected].1"
142+
"packageManager": "[email protected].3"
139143
}

src/__tests__/createChart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export interface ChartHelper<TYPE extends ChartType, DATA extends unknown[] = De
3333
export default function createChart<
3434
TYPE extends ChartType,
3535
DATA extends unknown[] = DefaultDataPoint<TYPE>,
36-
LABEL = string
36+
LABEL = string,
3737
>(config: ChartConfiguration<TYPE, DATA, LABEL>, width = 800, height = 600): ChartHelper<TYPE, DATA, LABEL> {
3838
const canvas = document.createElement('canvas');
3939
canvas.width = width;

src/controllers/BoxPlotController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {
1+
import {
22
Chart,
33
BarController,
44
ControllerDatasetOptions,

src/controllers/StatsBase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BarController, Element, ChartMeta, LinearScale, Scale, UpdateMode } from 'chart.js';
1+
import { BarController, Element, ChartMeta, LinearScale, Scale, UpdateMode } from 'chart.js';
22
import { formatNumber } from 'chart.js/helpers';
33
import { interpolateNumberArray } from '../animation';
44
import { outlierPositioner, patchInHoveredOutlier } from '../tooltip';

src/controllers/ViolinController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {
1+
import {
22
Chart,
33
BarController,
44
ChartItem,

src/elements/BoxAndWiskers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BarElement, ChartType, CommonHoverOptions, ScriptableAndArrayOptions, ScriptableContext } from 'chart.js';
1+
import { BarElement, ChartType, CommonHoverOptions, ScriptableAndArrayOptions, ScriptableContext } from 'chart.js';
22
import {
33
StatsBase,
44
baseDefaults,

src/elements/Violin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {
1+
import {
22
BarElement,
33
type ChartType,
44
type CommonHoverOptions,

src/elements/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Element } from 'chart.js';
1+
import { Element } from 'chart.js';
22
import { drawPoint } from 'chart.js/helpers';
33
import { rnd } from '../data';
44
import type { ExtendedTooltip } from '../tooltip';

0 commit comments

Comments
 (0)