From 1635eb3f2dff04e66f7804ea13fcdad4df441460 Mon Sep 17 00:00:00 2001 From: Samuel Gratzl Date: Sat, 8 Jul 2023 10:40:53 -0400 Subject: [PATCH 1/3] fix: remove internal from id --- src/controllers/BoxPlotController.ts | 5 +---- src/elements/BoxAndWiskers.ts | 3 --- src/elements/Violin.ts | 3 --- 3 files changed, 1 insertion(+), 10 deletions(-) diff --git a/src/controllers/BoxPlotController.ts b/src/controllers/BoxPlotController.ts index 212e827..a7d4c1c 100644 --- a/src/controllers/BoxPlotController.ts +++ b/src/controllers/BoxPlotController.ts @@ -97,10 +97,7 @@ export class BoxPlotChart { - /** - * @internal - */ + > { static id = BoxPlotController.id; constructor(item: ChartItem, config: Omit, 'type'>) { diff --git a/src/elements/BoxAndWiskers.ts b/src/elements/BoxAndWiskers.ts index c62e62b..61f5f4c 100644 --- a/src/elements/BoxAndWiskers.ts +++ b/src/elements/BoxAndWiskers.ts @@ -239,9 +239,6 @@ export class BoxAndWiskers extends StatsBase Date: Sat, 8 Jul 2023 10:45:10 -0400 Subject: [PATCH 2/3] fix: linting --- src/controllers/BoxPlotController.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/BoxPlotController.ts b/src/controllers/BoxPlotController.ts index a7d4c1c..5d678c0 100644 --- a/src/controllers/BoxPlotController.ts +++ b/src/controllers/BoxPlotController.ts @@ -97,7 +97,7 @@ export class BoxPlotChart { +> { static id = BoxPlotController.id; constructor(item: ChartItem, config: Omit, 'type'>) { From 75df06b74fb8f5861dd598a904a0af525e52ee52 Mon Sep 17 00:00:00 2001 From: sgratzl Date: Sat, 8 Jul 2023 14:47:59 +0000 Subject: [PATCH 3/3] chore: release v4.2.3 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a1b96e6..5c4592a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@sgratzl/chartjs-chart-boxplot", "description": "Chart.js module for charting boxplots and violin charts", - "version": "4.2.2", + "version": "4.2.3", "publishConfig": { "access": "public" },