@seatlayer/js 0.15.1 → 0.16.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
@@ -425,6 +425,7 @@ declare class SeatPicker {
425
425
  private readonly api;
426
426
  private readonly apiBase;
427
427
  private readonly controller;
428
+ private readonly maxTickets;
428
429
  private root;
429
430
  private mapHost;
430
431
  private rendered;
@@ -456,6 +457,8 @@ declare class SeatPicker {
456
457
  private a11yFilter;
457
458
  private baQty;
458
459
  private baCat;
460
+ private bestAvailableConfirm;
461
+ private releasingHold;
459
462
  private rungsEl;
460
463
  private floorsEl;
461
464
  private secCardEl;
@@ -535,6 +538,14 @@ declare class SeatPicker {
535
538
  /** Update only the action affordance; selection callbacks must not refire. */
536
539
  private committedSelection;
537
540
  private pendingSelectionCount;
541
+ private heldGACounts;
542
+ private pendingGACount;
543
+ private heldTicketCount;
544
+ private totalTicketCount;
545
+ /** Held tickets and standing quantities consume the same order-wide cap. */
546
+ private updateSelectionCapacity;
547
+ private canAddTicket;
548
+ private pendingGATotal;
538
549
  private syncCta;
539
550
  private setCtaPhase;
540
551
  /** Session-scoped capability key: isolated by API origin and event. */
@@ -564,12 +575,8 @@ declare class SeatPicker {
564
575
  private catPrice;
565
576
  /** Derive price bands: one chip per distinct price (≤5), else quantile ranges. */
566
577
  private priceBands;
567
- /**
568
- * Build the price-band chip row in the side panel, directly under the "Prices"
569
- * header and above the legend it dims. Living in the panel (not a map overlay)
570
- * keeps it clear of the top-center rung pills and top-left a11y chips, and it
571
- * rides the bottom sheet on narrow layouts. Skipped when there's <2 bands.
572
- */
578
+ /** Build the compact price selector in the panel header. Choosing a band both
579
+ * filters availability and smoothly frames the matching seats on the map. */
573
580
  private buildPriceFilter;
574
581
  /** Build the rung pills (charts with sections) and floor switcher (>1 floor). */
575
582
  private buildArenaChrome;
@@ -620,6 +627,7 @@ declare class SeatPicker {
620
627
  private evictTakenSelections;
621
628
  private syncTray;
622
629
  private removeHeldLabel;
630
+ private handleChangeSeats;
623
631
  private handleCta;
624
632
  private startHoldTimer;
625
633
  private stopHoldTimer;
package/dist/index.d.ts CHANGED
@@ -425,6 +425,7 @@ declare class SeatPicker {
425
425
  private readonly api;
426
426
  private readonly apiBase;
427
427
  private readonly controller;
428
+ private readonly maxTickets;
428
429
  private root;
429
430
  private mapHost;
430
431
  private rendered;
@@ -456,6 +457,8 @@ declare class SeatPicker {
456
457
  private a11yFilter;
457
458
  private baQty;
458
459
  private baCat;
460
+ private bestAvailableConfirm;
461
+ private releasingHold;
459
462
  private rungsEl;
460
463
  private floorsEl;
461
464
  private secCardEl;
@@ -535,6 +538,14 @@ declare class SeatPicker {
535
538
  /** Update only the action affordance; selection callbacks must not refire. */
536
539
  private committedSelection;
537
540
  private pendingSelectionCount;
541
+ private heldGACounts;
542
+ private pendingGACount;
543
+ private heldTicketCount;
544
+ private totalTicketCount;
545
+ /** Held tickets and standing quantities consume the same order-wide cap. */
546
+ private updateSelectionCapacity;
547
+ private canAddTicket;
548
+ private pendingGATotal;
538
549
  private syncCta;
539
550
  private setCtaPhase;
540
551
  /** Session-scoped capability key: isolated by API origin and event. */
@@ -564,12 +575,8 @@ declare class SeatPicker {
564
575
  private catPrice;
565
576
  /** Derive price bands: one chip per distinct price (≤5), else quantile ranges. */
566
577
  private priceBands;
567
- /**
568
- * Build the price-band chip row in the side panel, directly under the "Prices"
569
- * header and above the legend it dims. Living in the panel (not a map overlay)
570
- * keeps it clear of the top-center rung pills and top-left a11y chips, and it
571
- * rides the bottom sheet on narrow layouts. Skipped when there's <2 bands.
572
- */
578
+ /** Build the compact price selector in the panel header. Choosing a band both
579
+ * filters availability and smoothly frames the matching seats on the map. */
573
580
  private buildPriceFilter;
574
581
  /** Build the rung pills (charts with sections) and floor switcher (>1 floor). */
575
582
  private buildArenaChrome;
@@ -620,6 +627,7 @@ declare class SeatPicker {
620
627
  private evictTakenSelections;
621
628
  private syncTray;
622
629
  private removeHeldLabel;
630
+ private handleChangeSeats;
623
631
  private handleCta;
624
632
  private startHoldTimer;
625
633
  private stopHoldTimer;