@seatlayer/core 0.12.2 → 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
@@ -545,7 +545,7 @@ var en = {
545
545
  "picker.viewMode": "View mode",
546
546
  "picker.floor": "Floor",
547
547
  "picker.zoomLevel": "Zoom level",
548
- "picker.rungTip.zones": "Farthest rung \u2014 zone blocks (Floor / Lower Bowl / Upper Bowl)",
548
+ "picker.rungTip.zones": "Venue overview \u2014 groups of sections such as North Stand or VIP",
549
549
  "picker.rungTip.sections": "Section blocks \u2014 category-mix fill + availability tint",
550
550
  "picker.rungTip.seats": "Individual seats \u2014 blocks melt into dots",
551
551
  "picker.rungLabel.zones": "ZONES",
@@ -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,
@@ -4295,9 +4296,9 @@ function generateSeatThumb(seat, focalPoint, _neighborSeats) {
4295
4296
 
4296
4297
  // src/i18n/bundles.ts
4297
4298
  var LOADERS = {
4298
- es: () => import("./es-SKJTYKLL.js").then((m) => ({ default: m.es })),
4299
- de: () => import("./de-DDXO5ERX.js").then((m) => ({ default: m.de })),
4300
- fr: () => import("./fr-NPIGOYCU.js").then((m) => ({ default: m.fr }))
4299
+ es: () => import("./es-EWHL5CZR.js").then((m) => ({ default: m.es })),
4300
+ de: () => import("./de-PQ5BE3PL.js").then((m) => ({ default: m.de })),
4301
+ fr: () => import("./fr-FIEG227H.js").then((m) => ({ default: m.fr }))
4301
4302
  };
4302
4303
  var loaded = /* @__PURE__ */ new Set(["en"]);
4303
4304
  async function loadLocale(code) {