Skip to content

Commit 689b567

Browse files
authored
Merge pull request #182 from sgratzl/release/v4.2.2
Release v4.2.2
2 parents 85cffa9 + ec99da6 commit 689b567

File tree

6 files changed

+1
-22
lines changed

6 files changed

+1
-22
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "chartjs-chart-geo",
33
"description": "Chart.js module for charting maps",
4-
"version": "4.2.1",
4+
"version": "4.2.2",
55
"author": {
66
"name": "Samuel Gratzl",
77
"email": "sam@sgratzl.com",

src/controllers/BubbleMapController.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,6 @@ export class BubbleMapController extends GeoController<'bubbleMap', MyPointEleme
104104
return rScale.getSizeForValue(this.getParsed(index)[rScale.axis as 'r']);
105105
}
106106

107-
/**
108-
* @internal
109-
*/
110107
static readonly id = 'bubbleMap';
111108

112109
/**

src/controllers/ChoroplethController.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,6 @@ export class ChoroplethController extends GeoController<'choropleth', GeoFeature
9191
return rScale.getColorForValue(this.getParsed(index)[rScale.axis as 'r']);
9292
}
9393

94-
/**
95-
* @internal
96-
*/
9794
static readonly id = 'choropleth';
9895

9996
/**

src/scales/ColorScale.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -258,9 +258,6 @@ export class ColorScale extends LegendScale<IColorScaleOptions & LinearScaleOpti
258258
}
259259
}
260260

261-
/**
262-
* @internal
263-
*/
264261
static readonly id = 'color';
265262

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

317-
/**
318-
* @internal
319-
*/
320314
static readonly id = 'colorLogarithmic';
321315

322316
/**

src/scales/ProjectionScale.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,9 +201,6 @@ export class ProjectionScale extends Scale<IProjectionScaleOptions> {
201201
);
202202
}
203203

204-
/**
205-
* @internal
206-
*/
207204
static readonly id = 'projection';
208205

209206
/**

src/scales/SizeScale.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,6 @@ export class SizeScale extends LegendScale<ISizeScaleOptions & LinearScaleOption
151151
});
152152
}
153153

154-
/**
155-
* @internal
156-
*/
157154
static readonly id = 'size';
158155

159156
/**
@@ -201,9 +198,6 @@ export class SizeLogarithmicScale extends LogarithmicLegendScale<ISizeScaleOptio
201198
SizeScale.prototype._drawIndicator.call(this);
202199
}
203200

204-
/**
205-
* @internal
206-
*/
207201
static readonly id = 'sizeLogarithmic';
208202

209203
/**

0 commit comments

Comments
 (0)