@seatlayer/js 0.21.0 → 0.21.1

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.d.cts CHANGED
@@ -325,7 +325,7 @@ declare class EmbeddedDesigner {
325
325
  * SeatPicker — the full buyer experience as a widget.
326
326
  *
327
327
  * Where `SeatingChart` is canvas-only, SeatPicker owns the complete chrome
328
- * from the canonical UX (SeatmapUX/11 Buyer Picker.dc.html): branded header,
328
+ * from the canonical UX contract: branded header,
329
329
  * live price panel, selection tray with GA steppers, hold countdown, snipe
330
330
  * toasts and expiry recovery — all on top of the shared PickerController, so
331
331
  * every host gets the whole experience with one mount.
package/dist/index.d.ts CHANGED
@@ -325,7 +325,7 @@ declare class EmbeddedDesigner {
325
325
  * SeatPicker — the full buyer experience as a widget.
326
326
  *
327
327
  * Where `SeatingChart` is canvas-only, SeatPicker owns the complete chrome
328
- * from the canonical UX (SeatmapUX/11 Buyer Picker.dc.html): branded header,
328
+ * from the canonical UX contract: branded header,
329
329
  * live price panel, selection tray with GA steppers, hold countdown, snipe
330
330
  * toasts and expiry recovery — all on top of the shared PickerController, so
331
331
  * every host gets the whole experience with one mount.
package/dist/index.js CHANGED
@@ -2688,6 +2688,7 @@ var SeatPicker = class _SeatPicker {
2688
2688
  if (narrow) {
2689
2689
  card.className = "sl-seccard strip on";
2690
2690
  card.setAttribute("role", "status");
2691
+ card.setAttribute("aria-label", t2("picker.sectionSummaryAria", { label: summary.label }));
2691
2692
  card.innerHTML = `<span class="sl-seccard-dot" style="background:${summary.color}"></span><span class="sl-seccard-name">${summary.label}</span><span class="sl-seccard-left">${leftLabel}</span>` + (summary.categories.length ? `<span class="sl-seccard-price">${priceLabel}</span>` : "") + xBtn;
2692
2693
  card.querySelector(".sl-seccard-x").addEventListener("click", () => this.controller.overview());
2693
2694
  (this.els.sheetHead ?? this.els.side ?? this.els.map).appendChild(card);