@evercam/ui 0.0.43 → 0.0.44

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
@@ -5237,7 +5237,7 @@ const Wt = {
5237
5237
  this.yScale.domain([0, t]);
5238
5238
  },
5239
5239
  initZoomBehavior() {
5240
- this.disableZoom || (this.zoomBehavior = u.zoom().on("zoom", this.handleZoom).scaleExtent([0.25, 75e4]), this.svg.call(this.zoomBehavior));
5240
+ this.disableZoom || (this.zoomBehavior = u.zoom().on("zoom", this.handleZoom).scaleExtent([1e-4, 85e4]), this.svg.call(this.zoomBehavior));
5241
5241
  },
5242
5242
  initSelectedTimestampCursor() {
5243
5243
  this.svg.append("line").attr("class", O.selectedTimestampCursor).style("stroke", "red").style("stroke-width", "1px").style("opacity", 0).attr("x1", 0).attr("x2", 0).attr("y1", 0).attr("y2", this.timelineHeight), this.repositionSelectedTimestampCursor();