@reside-ic/skadi-chart 1.1.3 → 1.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -98,7 +98,7 @@ class CustomLayer extends OptionalLayer {
98
98
  const svg = layerArgs.coreLayers[LayerType.Svg];
99
99
  const { getHtmlId } = layerArgs;
100
100
  svg.append("svg:circle")
101
- .attr("id", `${getHtmlId(this.type)}-circle`)
101
+ .attr("id", `circle-${getHtmlId(this.type)}`)
102
102
  .attr("cx", "50%")
103
103
  .attr("cy", "50%")
104
104
  .attr("r", "5%")
@@ -230,7 +230,7 @@ class CustomLayer extends OptionalLayer {
230
230
  const svg = layerArgs.coreLayers[LayerType.Svg];
231
231
  const { getHtmlId } = layerArgs;
232
232
  svg.append("svg:circle")
233
- .attr("id", `${getHtmlId(this.type)}-circle`)
233
+ .attr("id", `circle-${getHtmlId(this.type)}`)
234
234
  .attr("cx", "50%")
235
235
  .attr("cy", "50%")
236
236
  .attr("r", "5%")
@@ -53,7 +53,7 @@ declare module "types" {
53
53
  tickConfig: XY<TickConfig>;
54
54
  };
55
55
  scaleConfig: {
56
- linearScales: XY<ScaleNumeric>;
56
+ numericalScales: XY<ScaleNumeric>;
57
57
  scaleExtents: Scales;
58
58
  categoricalScales: Partial<XY<CategoricalScaleConfig>>;
59
59
  };