Skip to content

Commit

Permalink
Merge pull request #67 from sgratzl/release/v4.2.2
Browse files Browse the repository at this point in the history
Release v4.2.2
  • Loading branch information
sgratzl authored Jul 8, 2023
2 parents a041fc6 + fa64d95 commit f044777
Show file tree
Hide file tree
Showing 8 changed files with 1 addition and 22 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
3 changes: 0 additions & 3 deletions src/controllers/BarWithErrorBarsController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ export class BarWithErrorBarsController extends BarController {
super.updateElement(element, index, properties, mode);
}

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

/**
Expand Down
3 changes: 0 additions & 3 deletions src/controllers/LineWithErrorBarsController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,6 @@ export class LineWithErrorBarsController extends LineController {
}
}

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

/**
Expand Down
3 changes: 0 additions & 3 deletions src/controllers/PolarAreaWithErrorBarsController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,6 @@ export class PolarAreaWithErrorBarsController extends PolarAreaController {
scale.getDistanceFromCenterForValue = bak;
}

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

/**
Expand Down
3 changes: 0 additions & 3 deletions src/controllers/ScatterWithErrorBarsController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,6 @@ export class ScatterWithErrorBarsController extends ScatterController {
}
}

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

/**
Expand Down
3 changes: 0 additions & 3 deletions src/elements/ArcWithErrorBar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ export default class ArcWithErrorBar extends ArcElement {
renderErrorBarArc(this, ctx);
}

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

/**
Expand Down
3 changes: 0 additions & 3 deletions src/elements/BarWithErrorBar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ export default class BarWithErrorBar extends BarElement {
renderErrorBar(this, ctx);
}

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

/**
Expand Down
3 changes: 0 additions & 3 deletions src/elements/PointWithErrorBar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ export default class PointWithErrorBar extends PointElement {
renderErrorBar(this as any, ctx);
}

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

/**
Expand Down

0 comments on commit f044777

Please sign in to comment.