@seatlayer/js 0.50.2 → 0.51.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.cjs +330 -245
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +330 -245
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1658,6 +1658,15 @@ declare class SeatPicker {
|
|
|
1658
1658
|
private baZone;
|
|
1659
1659
|
/** "★ Best seats" premium quick-pick toggle — biases best-available to premium seats. */
|
|
1660
1660
|
private baPremium;
|
|
1661
|
+
/**
|
|
1662
|
+
* The buyer re-opened the best-seats form with seats already in the cart
|
|
1663
|
+
* ("I picked one, actually find us three together"). The card normally
|
|
1664
|
+
* yields this space to the ticket chips the moment anything is selected —
|
|
1665
|
+
* which removed the accelerator at exactly the moment a one-handed phone
|
|
1666
|
+
* buyer wants it. Cleared when the cart empties, a hold lands, or the
|
|
1667
|
+
* buyer backs out.
|
|
1668
|
+
*/
|
|
1669
|
+
private baReopen;
|
|
1661
1670
|
private bestAvailableConfirm;
|
|
1662
1671
|
private releasingHold;
|
|
1663
1672
|
/** Event sales window is closed (read-only load state / live close). */
|
|
@@ -1730,6 +1739,7 @@ declare class SeatPicker {
|
|
|
1730
1739
|
/** Wide-layout ticket panel collapsed (map owns the full width). */
|
|
1731
1740
|
private sideCollapsed;
|
|
1732
1741
|
private sideToggleEl;
|
|
1742
|
+
private pricesBtnEl;
|
|
1733
1743
|
/** True once we've asked the host page to pin us fullscreen (framed, no native). */
|
|
1734
1744
|
private framedFs;
|
|
1735
1745
|
/** Last height (px) posted to a host frame; dedupes redundant reports. */
|
package/dist/index.d.ts
CHANGED
|
@@ -1658,6 +1658,15 @@ declare class SeatPicker {
|
|
|
1658
1658
|
private baZone;
|
|
1659
1659
|
/** "★ Best seats" premium quick-pick toggle — biases best-available to premium seats. */
|
|
1660
1660
|
private baPremium;
|
|
1661
|
+
/**
|
|
1662
|
+
* The buyer re-opened the best-seats form with seats already in the cart
|
|
1663
|
+
* ("I picked one, actually find us three together"). The card normally
|
|
1664
|
+
* yields this space to the ticket chips the moment anything is selected —
|
|
1665
|
+
* which removed the accelerator at exactly the moment a one-handed phone
|
|
1666
|
+
* buyer wants it. Cleared when the cart empties, a hold lands, or the
|
|
1667
|
+
* buyer backs out.
|
|
1668
|
+
*/
|
|
1669
|
+
private baReopen;
|
|
1661
1670
|
private bestAvailableConfirm;
|
|
1662
1671
|
private releasingHold;
|
|
1663
1672
|
/** Event sales window is closed (read-only load state / live close). */
|
|
@@ -1730,6 +1739,7 @@ declare class SeatPicker {
|
|
|
1730
1739
|
/** Wide-layout ticket panel collapsed (map owns the full width). */
|
|
1731
1740
|
private sideCollapsed;
|
|
1732
1741
|
private sideToggleEl;
|
|
1742
|
+
private pricesBtnEl;
|
|
1733
1743
|
/** True once we've asked the host page to pin us fullscreen (framed, no native). */
|
|
1734
1744
|
private framedFs;
|
|
1735
1745
|
/** Last height (px) posted to a host frame; dedupes redundant reports. */
|