Skip to content

Commit

Permalink
fix: enable id again
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Jul 8, 2023
1 parent 067f554 commit 964c953
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 15 deletions.
3 changes: 0 additions & 3 deletions src/controllers/LogarithmicParallelCoordinatesController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ import patchController from './patchController';
import { PCPScale } from '../scales';

export class LogarithmicParallelCoordinatesController extends ParallelCoordinatesController {
/**
* @internal
*/
static readonly id = 'logarithmicPcp';

/**
Expand Down
3 changes: 0 additions & 3 deletions src/controllers/ParallelCoordinatesController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,6 @@ export class ParallelCoordinatesController extends DatasetController<
});
}

/**
* @internal
*/
static readonly id: string = 'pcp';

/**
Expand Down
3 changes: 0 additions & 3 deletions src/elements/LineSegment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,6 @@ export class LineSegment extends Element<ILineSegmentProps & AnyObject, ILineSeg
ctx.restore();
}

/**
* @internal
*/
static readonly id = 'lineSegment';

/**
Expand Down
3 changes: 0 additions & 3 deletions src/elements/LinearAxis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,6 @@ export class LinearAxis extends LinearScale<ILinearAxisOptions> {
export type ILogarithmicAxisOptions = IAxisOptions & LogarithmicScaleOptions;

export class LogarithmicAxis extends LogarithmicScale<ILogarithmicAxisOptions> {
/**
* @internal
*/
static readonly id = 'logarithmicAxis';

/**
Expand Down
3 changes: 0 additions & 3 deletions src/scales/PCPScale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ export class PCPScale extends CategoryScale {
});
}

/**
* @internal
*/
static readonly id = 'pcp';

/**
Expand Down

0 comments on commit 964c953

Please sign in to comment.