semiotic 2.0.0 → 2.0.1

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/dist/semiotic.js CHANGED
@@ -4160,16 +4160,19 @@ function bucketizedRenderingFn({ data, type, renderMode, eventListenersGenerator
4160
4160
  translate = [0, 0];
4161
4161
  }
4162
4162
  if (type.axis && type.type === "histogram") {
4163
- renderedSummaryMarks.push(createSummaryAxis({
4164
- summary,
4165
- summaryI,
4166
- axisSettings: type.axis,
4167
- axisCreator,
4168
- projection,
4169
- actualMax,
4170
- adjustedSize,
4171
- columnWidth
4172
- }));
4163
+ renderedSummaryMarks.push({
4164
+ type: "svg-only-mark",
4165
+ Mark: createSummaryAxis({
4166
+ summary,
4167
+ summaryI,
4168
+ axisSettings: type.axis,
4169
+ axisCreator,
4170
+ projection,
4171
+ actualMax,
4172
+ adjustedSize,
4173
+ columnWidth
4174
+ })
4175
+ });
4173
4176
  }
4174
4177
  mappedBars.points.forEach((d) => {
4175
4178
  d.x += translate[0];
@@ -4129,16 +4129,19 @@ function bucketizedRenderingFn({ data, type, renderMode, eventListenersGenerator
4129
4129
  translate = [0, 0];
4130
4130
  }
4131
4131
  if (type.axis && type.type === "histogram") {
4132
- renderedSummaryMarks.push(createSummaryAxis({
4133
- summary,
4134
- summaryI,
4135
- axisSettings: type.axis,
4136
- axisCreator,
4137
- projection,
4138
- actualMax,
4139
- adjustedSize,
4140
- columnWidth
4141
- }));
4132
+ renderedSummaryMarks.push({
4133
+ type: "svg-only-mark",
4134
+ Mark: createSummaryAxis({
4135
+ summary,
4136
+ summaryI,
4137
+ axisSettings: type.axis,
4138
+ axisCreator,
4139
+ projection,
4140
+ actualMax,
4141
+ adjustedSize,
4142
+ columnWidth
4143
+ })
4144
+ });
4142
4145
  }
4143
4146
  mappedBars.points.forEach((d) => {
4144
4147
  d.x += translate[0];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "semiotic",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "The semiotic JavaScript data visualization framework",
5
5
  "main": "dist/semiotic.js",
6
6
  "module": "dist/semiotic.module.js",