@seatlayer/js 0.58.0 → 0.59.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/{hostedCheckout-3Y24DB65.js → hostedCheckout-ILVKHB3C.js} +8 -2
- package/dist/index.cjs +147 -42
- package/dist/index.d.cts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +139 -40
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1971,7 +1971,6 @@ declare class SeatPicker {
|
|
|
1971
1971
|
/** Wide-layout ticket panel collapsed (map owns the full width). */
|
|
1972
1972
|
private sideCollapsed;
|
|
1973
1973
|
private sideToggleEl;
|
|
1974
|
-
private pricesBtnEl;
|
|
1975
1974
|
/** True once we've asked the host page to pin us fullscreen (framed, no native). */
|
|
1976
1975
|
private framedFs;
|
|
1977
1976
|
/** Last height (px) posted to a host frame; dedupes redundant reports. */
|
|
@@ -2286,6 +2285,12 @@ declare class SeatPicker {
|
|
|
2286
2285
|
* that shows one price while checkout charges another destroys trust.
|
|
2287
2286
|
*/
|
|
2288
2287
|
private paidPrice;
|
|
2288
|
+
/** The half of a legend's inputs the rail and the price list share, resolved
|
|
2289
|
+
* once so the two renderings cannot be given different answers. */
|
|
2290
|
+
private legendDeps;
|
|
2291
|
+
/** Paint the phone's always-visible legend; the chip HTML lives in
|
|
2292
|
+
* pickerLegend.ts. A legend of ONE teaches nothing, so it stays away. */
|
|
2293
|
+
private syncPriceRail;
|
|
2289
2294
|
private syncPrices;
|
|
2290
2295
|
/** Tap a price row → filter + frame that category on the map; tap again to
|
|
2291
2296
|
* clear. Shares `priceBandKeys` with the band selector so the row-dim state
|
package/dist/index.d.ts
CHANGED
|
@@ -1971,7 +1971,6 @@ declare class SeatPicker {
|
|
|
1971
1971
|
/** Wide-layout ticket panel collapsed (map owns the full width). */
|
|
1972
1972
|
private sideCollapsed;
|
|
1973
1973
|
private sideToggleEl;
|
|
1974
|
-
private pricesBtnEl;
|
|
1975
1974
|
/** True once we've asked the host page to pin us fullscreen (framed, no native). */
|
|
1976
1975
|
private framedFs;
|
|
1977
1976
|
/** Last height (px) posted to a host frame; dedupes redundant reports. */
|
|
@@ -2286,6 +2285,12 @@ declare class SeatPicker {
|
|
|
2286
2285
|
* that shows one price while checkout charges another destroys trust.
|
|
2287
2286
|
*/
|
|
2288
2287
|
private paidPrice;
|
|
2288
|
+
/** The half of a legend's inputs the rail and the price list share, resolved
|
|
2289
|
+
* once so the two renderings cannot be given different answers. */
|
|
2290
|
+
private legendDeps;
|
|
2291
|
+
/** Paint the phone's always-visible legend; the chip HTML lives in
|
|
2292
|
+
* pickerLegend.ts. A legend of ONE teaches nothing, so it stays away. */
|
|
2293
|
+
private syncPriceRail;
|
|
2289
2294
|
private syncPrices;
|
|
2290
2295
|
/** Tap a price row → filter + frame that category on the map; tap again to
|
|
2291
2296
|
* clear. Shares `priceBandKeys` with the band selector so the row-dim state
|