From 964c953ad3d05c430187351d0a4f0eaa93d505df Mon Sep 17 00:00:00 2001 From: Samuel Gratzl Date: Fri, 7 Jul 2023 21:55:26 -0400 Subject: [PATCH 1/2] fix: enable id again --- src/controllers/LogarithmicParallelCoordinatesController.ts | 3 --- src/controllers/ParallelCoordinatesController.ts | 3 --- src/elements/LineSegment.ts | 3 --- src/elements/LinearAxis.ts | 3 --- src/scales/PCPScale.ts | 3 --- 5 files changed, 15 deletions(-) diff --git a/src/controllers/LogarithmicParallelCoordinatesController.ts b/src/controllers/LogarithmicParallelCoordinatesController.ts index 3f3bb4c..4787fd5 100644 --- a/src/controllers/LogarithmicParallelCoordinatesController.ts +++ b/src/controllers/LogarithmicParallelCoordinatesController.ts @@ -14,9 +14,6 @@ import patchController from './patchController'; import { PCPScale } from '../scales'; export class LogarithmicParallelCoordinatesController extends ParallelCoordinatesController { - /** - * @internal - */ static readonly id = 'logarithmicPcp'; /** diff --git a/src/controllers/ParallelCoordinatesController.ts b/src/controllers/ParallelCoordinatesController.ts index ed23b14..70c2996 100644 --- a/src/controllers/ParallelCoordinatesController.ts +++ b/src/controllers/ParallelCoordinatesController.ts @@ -277,9 +277,6 @@ export class ParallelCoordinatesController extends DatasetController< }); } - /** - * @internal - */ static readonly id: string = 'pcp'; /** diff --git a/src/elements/LineSegment.ts b/src/elements/LineSegment.ts index eec80e9..7197ec4 100644 --- a/src/elements/LineSegment.ts +++ b/src/elements/LineSegment.ts @@ -130,9 +130,6 @@ export class LineSegment extends Element { export type ILogarithmicAxisOptions = IAxisOptions & LogarithmicScaleOptions; export class LogarithmicAxis extends LogarithmicScale { - /** - * @internal - */ static readonly id = 'logarithmicAxis'; /** diff --git a/src/scales/PCPScale.ts b/src/scales/PCPScale.ts index ae26ee2..c8b7ff4 100644 --- a/src/scales/PCPScale.ts +++ b/src/scales/PCPScale.ts @@ -9,9 +9,6 @@ export class PCPScale extends CategoryScale { }); } - /** - * @internal - */ static readonly id = 'pcp'; /** From 790ed2513ccf12d3cb328370d7bda66ebd37c678 Mon Sep 17 00:00:00 2001 From: sgratzl Date: Sat, 8 Jul 2023 02:05:02 +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 4b30ca9..0545fa5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "chartjs-chart-pcp", "description": "Chart.js module for charting parallel coordinate plots", - "version": "4.2.1", + "version": "4.2.2", "author": { "name": "Samuel Gratzl", "email": "sam@sgratzl.com",