From a6e8ad1a889ac8308a3f11f0148c0ba716918bd5 Mon Sep 17 00:00:00 2001 From: Samuel Gratzl Date: Fri, 7 Jul 2023 21:55:12 -0400 Subject: [PATCH] fix: enable id again --- src/controllers/BubbleMapController.ts | 3 --- src/controllers/ChoroplethController.ts | 3 --- src/scales/ColorScale.ts | 6 ------ src/scales/ProjectionScale.ts | 3 --- src/scales/SizeScale.ts | 6 ------ 5 files changed, 21 deletions(-) diff --git a/src/controllers/BubbleMapController.ts b/src/controllers/BubbleMapController.ts index 85005b7..b68be82 100644 --- a/src/controllers/BubbleMapController.ts +++ b/src/controllers/BubbleMapController.ts @@ -104,9 +104,6 @@ export class BubbleMapController extends GeoController<'bubbleMap', MyPointEleme return rScale.getSizeForValue(this.getParsed(index)[rScale.axis as 'r']); } - /** - * @internal - */ static readonly id = 'bubbleMap'; /** diff --git a/src/controllers/ChoroplethController.ts b/src/controllers/ChoroplethController.ts index 13d1479..a3ba442 100644 --- a/src/controllers/ChoroplethController.ts +++ b/src/controllers/ChoroplethController.ts @@ -91,9 +91,6 @@ export class ChoroplethController extends GeoController<'choropleth', GeoFeature return rScale.getColorForValue(this.getParsed(index)[rScale.axis as 'r']); } - /** - * @internal - */ static readonly id = 'choropleth'; /** diff --git a/src/scales/ColorScale.ts b/src/scales/ColorScale.ts index f9a342f..05649f7 100644 --- a/src/scales/ColorScale.ts +++ b/src/scales/ColorScale.ts @@ -258,9 +258,6 @@ export class ColorScale extends LegendScale { ); } - /** - * @internal - */ static readonly id = 'projection'; /** diff --git a/src/scales/SizeScale.ts b/src/scales/SizeScale.ts index a270728..a9beb54 100644 --- a/src/scales/SizeScale.ts +++ b/src/scales/SizeScale.ts @@ -151,9 +151,6 @@ export class SizeScale extends LegendScale