@evercam/ui 0.0.52-beta.5 → 0.0.52-beta.6

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/index.mjs CHANGED
@@ -5571,12 +5571,12 @@ const qt = {
5571
5571
  this.svg.selectAll(t).attr("x", (r) => this.getEventRectX(r) + this.textPadding).text(this.getEventText);
5572
5572
  },
5573
5573
  updateBarChart() {
5574
- const e = (d) => this.getEventRectX(d) + this.barXPadding, t = (d) => this.yScale(d.count), r = (d) => this.getEventRectWidth(d) - this.barXPadding * 2, n = (d) => this.yScale.range()[0] - this.yScale(d.count), s = `.${p.barChartGroup} > rect.${p.eventBar}`;
5575
- this.svg.selectAll(s).attr("x", e).attr("width", r).attr("y", t).attr("height", n);
5576
- const o = `.${p.barChartGroup} > rect.${p.eventBarCap}`;
5577
- this.svg.selectAll(o).attr("x", e).attr("width", r).attr("y", t);
5578
- const i = `.${p.barChartGroup} > rect.${p.eventBarHoverZone}`;
5579
- this.svg.selectAll(i).attr("x", e).attr("width", r);
5574
+ const e = (d) => this.getEventRectX(d) + this.barXPadding, t = (d) => this.yScale(d.count), r = (d) => this.getEventRectWidth(d) - this.barXPadding * 2, n = (d) => this.yScale.range()[0] - this.yScale(d.count), s = `.${p.barChartGroup} > rect.${p.eventBarHoverZone}`;
5575
+ this.svg.selectAll(s).attr("x", e).attr("width", r);
5576
+ const o = `.${p.barChartGroup} > rect.${p.eventBar}`;
5577
+ this.svg.selectAll(o).attr("x", e).attr("width", r).attr("y", t).attr("height", n);
5578
+ const i = `.${p.barChartGroup} > rect.${p.eventBarCap}`;
5579
+ this.svg.selectAll(i).attr("x", e).attr("width", r).attr("y", t);
5580
5580
  },
5581
5581
  updateLineGraphs() {
5582
5582
  Object.entries(this.lineGraphGroups).forEach(([e]) => {