@seatlayer/react 0.72.0 → 0.72.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/README.md +5 -6
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -30,8 +30,8 @@ selects and **holds**, and your trusted server **books** the hold.
|
|
|
30
30
|
your styles own.
|
|
31
31
|
- `SeatPicker` — the complete buyer experience: map, legend, tray, pricing, and
|
|
32
32
|
the checkout hand-off.
|
|
33
|
-
- `SeasonPicker` —
|
|
34
|
-
|
|
33
|
+
- `SeasonPicker` — fixed-inclusion Season selection and returning-holder intent
|
|
34
|
+
with the same typed lifecycle and imperative-handle conventions.
|
|
35
35
|
- `SeatManager` — the organizer control room, for dashboards that monitor and
|
|
36
36
|
block live inventory.
|
|
37
37
|
- `EmbeddedDesigner` — a hosted chart Designer inside your own application.
|
|
@@ -85,7 +85,7 @@ await chart.current?.releaseLabels(['A-12']); // keep the remainder hel
|
|
|
85
85
|
await chart.current?.release(); // release the current hold
|
|
86
86
|
```
|
|
87
87
|
|
|
88
|
-
### Fixed renewable Season
|
|
88
|
+
### Fixed renewable Season
|
|
89
89
|
|
|
90
90
|
```tsx
|
|
91
91
|
const season = useRef<SeasonPickerHandle>(null);
|
|
@@ -103,9 +103,8 @@ await season.current?.holdSameSeat(['A-1'], 'sop_checkout_1183');
|
|
|
103
103
|
The browser handoff is opaque and price-free. Its `pricingAuthority: "host"`
|
|
104
104
|
and `authoritativeAmountIncluded: false` flags mean trusted server code must
|
|
105
105
|
apply the package price, tax, and payment decision before booking the
|
|
106
|
-
identity-only allocation.
|
|
107
|
-
|
|
108
|
-
it supported Season evidence.
|
|
106
|
+
identity-only allocation. `SeasonPicker` is supported in `@seatlayer/react`
|
|
107
|
+
`0.72.0` and newer.
|
|
109
108
|
|
|
110
109
|
For the complete buyer experience — map, legend, priced tray, and the checkout
|
|
111
110
|
hand-off — render `SeatPicker` instead:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seatlayer/react",
|
|
3
|
-
"version": "0.72.
|
|
3
|
+
"version": "0.72.1",
|
|
4
4
|
"description": "SeatLayer's official React seating chart and seat map SDK — live availability, seat selection, temporary holds, and a typed TypeScript API for ticketing apps.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -73,8 +73,8 @@
|
|
|
73
73
|
"typescript"
|
|
74
74
|
],
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@seatlayer/core": "0.72.
|
|
77
|
-
"@seatlayer/js": "0.72.
|
|
76
|
+
"@seatlayer/core": "0.72.1",
|
|
77
|
+
"@seatlayer/js": "0.72.1"
|
|
78
78
|
},
|
|
79
79
|
"peerDependencies": {
|
|
80
80
|
"react": ">=17.0.0"
|