From 6061ad6356036c0e5fdafb250d135a8d162e11f6 Mon Sep 17 00:00:00 2001 From: Samuel Gratzl Date: Fri, 7 Jul 2023 21:54:59 -0400 Subject: [PATCH 1/2] fix: enable id again --- src/controllers/BarWithErrorBarsController.ts | 3 --- src/controllers/LineWithErrorBarsController.ts | 3 --- src/controllers/PolarAreaWithErrorBarsController.ts | 3 --- src/controllers/ScatterWithErrorBarsController.ts | 3 --- src/elements/ArcWithErrorBar.ts | 3 --- src/elements/BarWithErrorBar.ts | 3 --- src/elements/PointWithErrorBar.ts | 3 --- 7 files changed, 21 deletions(-) diff --git a/src/controllers/BarWithErrorBarsController.ts b/src/controllers/BarWithErrorBarsController.ts index 9f5e89f..cb9495a 100644 --- a/src/controllers/BarWithErrorBarsController.ts +++ b/src/controllers/BarWithErrorBarsController.ts @@ -92,9 +92,6 @@ export class BarWithErrorBarsController extends BarController { super.updateElement(element, index, properties, mode); } - /** - * @internal - */ static readonly id = 'barWithErrorBars'; /** diff --git a/src/controllers/LineWithErrorBarsController.ts b/src/controllers/LineWithErrorBarsController.ts index e75e6d7..51d12e2 100644 --- a/src/controllers/LineWithErrorBarsController.ts +++ b/src/controllers/LineWithErrorBarsController.ts @@ -146,9 +146,6 @@ export class LineWithErrorBarsController extends LineController { } } - /** - * @internal - */ static readonly id = 'lineWithErrorBars'; /** diff --git a/src/controllers/PolarAreaWithErrorBarsController.ts b/src/controllers/PolarAreaWithErrorBarsController.ts index fd1b893..855df3b 100644 --- a/src/controllers/PolarAreaWithErrorBarsController.ts +++ b/src/controllers/PolarAreaWithErrorBarsController.ts @@ -156,9 +156,6 @@ export class PolarAreaWithErrorBarsController extends PolarAreaController { scale.getDistanceFromCenterForValue = bak; } - /** - * @internal - */ static readonly id = 'polarAreaWithErrorBars'; /** diff --git a/src/controllers/ScatterWithErrorBarsController.ts b/src/controllers/ScatterWithErrorBarsController.ts index ace0aa7..68c1bbc 100644 --- a/src/controllers/ScatterWithErrorBarsController.ts +++ b/src/controllers/ScatterWithErrorBarsController.ts @@ -114,9 +114,6 @@ export class ScatterWithErrorBarsController extends ScatterController { } } - /** - * @internal - */ static readonly id = 'scatterWithErrorBars'; /** diff --git a/src/elements/ArcWithErrorBar.ts b/src/elements/ArcWithErrorBar.ts index 65fbf1f..7bd5ef4 100644 --- a/src/elements/ArcWithErrorBar.ts +++ b/src/elements/ArcWithErrorBar.ts @@ -18,9 +18,6 @@ export default class ArcWithErrorBar extends ArcElement { renderErrorBarArc(this, ctx); } - /** - * @internal - */ static readonly id = 'arcWithErrorBar'; /** diff --git a/src/elements/BarWithErrorBar.ts b/src/elements/BarWithErrorBar.ts index d2c95af..0d7dc06 100644 --- a/src/elements/BarWithErrorBar.ts +++ b/src/elements/BarWithErrorBar.ts @@ -18,9 +18,6 @@ export default class BarWithErrorBar extends BarElement { renderErrorBar(this, ctx); } - /** - * @internal - */ static readonly id = 'barWithErrorBar'; /** diff --git a/src/elements/PointWithErrorBar.ts b/src/elements/PointWithErrorBar.ts index d679736..8f66e76 100644 --- a/src/elements/PointWithErrorBar.ts +++ b/src/elements/PointWithErrorBar.ts @@ -19,9 +19,6 @@ export default class PointWithErrorBar extends PointElement { renderErrorBar(this as any, ctx); } - /** - * @internal - */ static readonly id = 'pointWithErrorBar'; /** From fa64d9508a9e4a30f8d624ab5bef8067f559b946 Mon Sep 17 00:00:00 2001 From: sgratzl Date: Sat, 8 Jul 2023 02:04:55 +0000 Subject: [PATCH 2/2] chore: release v4.2.2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f0106bf..e4dc30b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "chartjs-chart-error-bars", "description": "Chart.js module for charting error bars", - "version": "4.2.1", + "version": "4.2.2", "author": { "name": "Samuel Gratzl", "email": "samu@sgratzl.com",