Skip to content

Commit

Permalink
Merge pull request #57 from sgratzl/release/v4.1.1
Browse files Browse the repository at this point in the history
Release v4.1.1
  • Loading branch information
sgratzl authored Jan 14, 2023
2 parents 3358b30 + fa93d3e commit 2612d5b
Show file tree
Hide file tree
Showing 24 changed files with 1,062 additions and 826 deletions.
1 change: 1 addition & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ module.exports = {
// '@typescript-eslint/no-non-null-assertion': 'off',
'max-classes-per-file': 'off',
'no-underscore-dangle': 'off',
'import/extensions': 'off',
},
};
510 changes: 263 additions & 247 deletions .yarn/releases/yarn-3.3.0.cjs → .yarn/releases/yarn-3.3.1.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.3.0.cjs
yarnPath: .yarn/releases/yarn-3.3.1.cjs
47 changes: 25 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@sgratzl/chartjs-chart-boxplot",
"description": "Chart.js module for charting boxplots and violin charts",
"version": "4.1.0",
"version": "4.1.1",
"publishConfig": {
"access": "public"
},
Expand Down Expand Up @@ -73,41 +73,41 @@
},
"devDependencies": {
"@chiogen/rollup-plugin-terser": "^7.1.3",
"@rollup/plugin-commonjs": "^23.0.7",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.2.4",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.2.5",
"@types/jest-image-snapshot": "^6.1.0",
"@types/node": "^18.11.16",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@yarnpkg/sdks": "^2.6.3",
"canvas": "^2.10.2",
"canvas": "^2.11.0",
"canvas-5-polyfill": "^0.1.5",
"chart.js": "^4.1.1",
"eslint": "^8.30.0",
"chart.js": "^4.1.2",
"eslint": "^8.31.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-image-snapshot": "^6.1.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"rollup": "^3.7.5",
"prettier": "^2.8.3",
"rimraf": "^4.0.5",
"rollup": "^3.10.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^5.0.0",
"ts-jest": "^29.0.3",
"rollup-plugin-dts": "^5.1.1",
"ts-jest": "^29.0.5",
"tslib": "^2.4.1",
"typedoc": "^0.23.22",
"typescript": "4.9.3"
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
},
"scripts": {
"clean": "rimraf build docs node_modules \"*.tgz\" \"*.tsbuildinfo\"",
Expand All @@ -128,10 +128,13 @@
"docs": "typedoc src/index.ts",
"prepare": "yarn run build"
},
"packageManager": "[email protected].0",
"packageManager": "[email protected].1",
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
},
"[email protected]": {
"unplugged": true
}
}
}
2 changes: 1 addition & 1 deletion samples/animation.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
</head>

Expand Down
2 changes: 1 addition & 1 deletion samples/boxplot_and_violin.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
</head>

Expand Down
4 changes: 2 additions & 2 deletions samples/datalimits.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
</head>

Expand Down
4 changes: 2 additions & 2 deletions samples/datastructures.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
</head>

Expand Down
4 changes: 2 additions & 2 deletions samples/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
</head>

Expand Down
8 changes: 4 additions & 4 deletions samples/default_esm.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
<div id="container" style="width: 75%">
<canvas id="canvas"></canvas>
</div>
<script defer src="https://unpkg.com/es-module-shims"></script>
<script defer src=" https://cdn.jsdelivr.net/npm/es-module-shims"></script>
<script type="importmap-shim">
{
"imports": {
"chart.js": "https://unpkg.com/chart.js@~4.1.1?module",
"chart.js/helpers": "https://unpkg.com/chart.js@~4.1.1/helpers/helpers.esm.js?module",
"@sgratzl/boxplots": "https://unpkg.com/@sgratzl/boxplots?module",
"chart.js": " https://cdn.jsdelivr.net/npm/chart.js@~4.1.1?module",
"chart.js/helpers": " https://cdn.jsdelivr.net/npm/chart.js@~4.1.1/helpers/helpers.esm.js?module",
"@sgratzl/boxplots": " https://cdn.jsdelivr.net/npm/@sgratzl/boxplots?module",
"@sgratzl/chartjs-chart-boxplot": "../build/index.js"
}
}
Expand Down
2 changes: 1 addition & 1 deletion samples/empty.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
</head>

Expand Down
2 changes: 1 addition & 1 deletion samples/fivenum.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
</head>

Expand Down
4 changes: 2 additions & 2 deletions samples/horizontalBoxplot.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html>
<head>
<title>Horizontal Bar Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
</head>

Expand Down
4 changes: 2 additions & 2 deletions samples/horizontalViolin.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html>
<head>
<title>Violin Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
</head>

Expand Down
2 changes: 1 addition & 1 deletion samples/hybrid.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
<script src="./utils.js"></script>
</head>
Expand Down
4 changes: 2 additions & 2 deletions samples/items.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
</head>

Expand Down
4 changes: 2 additions & 2 deletions samples/large_numbers.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
</head>

Expand Down
4 changes: 2 additions & 2 deletions samples/logarithm.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
</head>

Expand Down
2 changes: 1 addition & 1 deletion samples/mediancolor.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
</head>

Expand Down
4 changes: 2 additions & 2 deletions samples/minmax.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html>
<head>
<title>Box Plot Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
</head>

Expand Down
4 changes: 2 additions & 2 deletions samples/violin.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html>
<head>
<title>Violin Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
</head>

Expand Down
4 changes: 2 additions & 2 deletions samples/violin_empty.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html>
<head>
<title>Violin Chart</title>
<script src="https://unpkg.com/chart.js@~4.1.1"></script>
<script src=" https://cdn.jsdelivr.net/npm/chart.js@~4.1.1"></script>
<script src="../build/index.umd.js"></script>
<script src="https://unpkg.com/d3-random@latest/dist/d3-random.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/d3-random@latest/dist/d3-random.min.js"></script>
<script src="./utils.js"></script>
</head>

Expand Down
1 change: 0 additions & 1 deletion src/controllers/BoxPlotController.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ describe('boxplot', () => {
{
label: 'Line',
type: 'line',
fill: 1,
data: samples.numbers({ count: 7, max: 150 }) as any,
},
],
Expand Down
Loading

0 comments on commit 2612d5b

Please sign in to comment.