@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/{de-DDXO5ERX.js → de-PQ5BE3PL.js} +2 -2
- package/dist/de-PQ5BE3PL.js.map +1 -0
- package/dist/{es-SKJTYKLL.js → es-EWHL5CZR.js} +2 -2
- package/dist/es-EWHL5CZR.js.map +1 -0
- package/dist/{fr-NPIGOYCU.js → fr-FIEG227H.js} +2 -2
- package/dist/fr-FIEG227H.js.map +1 -0
- package/dist/index.cjs +5 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +5 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/de-DDXO5ERX.js.map +0 -1
- package/dist/es-SKJTYKLL.js.map +0 -1
- package/dist/fr-NPIGOYCU.js.map +0 -1
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": "
|
|
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-
|
|
4299
|
-
de: () => import("./de-
|
|
4300
|
-
fr: () => import("./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) {
|