Skip to content

Commit

Permalink
Merge pull request #181 from sgratzl/sgratzl/idfix
Browse files Browse the repository at this point in the history
fix: missing id
  • Loading branch information
sgratzl committed Jul 8, 2023
2 parents 85cffa9 + a6e8ad1 commit fb21bd3
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 21 deletions.
3 changes: 0 additions & 3 deletions src/controllers/BubbleMapController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

/**
Expand Down
3 changes: 0 additions & 3 deletions src/controllers/ChoroplethController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';

/**
Expand Down
6 changes: 0 additions & 6 deletions src/scales/ColorScale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,6 @@ export class ColorScale extends LegendScale<IColorScaleOptions & LinearScaleOpti
}
}

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

/**
Expand Down Expand Up @@ -314,9 +311,6 @@ export class ColorLogarithmicScale extends LogarithmicLegendScale<IColorScaleOpt
return ColorScale.prototype._drawIndicator.call(this);
}

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

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

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

/**
Expand Down
6 changes: 0 additions & 6 deletions src/scales/SizeScale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,6 @@ export class SizeScale extends LegendScale<ISizeScaleOptions & LinearScaleOption
});
}

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

/**
Expand Down Expand Up @@ -201,9 +198,6 @@ export class SizeLogarithmicScale extends LogarithmicLegendScale<ISizeScaleOptio
SizeScale.prototype._drawIndicator.call(this);
}

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

/**
Expand Down

0 comments on commit fb21bd3

Please sign in to comment.