@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.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +10 -5
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
|
|
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
|
|
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);
|