@seatlayer/core 0.12.3 → 0.13.0

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.js CHANGED
@@ -3118,6 +3118,7 @@ var _SeatmapRenderer = class _SeatmapRenderer {
3118
3118
  const y1 = (this.stage.height() - this.stage.y()) / s;
3119
3119
  let count = 0;
3120
3120
  for (const seat of this.seats) {
3121
+ if (seat.kind === "booth") continue;
3121
3122
  if (seat.x < x0 || seat.x > x1 || seat.y < y0 || seat.y > y1) continue;
3122
3123
  const t2 = new Text({
3123
3124
  x: seat.x,