@seatlayer/js 0.64.0 → 0.66.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 +188 -118
- package/dist/index.d.cts +18 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.js +187 -117
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -3113,8 +3113,26 @@ declare class PerformanceGroupPicker {
|
|
|
3113
3113
|
* and a dropped label would otherwise keep its two-tone paint forever.
|
|
3114
3114
|
*/
|
|
3115
3115
|
private seatMarks;
|
|
3116
|
+
/**
|
|
3117
|
+
* The night the tray's seat cards belong to.
|
|
3118
|
+
*
|
|
3119
|
+
* Same formatter as the nights list and the night strip, so the eyebrow on a
|
|
3120
|
+
* card can never name a date differently from the row above it. Null in
|
|
3121
|
+
* same-seat mode: there the cards ARE every night, and labelling them with
|
|
3122
|
+
* one would be false.
|
|
3123
|
+
*/
|
|
3124
|
+
private activePerformanceLabel;
|
|
3116
3125
|
/** Per-night picks for the picker's "Your seats" pane (per-performance). */
|
|
3117
3126
|
private nightSummary;
|
|
3127
|
+
/**
|
|
3128
|
+
* What the buyer has chosen across the WHOLE run.
|
|
3129
|
+
*
|
|
3130
|
+
* The picker can only count the chart in front of it, and for a package that
|
|
3131
|
+
* chart is one night. "1 selected" over a four-night run is the wrong number
|
|
3132
|
+
* in the one place a buyer checks before paying, so the counts come from here
|
|
3133
|
+
* — the only place that knows about the other nights.
|
|
3134
|
+
*/
|
|
3135
|
+
private groupSelectionSummary;
|
|
3118
3136
|
/**
|
|
3119
3137
|
* The three-step strip. "Review" becomes current the moment a hold commits —
|
|
3120
3138
|
* that is the only point at which there is something to review, and it is the
|
package/dist/index.d.ts
CHANGED
|
@@ -3113,8 +3113,26 @@ declare class PerformanceGroupPicker {
|
|
|
3113
3113
|
* and a dropped label would otherwise keep its two-tone paint forever.
|
|
3114
3114
|
*/
|
|
3115
3115
|
private seatMarks;
|
|
3116
|
+
/**
|
|
3117
|
+
* The night the tray's seat cards belong to.
|
|
3118
|
+
*
|
|
3119
|
+
* Same formatter as the nights list and the night strip, so the eyebrow on a
|
|
3120
|
+
* card can never name a date differently from the row above it. Null in
|
|
3121
|
+
* same-seat mode: there the cards ARE every night, and labelling them with
|
|
3122
|
+
* one would be false.
|
|
3123
|
+
*/
|
|
3124
|
+
private activePerformanceLabel;
|
|
3116
3125
|
/** Per-night picks for the picker's "Your seats" pane (per-performance). */
|
|
3117
3126
|
private nightSummary;
|
|
3127
|
+
/**
|
|
3128
|
+
* What the buyer has chosen across the WHOLE run.
|
|
3129
|
+
*
|
|
3130
|
+
* The picker can only count the chart in front of it, and for a package that
|
|
3131
|
+
* chart is one night. "1 selected" over a four-night run is the wrong number
|
|
3132
|
+
* in the one place a buyer checks before paying, so the counts come from here
|
|
3133
|
+
* — the only place that knows about the other nights.
|
|
3134
|
+
*/
|
|
3135
|
+
private groupSelectionSummary;
|
|
3118
3136
|
/**
|
|
3119
3137
|
* The three-step strip. "Review" becomes current the moment a hold commits —
|
|
3120
3138
|
* that is the only point at which there is something to review, and it is the
|