@seatlayer/vue 0.72.0 → 0.74.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/README.md +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ also re-exports the plain JavaScript `SeatPickerWidget` class and the
|
|
|
27
27
|
|
|
28
28
|
- `SeatingChart` — one native Vue component (`SeatLayerSeatingChart`), written
|
|
29
29
|
as a render function so no Vue compiler plugin is needed.
|
|
30
|
-
- `SeasonPicker` —
|
|
30
|
+
- `SeasonPicker` — fixed-inclusion Season selection and returning-holder intent.
|
|
31
31
|
- `SeatPickerWidget` — the framework-agnostic one-call buyer modal.
|
|
32
32
|
- `attachPickerFrame` — the host-side iframe helper for embedded pickers.
|
|
33
33
|
- TypeScript declarations for ESM (`dist/index.d.ts`) and CommonJS
|
|
@@ -76,7 +76,7 @@ async function checkout() {
|
|
|
76
76
|
</template>
|
|
77
77
|
```
|
|
78
78
|
|
|
79
|
-
### Fixed renewable Season
|
|
79
|
+
### Fixed renewable Season
|
|
80
80
|
|
|
81
81
|
```vue
|
|
82
82
|
<SeasonPicker
|
|
@@ -90,8 +90,8 @@ async function checkout() {
|
|
|
90
90
|
The Season handoff is opaque and price-free. Its `pricingAuthority: "host"`
|
|
91
91
|
and `authoritativeAmountIncluded: false` flags mean trusted server code must
|
|
92
92
|
apply the package price, tax, and payment decision before booking the
|
|
93
|
-
identity-only allocation.
|
|
94
|
-
|
|
93
|
+
identity-only allocation. `SeasonPicker` is supported in `@seatlayer/vue`
|
|
94
|
+
`0.72.0` and newer.
|
|
95
95
|
|
|
96
96
|
## Props
|
|
97
97
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seatlayer/vue",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.74.0",
|
|
4
4
|
"description": "SeatLayer's official Vue 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": {
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"typescript"
|
|
57
57
|
],
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@seatlayer/core": "0.
|
|
60
|
-
"@seatlayer/js": "0.
|
|
59
|
+
"@seatlayer/core": "0.74.0",
|
|
60
|
+
"@seatlayer/js": "0.74.0"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"vue": ">=3.3.0"
|