@ticketlayer/elements 0.3.3 → 1.0.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 +3 -2
- package/dist/cjs/{index-BpfoKd9Q.js → index-DanPUX0s.js} +1 -1
- package/dist/cjs/index.cjs.js +2 -1
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/ticket-selector-BYVL13k_.js +3623 -0
- package/dist/cjs/ticketlayer-elements.cjs.js +2 -2
- package/dist/cjs/tl-buy-modal.cjs.entry.js +4 -4
- package/dist/cjs/tl-buy-tickets-button.cjs.entry.js +89 -71
- package/dist/cjs/tl-buy-tickets-wrapper.cjs.entry.js +62 -31
- package/dist/cjs/tl-cart-badge.cjs.entry.js +75 -62
- package/dist/cjs/tl-cart-drawer.cjs.entry.js +52 -24
- package/dist/cjs/tl-cart.cjs.entry.js +72 -98
- package/dist/cjs/tl-checkout-wrapper.cjs.entry.js +52 -30
- package/dist/cjs/tl-event-card.cjs.entry.js +44 -105
- package/dist/cjs/tl-event-list.cjs.entry.js +73 -36
- package/dist/cjs/tl-login.cjs.entry.js +75 -141
- package/dist/cjs/tl-my-orders.cjs.entry.js +53 -92
- package/dist/cjs/tl-occurrence-selector_2.cjs.entry.js +205 -641
- package/dist/cjs/tl-order-confirmation.cjs.entry.js +72 -105
- package/dist/cjs/tl-order-tickets_2.cjs.entry.js +50 -76
- package/dist/cjs/tl-promo-code.cjs.entry.js +51 -47
- package/dist/cjs/tl-seat-map.cjs.entry.js +4 -4
- package/dist/cjs/web-query-Ce73jB4k.js +16 -0
- package/dist/collection/components/tl-buy-modal/tl-buy-modal.css +12 -19
- package/dist/collection/components/tl-buy-modal/tl-buy-modal.js +2 -2
- package/dist/collection/components/tl-buy-tickets-button/tl-buy-tickets-button.css +41 -4
- package/dist/collection/components/tl-buy-tickets-button/tl-buy-tickets-button.js +105 -76
- package/dist/collection/components/tl-buy-tickets-wrapper/tl-buy-tickets-wrapper.css +2 -2
- package/dist/collection/components/tl-buy-tickets-wrapper/tl-buy-tickets-wrapper.js +73 -30
- package/dist/collection/components/tl-cart/tl-cart.css +52 -51
- package/dist/collection/components/tl-cart/tl-cart.js +82 -101
- package/dist/collection/components/tl-cart-badge/tl-cart-badge.css +11 -11
- package/dist/collection/components/tl-cart-badge/tl-cart-badge.js +62 -62
- package/dist/collection/components/tl-cart-drawer/tl-cart-drawer.css +6 -6
- package/dist/collection/components/tl-cart-drawer/tl-cart-drawer.js +56 -24
- package/dist/collection/components/tl-checkout-wrapper/tl-checkout-wrapper.css +2 -2
- package/dist/collection/components/tl-checkout-wrapper/tl-checkout-wrapper.js +61 -29
- package/dist/collection/components/tl-event-card/event-card-adapter.js +11 -23
- package/dist/collection/components/tl-event-card/tl-event-card.css +22 -22
- package/dist/collection/components/tl-event-card/tl-event-card.js +51 -84
- package/dist/collection/components/tl-event-list/tl-event-list.css +17 -17
- package/dist/collection/components/tl-event-list/tl-event-list.js +82 -38
- package/dist/collection/components/tl-login/tl-login.css +26 -26
- package/dist/collection/components/tl-login/tl-login.js +83 -147
- package/dist/collection/components/tl-my-orders/tl-my-orders.css +40 -40
- package/dist/collection/components/tl-my-orders/tl-my-orders.js +58 -96
- package/dist/collection/components/tl-occurrence-selector/tl-occurrence-selector.css +54 -65
- package/dist/collection/components/tl-occurrence-selector/tl-occurrence-selector.js +137 -516
- package/dist/collection/components/tl-order-confirmation/tl-order-confirmation.css +38 -38
- package/dist/collection/components/tl-order-confirmation/tl-order-confirmation.js +81 -113
- package/dist/collection/components/tl-order-tickets/tl-order-tickets.css +9 -9
- package/dist/collection/components/tl-order-tickets/tl-order-tickets.js +57 -92
- package/dist/collection/components/tl-promo-code/tl-promo-code.css +25 -25
- package/dist/collection/components/tl-promo-code/tl-promo-code.js +55 -50
- package/dist/collection/components/tl-seat-map/tl-seat-map.css +10 -10
- package/dist/collection/components/tl-seat-map/tl-seat-map.js +2 -2
- package/dist/collection/components/tl-ticket/tl-ticket.css +13 -13
- package/dist/collection/components/tl-ticket-selector/tl-ticket-selector.css +74 -49
- package/dist/collection/components/tl-ticket-selector/tl-ticket-selector.js +95 -135
- package/dist/collection/utils/cart-totals.js +9 -0
- package/dist/collection/utils/order-summary.js +15 -99
- package/dist/collection/utils/testing/deep-text.js +29 -0
- package/dist/collection/utils/testing/fixtures.js +290 -0
- package/dist/collection/utils/testing/mock-sdk.js +13 -2
- package/dist/collection/utils/web-query.js +12 -0
- package/dist/collection/utils/web-storage.js +22 -0
- package/dist/components/ticket-selector.js +1 -0
- package/dist/components/tl-buy-modal.js +1 -1
- package/dist/components/tl-buy-tickets-button.js +1 -1
- package/dist/components/tl-buy-tickets-wrapper2.js +1 -1
- package/dist/components/tl-cart-badge.js +1 -1
- package/dist/components/tl-cart-drawer.js +1 -1
- package/dist/components/tl-cart2.js +1 -1
- package/dist/components/tl-checkout-wrapper2.js +1 -1
- package/dist/components/tl-event-card2.js +1 -1
- package/dist/components/tl-event-list.js +1 -1
- package/dist/components/tl-login2.js +1 -1
- package/dist/components/tl-my-orders.js +1 -1
- package/dist/components/tl-occurrence-selector2.js +1 -1
- package/dist/components/tl-order-confirmation.js +1 -1
- package/dist/components/tl-order-tickets2.js +1 -1
- package/dist/components/tl-promo-code.js +1 -1
- package/dist/components/tl-seat-map.js +1 -1
- package/dist/components/tl-ticket-selector2.js +1 -1
- package/dist/components/tl-ticket2.js +1 -1
- package/dist/components/web-query.js +1 -0
- package/dist/elements.docs.json +36 -36
- package/dist/esm/{index-CNX8hZa8.js → index-imfxp765.js} +1 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/loader.js +3 -3
- package/dist/esm/ticket-selector-BwChnHVC.js +3606 -0
- package/dist/esm/ticketlayer-elements.js +3 -3
- package/dist/esm/tl-buy-modal.entry.js +4 -4
- package/dist/esm/tl-buy-tickets-button.entry.js +90 -72
- package/dist/esm/tl-buy-tickets-wrapper.entry.js +63 -32
- package/dist/esm/tl-cart-badge.entry.js +76 -63
- package/dist/esm/tl-cart-drawer.entry.js +53 -25
- package/dist/esm/tl-cart.entry.js +73 -99
- package/dist/esm/tl-checkout-wrapper.entry.js +53 -31
- package/dist/esm/tl-event-card.entry.js +45 -106
- package/dist/esm/tl-event-list.entry.js +74 -37
- package/dist/esm/tl-login.entry.js +76 -142
- package/dist/esm/tl-my-orders.entry.js +54 -93
- package/dist/esm/tl-occurrence-selector_2.entry.js +206 -642
- package/dist/esm/tl-order-confirmation.entry.js +73 -106
- package/dist/esm/tl-order-tickets_2.entry.js +51 -77
- package/dist/esm/tl-promo-code.entry.js +52 -48
- package/dist/esm/tl-seat-map.entry.js +4 -4
- package/dist/esm/web-query-Bdbb2lk5.js +14 -0
- package/dist/ticketlayer-elements/index.esm.js +1 -1
- package/dist/ticketlayer-elements/p-45923d2c.entry.js +1 -0
- package/dist/ticketlayer-elements/p-492adc77.entry.js +1 -0
- package/dist/ticketlayer-elements/p-4cfc9e53.entry.js +1 -0
- package/dist/ticketlayer-elements/p-5135630e.entry.js +1 -0
- package/dist/ticketlayer-elements/p-5bbce3b5.entry.js +1 -0
- package/dist/ticketlayer-elements/p-7d547721.entry.js +1 -0
- package/dist/ticketlayer-elements/p-7fe7b6ba.entry.js +1 -0
- package/dist/ticketlayer-elements/p-8122f0c1.entry.js +1 -0
- package/dist/ticketlayer-elements/p-98d40869.entry.js +1 -0
- package/dist/ticketlayer-elements/p-Bdbb2lk5.js +1 -0
- package/dist/ticketlayer-elements/p-BwChnHVC.js +1 -0
- package/dist/ticketlayer-elements/p-abec290a.entry.js +1 -0
- package/dist/ticketlayer-elements/p-ac79a3f6.entry.js +1 -0
- package/dist/ticketlayer-elements/p-d01f4429.entry.js +1 -0
- package/dist/ticketlayer-elements/p-d7ffaf46.entry.js +1 -0
- package/dist/ticketlayer-elements/p-e7170f3c.entry.js +1 -0
- package/dist/ticketlayer-elements/p-e787e862.entry.js +1 -0
- package/dist/ticketlayer-elements/p-f1ff931f.entry.js +1 -0
- package/dist/ticketlayer-elements/p-imfxp765.js +3 -0
- package/dist/ticketlayer-elements/ticketlayer-elements.css +1 -1
- package/dist/ticketlayer-elements/ticketlayer-elements.esm.js +1 -1
- package/dist/types/components/tl-buy-tickets-button/tl-buy-tickets-button.d.ts +40 -8
- package/dist/types/components/tl-buy-tickets-wrapper/tl-buy-tickets-wrapper.d.ts +20 -1
- package/dist/types/components/tl-cart/tl-cart.d.ts +40 -32
- package/dist/types/components/tl-cart-badge/tl-cart-badge.d.ts +22 -7
- package/dist/types/components/tl-cart-drawer/tl-cart-drawer.d.ts +28 -5
- package/dist/types/components/tl-checkout-wrapper/tl-checkout-wrapper.d.ts +18 -1
- package/dist/types/components/tl-event-card/event-card-adapter.d.ts +9 -20
- package/dist/types/components/tl-event-card/tl-event-card.d.ts +25 -28
- package/dist/types/components/tl-event-list/tl-event-list.d.ts +46 -6
- package/dist/types/components/tl-login/tl-login.d.ts +68 -22
- package/dist/types/components/tl-my-orders/tl-my-orders.d.ts +30 -12
- package/dist/types/components/tl-occurrence-selector/tl-occurrence-selector.d.ts +73 -161
- package/dist/types/components/tl-order-confirmation/tl-order-confirmation.d.ts +48 -15
- package/dist/types/components/tl-order-tickets/tl-order-tickets.d.ts +29 -31
- package/dist/types/components/tl-promo-code/tl-promo-code.d.ts +28 -10
- package/dist/types/components/tl-ticket/tl-ticket.d.ts +2 -11
- package/dist/types/components/tl-ticket-selector/tl-ticket-selector.d.ts +61 -32
- package/dist/types/components.d.ts +302 -62
- package/dist/types/utils/cart-totals.d.ts +10 -0
- package/dist/types/utils/order-summary.d.ts +16 -65
- package/dist/types/utils/testing/deep-text.d.ts +13 -0
- package/dist/types/utils/testing/fixtures.d.ts +225 -0
- package/dist/types/utils/testing/mock-sdk.d.ts +14 -1
- package/dist/types/utils/web-query.d.ts +18 -0
- package/dist/types/utils/web-storage.d.ts +16 -0
- package/elements.catalogue.json +676 -55
- package/package.json +14 -6
- package/dist/cjs/order-summary-ZMkJ5bez.js +0 -116
- package/dist/components/order-summary.js +0 -1
- package/dist/esm/order-summary-BGekdjN9.js +0 -103
- package/dist/ticketlayer-elements/p-0b1d16f8.entry.js +0 -1
- package/dist/ticketlayer-elements/p-1471f6d8.entry.js +0 -1
- package/dist/ticketlayer-elements/p-1c51cbc1.entry.js +0 -1
- package/dist/ticketlayer-elements/p-5169f68b.entry.js +0 -1
- package/dist/ticketlayer-elements/p-895ba1f3.entry.js +0 -1
- package/dist/ticketlayer-elements/p-8d5722e1.entry.js +0 -1
- package/dist/ticketlayer-elements/p-917d8e09.entry.js +0 -1
- package/dist/ticketlayer-elements/p-9629029a.entry.js +0 -1
- package/dist/ticketlayer-elements/p-BGekdjN9.js +0 -1
- package/dist/ticketlayer-elements/p-CNX8hZa8.js +0 -3
- package/dist/ticketlayer-elements/p-a22714d0.entry.js +0 -1
- package/dist/ticketlayer-elements/p-bf73044b.entry.js +0 -1
- package/dist/ticketlayer-elements/p-e02079fa.entry.js +0 -1
- package/dist/ticketlayer-elements/p-e04ace15.entry.js +0 -1
- package/dist/ticketlayer-elements/p-e6fab1d5.entry.js +0 -1
- package/dist/ticketlayer-elements/p-f826b753.entry.js +0 -1
- package/dist/ticketlayer-elements/p-fa639d88.entry.js +0 -1
- package/dist/ticketlayer-elements/p-fbaca948.entry.js +0 -1
package/elements.catalogue.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
3
|
-
"generatedAt": "2026-09-
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"generatedAt": "2026-09-18T22:24:57.104Z",
|
|
4
4
|
"elements": [
|
|
5
5
|
{
|
|
6
6
|
"tag": "tl-buy-modal",
|
|
@@ -46,11 +46,12 @@
|
|
|
46
46
|
"web"
|
|
47
47
|
],
|
|
48
48
|
"sdkMethods": [],
|
|
49
|
-
"category": "purchase"
|
|
49
|
+
"category": "purchase",
|
|
50
|
+
"core": false
|
|
50
51
|
},
|
|
51
52
|
{
|
|
52
53
|
"tag": "tl-buy-tickets-button",
|
|
53
|
-
"docs": "",
|
|
54
|
+
"docs": "A buy-tickets button in one of four sale states, which opens the purchase modal.",
|
|
54
55
|
"props": [
|
|
55
56
|
{
|
|
56
57
|
"name": "currency",
|
|
@@ -153,12 +154,43 @@
|
|
|
153
154
|
"runtimes": [
|
|
154
155
|
"web"
|
|
155
156
|
],
|
|
156
|
-
"sdkMethods": [
|
|
157
|
-
|
|
157
|
+
"sdkMethods": [
|
|
158
|
+
"event.openModal"
|
|
159
|
+
],
|
|
160
|
+
"category": "purchase",
|
|
161
|
+
"core": true,
|
|
162
|
+
"tokens": [
|
|
163
|
+
"error",
|
|
164
|
+
"error-foreground",
|
|
165
|
+
"font-family",
|
|
166
|
+
"info",
|
|
167
|
+
"info-foreground",
|
|
168
|
+
"primary",
|
|
169
|
+
"primary-foreground",
|
|
170
|
+
"radius-lg",
|
|
171
|
+
"radius-md",
|
|
172
|
+
"radius-sm",
|
|
173
|
+
"warning",
|
|
174
|
+
"warning-foreground"
|
|
175
|
+
],
|
|
176
|
+
"strings": {
|
|
177
|
+
"available": "Buy Tickets",
|
|
178
|
+
"soldOut": "Sold Out",
|
|
179
|
+
"waitlist": "Join Waitlist",
|
|
180
|
+
"comingSoon": "On Sale Soon"
|
|
181
|
+
},
|
|
182
|
+
"statuses": [
|
|
183
|
+
"ready",
|
|
184
|
+
"disabled"
|
|
185
|
+
],
|
|
186
|
+
"actions": [
|
|
187
|
+
"activate"
|
|
188
|
+
],
|
|
189
|
+
"mounts": false
|
|
158
190
|
},
|
|
159
191
|
{
|
|
160
192
|
"tag": "tl-buy-tickets-wrapper",
|
|
161
|
-
"docs": "",
|
|
193
|
+
"docs": "Wrap any content and open the purchase modal when it is activated.",
|
|
162
194
|
"props": [
|
|
163
195
|
{
|
|
164
196
|
"name": "disabled",
|
|
@@ -187,17 +219,17 @@
|
|
|
187
219
|
],
|
|
188
220
|
"events": [
|
|
189
221
|
{
|
|
190
|
-
"name": "
|
|
222
|
+
"name": "tlClose",
|
|
191
223
|
"detail": "void",
|
|
192
224
|
"docs": "Emitted when the modal closes"
|
|
193
225
|
},
|
|
194
226
|
{
|
|
195
|
-
"name": "
|
|
227
|
+
"name": "tlComplete",
|
|
196
228
|
"detail": "OrderResult",
|
|
197
229
|
"docs": "Emitted when purchase completes successfully"
|
|
198
230
|
},
|
|
199
231
|
{
|
|
200
|
-
"name": "
|
|
232
|
+
"name": "tlError",
|
|
201
233
|
"detail": "{ message: string; }",
|
|
202
234
|
"docs": "Emitted when an error occurs"
|
|
203
235
|
}
|
|
@@ -212,12 +244,31 @@
|
|
|
212
244
|
"runtimes": [
|
|
213
245
|
"web"
|
|
214
246
|
],
|
|
215
|
-
"sdkMethods": [
|
|
216
|
-
|
|
247
|
+
"sdkMethods": [
|
|
248
|
+
"event.openModal"
|
|
249
|
+
],
|
|
250
|
+
"category": "purchase",
|
|
251
|
+
"core": true,
|
|
252
|
+
"tokens": [
|
|
253
|
+
"radius-sm",
|
|
254
|
+
"ring"
|
|
255
|
+
],
|
|
256
|
+
"strings": {
|
|
257
|
+
"noClient": "SDK not initialized",
|
|
258
|
+
"notAvailable": "Tickets are not available"
|
|
259
|
+
},
|
|
260
|
+
"statuses": [
|
|
261
|
+
"ready",
|
|
262
|
+
"disabled"
|
|
263
|
+
],
|
|
264
|
+
"actions": [
|
|
265
|
+
"activate"
|
|
266
|
+
],
|
|
267
|
+
"mounts": false
|
|
217
268
|
},
|
|
218
269
|
{
|
|
219
270
|
"tag": "tl-cart",
|
|
220
|
-
"docs": "",
|
|
271
|
+
"docs": "The buyer's cart: its lines, the money rows the surface reported and a checkout button.",
|
|
221
272
|
"props": [
|
|
222
273
|
{
|
|
223
274
|
"name": "checkoutLabel",
|
|
@@ -280,12 +331,60 @@
|
|
|
280
331
|
"web",
|
|
281
332
|
"native"
|
|
282
333
|
],
|
|
283
|
-
"sdkMethods": [
|
|
284
|
-
|
|
334
|
+
"sdkMethods": [
|
|
335
|
+
"cart.get",
|
|
336
|
+
"cart.on",
|
|
337
|
+
"cart.removeItem"
|
|
338
|
+
],
|
|
339
|
+
"category": "cart",
|
|
340
|
+
"core": true,
|
|
341
|
+
"tokens": [
|
|
342
|
+
"background",
|
|
343
|
+
"border",
|
|
344
|
+
"error",
|
|
345
|
+
"error-bg",
|
|
346
|
+
"font-family",
|
|
347
|
+
"foreground",
|
|
348
|
+
"muted",
|
|
349
|
+
"muted-foreground",
|
|
350
|
+
"primary",
|
|
351
|
+
"primary-foreground",
|
|
352
|
+
"radius-md",
|
|
353
|
+
"radius-sm",
|
|
354
|
+
"spacing-1",
|
|
355
|
+
"spacing-2",
|
|
356
|
+
"spacing-3",
|
|
357
|
+
"spacing-4",
|
|
358
|
+
"spacing-8"
|
|
359
|
+
],
|
|
360
|
+
"strings": {
|
|
361
|
+
"emptyTitle": "Your cart is empty",
|
|
362
|
+
"emptyMessage": "Add tickets to get started",
|
|
363
|
+
"subtotalRow": "Subtotal",
|
|
364
|
+
"discountRow": "Discount",
|
|
365
|
+
"totalRow": "Total",
|
|
366
|
+
"removeItem": "Remove item",
|
|
367
|
+
"quantityPrefix": "Qty: ",
|
|
368
|
+
"loadFailed": "Failed to load cart",
|
|
369
|
+
"removeFailed": "Failed to remove item"
|
|
370
|
+
},
|
|
371
|
+
"statuses": [
|
|
372
|
+
"loading",
|
|
373
|
+
"empty",
|
|
374
|
+
"ready"
|
|
375
|
+
],
|
|
376
|
+
"actions": [
|
|
377
|
+
"cartUpdated",
|
|
378
|
+
"checkout",
|
|
379
|
+
"connectFailed",
|
|
380
|
+
"load",
|
|
381
|
+
"removeItem"
|
|
382
|
+
],
|
|
383
|
+
"mounts": true
|
|
285
384
|
},
|
|
286
385
|
{
|
|
287
386
|
"tag": "tl-cart-badge",
|
|
288
|
-
"docs": "",
|
|
387
|
+
"docs": "A cart icon carrying the number of items in the cart, kept current from the cart bus.",
|
|
289
388
|
"props": [
|
|
290
389
|
{
|
|
291
390
|
"name": "badgeOnly",
|
|
@@ -332,12 +431,41 @@
|
|
|
332
431
|
"runtimes": [
|
|
333
432
|
"web"
|
|
334
433
|
],
|
|
335
|
-
"sdkMethods": [
|
|
336
|
-
|
|
434
|
+
"sdkMethods": [
|
|
435
|
+
"cart.get",
|
|
436
|
+
"cart.on"
|
|
437
|
+
],
|
|
438
|
+
"category": "cart",
|
|
439
|
+
"core": true,
|
|
440
|
+
"tokens": [
|
|
441
|
+
"font-family",
|
|
442
|
+
"foreground",
|
|
443
|
+
"muted",
|
|
444
|
+
"primary",
|
|
445
|
+
"primary-foreground",
|
|
446
|
+
"radius-md",
|
|
447
|
+
"spacing-1",
|
|
448
|
+
"spacing-2",
|
|
449
|
+
"spacing-3"
|
|
450
|
+
],
|
|
451
|
+
"strings": {
|
|
452
|
+
"ariaPrefix": "Cart with ",
|
|
453
|
+
"ariaSuffix": " items",
|
|
454
|
+
"overflow": "99+"
|
|
455
|
+
},
|
|
456
|
+
"statuses": [
|
|
457
|
+
"ready"
|
|
458
|
+
],
|
|
459
|
+
"actions": [
|
|
460
|
+
"click",
|
|
461
|
+
"countChanged",
|
|
462
|
+
"hydrate"
|
|
463
|
+
],
|
|
464
|
+
"mounts": true
|
|
337
465
|
},
|
|
338
466
|
{
|
|
339
467
|
"tag": "tl-cart-drawer",
|
|
340
|
-
"docs": "",
|
|
468
|
+
"docs": "A slide-in panel holding the cart, opened by the cart intent on the client bus.",
|
|
341
469
|
"props": [
|
|
342
470
|
{
|
|
343
471
|
"name": "heading",
|
|
@@ -381,12 +509,42 @@
|
|
|
381
509
|
"runtimes": [
|
|
382
510
|
"web"
|
|
383
511
|
],
|
|
384
|
-
"sdkMethods": [
|
|
385
|
-
|
|
512
|
+
"sdkMethods": [
|
|
513
|
+
"client.on"
|
|
514
|
+
],
|
|
515
|
+
"category": "cart",
|
|
516
|
+
"core": true,
|
|
517
|
+
"tokens": [
|
|
518
|
+
"background",
|
|
519
|
+
"border",
|
|
520
|
+
"font-family",
|
|
521
|
+
"foreground",
|
|
522
|
+
"muted",
|
|
523
|
+
"muted-foreground"
|
|
524
|
+
],
|
|
525
|
+
"strings": {
|
|
526
|
+
"close": "Close cart",
|
|
527
|
+
"privacy": "Privacy Policy",
|
|
528
|
+
"privacyHref": "https://ticketlayer.com/privacy",
|
|
529
|
+
"reportAbuse": "Report Abuse",
|
|
530
|
+
"reportAbuseHref": "https://ticketlayer.com/report-abuse",
|
|
531
|
+
"poweredBy": "Powered by",
|
|
532
|
+
"brand": "ticketlayer",
|
|
533
|
+
"brandHref": "https://ticketlayer.com"
|
|
534
|
+
},
|
|
535
|
+
"statuses": [
|
|
536
|
+
"open",
|
|
537
|
+
"closed"
|
|
538
|
+
],
|
|
539
|
+
"actions": [
|
|
540
|
+
"openChanged",
|
|
541
|
+
"setOpen"
|
|
542
|
+
],
|
|
543
|
+
"mounts": true
|
|
386
544
|
},
|
|
387
545
|
{
|
|
388
546
|
"tag": "tl-checkout-wrapper",
|
|
389
|
-
"docs": "",
|
|
547
|
+
"docs": "Wrap any content and open the checkout modal when it is activated.",
|
|
390
548
|
"props": [
|
|
391
549
|
{
|
|
392
550
|
"name": "disabled",
|
|
@@ -399,17 +557,17 @@
|
|
|
399
557
|
],
|
|
400
558
|
"events": [
|
|
401
559
|
{
|
|
402
|
-
"name": "
|
|
560
|
+
"name": "tlClose",
|
|
403
561
|
"detail": "void",
|
|
404
562
|
"docs": "Emitted when the modal closes"
|
|
405
563
|
},
|
|
406
564
|
{
|
|
407
|
-
"name": "
|
|
565
|
+
"name": "tlComplete",
|
|
408
566
|
"detail": "OrderResult",
|
|
409
567
|
"docs": "Emitted when checkout completes successfully"
|
|
410
568
|
},
|
|
411
569
|
{
|
|
412
|
-
"name": "
|
|
570
|
+
"name": "tlError",
|
|
413
571
|
"detail": "{ message: string; }",
|
|
414
572
|
"docs": "Emitted when an error occurs"
|
|
415
573
|
}
|
|
@@ -424,12 +582,31 @@
|
|
|
424
582
|
"runtimes": [
|
|
425
583
|
"web"
|
|
426
584
|
],
|
|
427
|
-
"sdkMethods": [
|
|
428
|
-
|
|
585
|
+
"sdkMethods": [
|
|
586
|
+
"checkout.openModal"
|
|
587
|
+
],
|
|
588
|
+
"category": "checkout",
|
|
589
|
+
"core": true,
|
|
590
|
+
"tokens": [
|
|
591
|
+
"radius-sm",
|
|
592
|
+
"ring"
|
|
593
|
+
],
|
|
594
|
+
"strings": {
|
|
595
|
+
"noClient": "SDK not initialized",
|
|
596
|
+
"notAvailable": "Checkout is not available"
|
|
597
|
+
},
|
|
598
|
+
"statuses": [
|
|
599
|
+
"ready",
|
|
600
|
+
"disabled"
|
|
601
|
+
],
|
|
602
|
+
"actions": [
|
|
603
|
+
"activate"
|
|
604
|
+
],
|
|
605
|
+
"mounts": false
|
|
429
606
|
},
|
|
430
607
|
{
|
|
431
608
|
"tag": "tl-event-card",
|
|
432
|
-
"docs": "",
|
|
609
|
+
"docs": "One event as a card: its image, name, next date, venue and how it is selling.",
|
|
433
610
|
"props": [
|
|
434
611
|
{
|
|
435
612
|
"name": "event",
|
|
@@ -466,12 +643,51 @@
|
|
|
466
643
|
"web",
|
|
467
644
|
"native"
|
|
468
645
|
],
|
|
469
|
-
"sdkMethods": [
|
|
470
|
-
|
|
646
|
+
"sdkMethods": [
|
|
647
|
+
"events.get"
|
|
648
|
+
],
|
|
649
|
+
"category": "discovery",
|
|
650
|
+
"core": true,
|
|
651
|
+
"tokens": [
|
|
652
|
+
"error",
|
|
653
|
+
"error-foreground",
|
|
654
|
+
"font-family",
|
|
655
|
+
"foreground",
|
|
656
|
+
"muted",
|
|
657
|
+
"muted-foreground",
|
|
658
|
+
"primary",
|
|
659
|
+
"radius-lg",
|
|
660
|
+
"radius-sm",
|
|
661
|
+
"secondary",
|
|
662
|
+
"spacing-4",
|
|
663
|
+
"success",
|
|
664
|
+
"success-foreground",
|
|
665
|
+
"warning",
|
|
666
|
+
"warning-foreground"
|
|
667
|
+
],
|
|
668
|
+
"strings": {
|
|
669
|
+
"available": "Available",
|
|
670
|
+
"limited": "Limited",
|
|
671
|
+
"soldOut": "Sold Out",
|
|
672
|
+
"notFound": "Event not found",
|
|
673
|
+
"loadFailed": "Failed to load event"
|
|
674
|
+
},
|
|
675
|
+
"statuses": [
|
|
676
|
+
"loading",
|
|
677
|
+
"error",
|
|
678
|
+
"empty",
|
|
679
|
+
"ready"
|
|
680
|
+
],
|
|
681
|
+
"actions": [
|
|
682
|
+
"click",
|
|
683
|
+
"load",
|
|
684
|
+
"loadFailed"
|
|
685
|
+
],
|
|
686
|
+
"mounts": true
|
|
471
687
|
},
|
|
472
688
|
{
|
|
473
689
|
"tag": "tl-event-list",
|
|
474
|
-
"docs": "",
|
|
690
|
+
"docs": "What the channel is selling, as a grid of event cards, optionally narrowed to one category.",
|
|
475
691
|
"props": [
|
|
476
692
|
{
|
|
477
693
|
"name": "category",
|
|
@@ -511,12 +727,45 @@
|
|
|
511
727
|
"web",
|
|
512
728
|
"native"
|
|
513
729
|
],
|
|
514
|
-
"sdkMethods": [
|
|
515
|
-
|
|
730
|
+
"sdkMethods": [
|
|
731
|
+
"events.list"
|
|
732
|
+
],
|
|
733
|
+
"category": "discovery",
|
|
734
|
+
"core": true,
|
|
735
|
+
"tokens": [
|
|
736
|
+
"error",
|
|
737
|
+
"font-family",
|
|
738
|
+
"foreground",
|
|
739
|
+
"muted",
|
|
740
|
+
"muted-foreground",
|
|
741
|
+
"radius-lg",
|
|
742
|
+
"radius-sm",
|
|
743
|
+
"secondary",
|
|
744
|
+
"spacing-4",
|
|
745
|
+
"spacing-6",
|
|
746
|
+
"spacing-8"
|
|
747
|
+
],
|
|
748
|
+
"strings": {
|
|
749
|
+
"errorTitle": "Error loading events",
|
|
750
|
+
"emptyTitle": "No events available",
|
|
751
|
+
"emptyMessage": "Check back later for upcoming events.",
|
|
752
|
+
"loadFailed": "Failed to load events",
|
|
753
|
+
"noListing": "Events are not available"
|
|
754
|
+
},
|
|
755
|
+
"statuses": [
|
|
756
|
+
"loading",
|
|
757
|
+
"error",
|
|
758
|
+
"empty",
|
|
759
|
+
"ready"
|
|
760
|
+
],
|
|
761
|
+
"actions": [
|
|
762
|
+
"load"
|
|
763
|
+
],
|
|
764
|
+
"mounts": true
|
|
516
765
|
},
|
|
517
766
|
{
|
|
518
767
|
"tag": "tl-login",
|
|
519
|
-
"docs": "
|
|
768
|
+
"docs": "Magic-link sign-in: an email in, a link or a six-digit code back, and a session. No password is ever handled.",
|
|
520
769
|
"props": [
|
|
521
770
|
{
|
|
522
771
|
"name": "allowCodeEntry",
|
|
@@ -558,12 +807,90 @@
|
|
|
558
807
|
"web",
|
|
559
808
|
"native"
|
|
560
809
|
],
|
|
561
|
-
"sdkMethods": [
|
|
562
|
-
|
|
810
|
+
"sdkMethods": [
|
|
811
|
+
"auth.exchange",
|
|
812
|
+
"auth.logout",
|
|
813
|
+
"auth.requestMagicLink",
|
|
814
|
+
"on"
|
|
815
|
+
],
|
|
816
|
+
"category": "account",
|
|
817
|
+
"core": true,
|
|
818
|
+
"tokens": [
|
|
819
|
+
"background",
|
|
820
|
+
"border",
|
|
821
|
+
"error",
|
|
822
|
+
"font-family",
|
|
823
|
+
"font-family-mono",
|
|
824
|
+
"foreground",
|
|
825
|
+
"muted-foreground",
|
|
826
|
+
"primary",
|
|
827
|
+
"primary-foreground",
|
|
828
|
+
"radius-lg",
|
|
829
|
+
"radius-md",
|
|
830
|
+
"secondary",
|
|
831
|
+
"spacing-3",
|
|
832
|
+
"spacing-4",
|
|
833
|
+
"spacing-6",
|
|
834
|
+
"success"
|
|
835
|
+
],
|
|
836
|
+
"strings": {
|
|
837
|
+
"signedInPrefix": "Signed in as ",
|
|
838
|
+
"fallbackAccount": "your account",
|
|
839
|
+
"signOut": "Sign out",
|
|
840
|
+
"verifyingTitle": "Signing you in…",
|
|
841
|
+
"verifyingLead": "Just a moment.",
|
|
842
|
+
"sentTitle": "Check your inbox",
|
|
843
|
+
"sentLeadBefore": "We've sent a sign-in link to ",
|
|
844
|
+
"sentLeadAfter": ". Open it on this device to continue.",
|
|
845
|
+
"sentAgain": "Sent again. Check your inbox.",
|
|
846
|
+
"resendLink": "Resend link",
|
|
847
|
+
"resending": "Sending…",
|
|
848
|
+
"enterCodeInstead": "Enter the code instead",
|
|
849
|
+
"differentEmail": "Use a different email",
|
|
850
|
+
"codeTitle": "Enter your code",
|
|
851
|
+
"codeLeadBefore": "Type the 6-digit code from the email we sent to ",
|
|
852
|
+
"codeLeadAfter": ".",
|
|
853
|
+
"codeLabel": "Code",
|
|
854
|
+
"codePlaceholder": "123456",
|
|
855
|
+
"codeSubmit": "Sign in",
|
|
856
|
+
"checking": "Checking…",
|
|
857
|
+
"back": "Back",
|
|
858
|
+
"emailLead": "Enter your email and we'll send you a secure sign-in link. No password needed.",
|
|
859
|
+
"emailLabel": "Email address",
|
|
860
|
+
"emailPlaceholder": "you@example.com",
|
|
861
|
+
"emailSubmit": "Email me a sign-in link",
|
|
862
|
+
"sendingLink": "Sending link…",
|
|
863
|
+
"enterEmail": "Enter your email address",
|
|
864
|
+
"enterCode": "Enter the code from your email",
|
|
865
|
+
"codeRejected": "That code did not work. Check it and try again, or request a new link.",
|
|
866
|
+
"requestFailed": "Could not send your sign-in link",
|
|
867
|
+
"unavailable": "Sign-in is not available right now",
|
|
868
|
+
"unsupported": "Sign-in is not available with this SDK"
|
|
869
|
+
},
|
|
870
|
+
"statuses": [
|
|
871
|
+
"email",
|
|
872
|
+
"sent",
|
|
873
|
+
"code",
|
|
874
|
+
"verifying",
|
|
875
|
+
"signed-in"
|
|
876
|
+
],
|
|
877
|
+
"actions": [
|
|
878
|
+
"connectFailed",
|
|
879
|
+
"exchange",
|
|
880
|
+
"goTo",
|
|
881
|
+
"requestLink",
|
|
882
|
+
"setCode",
|
|
883
|
+
"setEmail",
|
|
884
|
+
"signOut",
|
|
885
|
+
"submitCode",
|
|
886
|
+
"syncFromClient",
|
|
887
|
+
"unsupported"
|
|
888
|
+
],
|
|
889
|
+
"mounts": true
|
|
563
890
|
},
|
|
564
891
|
{
|
|
565
892
|
"tag": "tl-my-orders",
|
|
566
|
-
"docs": "
|
|
893
|
+
"docs": "The signed-in customer's orders: event, date, ticket count, total and status, each row expanding to its tickets.",
|
|
567
894
|
"props": [
|
|
568
895
|
{
|
|
569
896
|
"name": "columns",
|
|
@@ -600,8 +927,62 @@
|
|
|
600
927
|
"web",
|
|
601
928
|
"native"
|
|
602
929
|
],
|
|
603
|
-
"sdkMethods": [
|
|
604
|
-
|
|
930
|
+
"sdkMethods": [
|
|
931
|
+
"auth.authenticated",
|
|
932
|
+
"on",
|
|
933
|
+
"orders.mine"
|
|
934
|
+
],
|
|
935
|
+
"category": "account",
|
|
936
|
+
"core": true,
|
|
937
|
+
"tokens": [
|
|
938
|
+
"background",
|
|
939
|
+
"border",
|
|
940
|
+
"error",
|
|
941
|
+
"error-foreground",
|
|
942
|
+
"font-family",
|
|
943
|
+
"foreground",
|
|
944
|
+
"muted-foreground",
|
|
945
|
+
"primary",
|
|
946
|
+
"primary-foreground",
|
|
947
|
+
"radius-lg",
|
|
948
|
+
"secondary",
|
|
949
|
+
"secondary-foreground",
|
|
950
|
+
"spacing-1",
|
|
951
|
+
"spacing-3",
|
|
952
|
+
"spacing-4",
|
|
953
|
+
"spacing-8",
|
|
954
|
+
"success",
|
|
955
|
+
"success-foreground",
|
|
956
|
+
"warning",
|
|
957
|
+
"warning-foreground"
|
|
958
|
+
],
|
|
959
|
+
"strings": {
|
|
960
|
+
"signInTitle": "Sign in to see your orders",
|
|
961
|
+
"signInText": "Your tickets and order history live in your account.",
|
|
962
|
+
"errorTitle": "Could not load your orders",
|
|
963
|
+
"emptyTitle": "No orders yet",
|
|
964
|
+
"orderPrefix": "Order ",
|
|
965
|
+
"unnamedEvent": "Order",
|
|
966
|
+
"ticketSingular": "ticket",
|
|
967
|
+
"ticketPlural": "tickets",
|
|
968
|
+
"unavailable": "Orders are not available right now",
|
|
969
|
+
"noOrdersManager": "Orders are not available",
|
|
970
|
+
"loadFailed": "Failed to load your orders"
|
|
971
|
+
},
|
|
972
|
+
"statuses": [
|
|
973
|
+
"loading",
|
|
974
|
+
"signed-out",
|
|
975
|
+
"error",
|
|
976
|
+
"empty",
|
|
977
|
+
"ready"
|
|
978
|
+
],
|
|
979
|
+
"actions": [
|
|
980
|
+
"connectFailed",
|
|
981
|
+
"load",
|
|
982
|
+
"syncAuth",
|
|
983
|
+
"toggle"
|
|
984
|
+
],
|
|
985
|
+
"mounts": true
|
|
605
986
|
},
|
|
606
987
|
{
|
|
607
988
|
"tag": "tl-occurrence-selector",
|
|
@@ -652,12 +1033,62 @@
|
|
|
652
1033
|
"runtimes": [
|
|
653
1034
|
"web"
|
|
654
1035
|
],
|
|
655
|
-
"sdkMethods": [
|
|
656
|
-
|
|
1036
|
+
"sdkMethods": [
|
|
1037
|
+
"events.get"
|
|
1038
|
+
],
|
|
1039
|
+
"category": "discovery",
|
|
1040
|
+
"core": true,
|
|
1041
|
+
"tokens": [
|
|
1042
|
+
"background",
|
|
1043
|
+
"border",
|
|
1044
|
+
"font-family",
|
|
1045
|
+
"foreground",
|
|
1046
|
+
"muted",
|
|
1047
|
+
"muted-foreground",
|
|
1048
|
+
"primary",
|
|
1049
|
+
"primary-foreground",
|
|
1050
|
+
"radius-md"
|
|
1051
|
+
],
|
|
1052
|
+
"strings": {
|
|
1053
|
+
"noEventId": "Event ID is required",
|
|
1054
|
+
"noClient": "SDK not initialized.",
|
|
1055
|
+
"notFound": "Event not found",
|
|
1056
|
+
"loadFailed": "Failed to load occurrences",
|
|
1057
|
+
"empty": "No dates available for this event.",
|
|
1058
|
+
"retry": "Retry",
|
|
1059
|
+
"soldOut": "Sold Out",
|
|
1060
|
+
"available": "available",
|
|
1061
|
+
"selectADate": "Select a date to see available times",
|
|
1062
|
+
"previousMonth": "Previous month",
|
|
1063
|
+
"nextMonth": "Next month",
|
|
1064
|
+
"weekdayMon": "Mon",
|
|
1065
|
+
"weekdayTue": "Tue",
|
|
1066
|
+
"weekdayWed": "Wed",
|
|
1067
|
+
"weekdayThu": "Thu",
|
|
1068
|
+
"weekdayFri": "Fri",
|
|
1069
|
+
"weekdaySat": "Sat",
|
|
1070
|
+
"weekdaySun": "Sun"
|
|
1071
|
+
},
|
|
1072
|
+
"statuses": [
|
|
1073
|
+
"loading",
|
|
1074
|
+
"error",
|
|
1075
|
+
"empty",
|
|
1076
|
+
"ready"
|
|
1077
|
+
],
|
|
1078
|
+
"actions": [
|
|
1079
|
+
"load",
|
|
1080
|
+
"loadFailed",
|
|
1081
|
+
"nextMonth",
|
|
1082
|
+
"previousMonth",
|
|
1083
|
+
"resized",
|
|
1084
|
+
"select",
|
|
1085
|
+
"selectDate"
|
|
1086
|
+
],
|
|
1087
|
+
"mounts": true
|
|
657
1088
|
},
|
|
658
1089
|
{
|
|
659
1090
|
"tag": "tl-order-confirmation",
|
|
660
|
-
"docs": "
|
|
1091
|
+
"docs": "The thank-you block: order reference, email, event and date, the ticket lines, the money rows and the tickets.",
|
|
661
1092
|
"props": [
|
|
662
1093
|
{
|
|
663
1094
|
"name": "columns",
|
|
@@ -710,12 +1141,72 @@
|
|
|
710
1141
|
"web",
|
|
711
1142
|
"native"
|
|
712
1143
|
],
|
|
713
|
-
"sdkMethods": [
|
|
714
|
-
|
|
1144
|
+
"sdkMethods": [
|
|
1145
|
+
"auth.customer",
|
|
1146
|
+
"events.get",
|
|
1147
|
+
"events.list",
|
|
1148
|
+
"on",
|
|
1149
|
+
"orders.get"
|
|
1150
|
+
],
|
|
1151
|
+
"category": "checkout",
|
|
1152
|
+
"core": true,
|
|
1153
|
+
"tokens": [
|
|
1154
|
+
"border",
|
|
1155
|
+
"error",
|
|
1156
|
+
"font-family",
|
|
1157
|
+
"font-family-mono",
|
|
1158
|
+
"foreground",
|
|
1159
|
+
"muted",
|
|
1160
|
+
"muted-foreground",
|
|
1161
|
+
"radius-lg",
|
|
1162
|
+
"radius-md",
|
|
1163
|
+
"secondary",
|
|
1164
|
+
"spacing-1",
|
|
1165
|
+
"spacing-2",
|
|
1166
|
+
"spacing-3",
|
|
1167
|
+
"spacing-4",
|
|
1168
|
+
"spacing-6",
|
|
1169
|
+
"success",
|
|
1170
|
+
"success-foreground"
|
|
1171
|
+
],
|
|
1172
|
+
"strings": {
|
|
1173
|
+
"paymentFailedTitle": "Payment not completed",
|
|
1174
|
+
"paymentFailedLead": "Your payment wasn't completed. Your cart is still saved, so you can try again.",
|
|
1175
|
+
"title": "You're going!",
|
|
1176
|
+
"leadPrefix": "Order ",
|
|
1177
|
+
"leadSuffix": " is confirmed. Your tickets are on their way to your email.",
|
|
1178
|
+
"leadGeneric": "Your order is confirmed. Your tickets are on their way to your email.",
|
|
1179
|
+
"errorPrefix": "We couldn't load your order details yet. ",
|
|
1180
|
+
"rowReference": "Order reference",
|
|
1181
|
+
"rowEmail": "Email",
|
|
1182
|
+
"rowEvent": "Event",
|
|
1183
|
+
"rowDate": "Date",
|
|
1184
|
+
"subtotalRow": "Subtotal",
|
|
1185
|
+
"taxRow": "Tax",
|
|
1186
|
+
"discountRow": "Discount",
|
|
1187
|
+
"totalRow": "Total",
|
|
1188
|
+
"ticketsTitle": "Your tickets",
|
|
1189
|
+
"ticketsHint": "Show these QR codes at the door for entry. Use Download PDF on a ticket to save it.",
|
|
1190
|
+
"noOrdersManager": "Orders are not available",
|
|
1191
|
+
"notFound": "Order not found",
|
|
1192
|
+
"loadFailed": "Failed to load your order"
|
|
1193
|
+
},
|
|
1194
|
+
"statuses": [
|
|
1195
|
+
"payment-failed",
|
|
1196
|
+
"idle",
|
|
1197
|
+
"loading",
|
|
1198
|
+
"ready"
|
|
1199
|
+
],
|
|
1200
|
+
"actions": [
|
|
1201
|
+
"checkoutCompleted",
|
|
1202
|
+
"load",
|
|
1203
|
+
"orderIdChanged"
|
|
1204
|
+
],
|
|
1205
|
+
"mounts": true
|
|
715
1206
|
},
|
|
716
1207
|
{
|
|
717
1208
|
"tag": "tl-order-tickets",
|
|
718
|
-
"docs": "
|
|
1209
|
+
"docs": "Every ticket in an order as a scannable card, waiting out issuance rather than reporting an empty order as empty.",
|
|
719
1210
|
"props": [
|
|
720
1211
|
{
|
|
721
1212
|
"name": "columns",
|
|
@@ -741,12 +1232,45 @@
|
|
|
741
1232
|
"web",
|
|
742
1233
|
"native"
|
|
743
1234
|
],
|
|
744
|
-
"sdkMethods": [
|
|
745
|
-
|
|
1235
|
+
"sdkMethods": [
|
|
1236
|
+
"orders.get"
|
|
1237
|
+
],
|
|
1238
|
+
"category": "tickets",
|
|
1239
|
+
"core": true,
|
|
1240
|
+
"tokens": [
|
|
1241
|
+
"border",
|
|
1242
|
+
"error",
|
|
1243
|
+
"font-family",
|
|
1244
|
+
"muted-foreground",
|
|
1245
|
+
"primary",
|
|
1246
|
+
"spacing-2",
|
|
1247
|
+
"spacing-4",
|
|
1248
|
+
"spacing-6"
|
|
1249
|
+
],
|
|
1250
|
+
"strings": {
|
|
1251
|
+
"loading": "Loading tickets…",
|
|
1252
|
+
"preparing": "Preparing your tickets…",
|
|
1253
|
+
"delayed": "Your tickets are taking longer than usual. They will be emailed to you as soon as they are ready.",
|
|
1254
|
+
"notAvailable": "Tickets are not available",
|
|
1255
|
+
"loadFailed": "Failed to load tickets"
|
|
1256
|
+
},
|
|
1257
|
+
"statuses": [
|
|
1258
|
+
"loading",
|
|
1259
|
+
"error",
|
|
1260
|
+
"issuing",
|
|
1261
|
+
"delayed",
|
|
1262
|
+
"ready"
|
|
1263
|
+
],
|
|
1264
|
+
"actions": [
|
|
1265
|
+
"load",
|
|
1266
|
+
"orderIdChanged",
|
|
1267
|
+
"stopPolling"
|
|
1268
|
+
],
|
|
1269
|
+
"mounts": true
|
|
746
1270
|
},
|
|
747
1271
|
{
|
|
748
1272
|
"tag": "tl-promo-code",
|
|
749
|
-
"docs": "
|
|
1273
|
+
"docs": "Redeem a presale or promo code for the current cart.",
|
|
750
1274
|
"props": [
|
|
751
1275
|
{
|
|
752
1276
|
"name": "buttonLabel",
|
|
@@ -782,8 +1306,50 @@
|
|
|
782
1306
|
"runtimes": [
|
|
783
1307
|
"web"
|
|
784
1308
|
],
|
|
785
|
-
"sdkMethods": [
|
|
786
|
-
|
|
1309
|
+
"sdkMethods": [
|
|
1310
|
+
"cart.get",
|
|
1311
|
+
"presale.redeem"
|
|
1312
|
+
],
|
|
1313
|
+
"category": "purchase",
|
|
1314
|
+
"core": true,
|
|
1315
|
+
"tokens": [
|
|
1316
|
+
"background",
|
|
1317
|
+
"border",
|
|
1318
|
+
"error",
|
|
1319
|
+
"font-family",
|
|
1320
|
+
"font-family-mono",
|
|
1321
|
+
"foreground",
|
|
1322
|
+
"muted",
|
|
1323
|
+
"muted-foreground",
|
|
1324
|
+
"primary",
|
|
1325
|
+
"primary-foreground",
|
|
1326
|
+
"radius-md",
|
|
1327
|
+
"spacing-2",
|
|
1328
|
+
"spacing-3",
|
|
1329
|
+
"spacing-4",
|
|
1330
|
+
"success"
|
|
1331
|
+
],
|
|
1332
|
+
"strings": {
|
|
1333
|
+
"applying": "Applying…",
|
|
1334
|
+
"codePrefix": "Code ",
|
|
1335
|
+
"appliedSuffix": " applied",
|
|
1336
|
+
"alreadyHeldSuffix": " was already applied",
|
|
1337
|
+
"useDifferent": "Use a different code",
|
|
1338
|
+
"enterCode": "Enter a code",
|
|
1339
|
+
"notAvailable": "Promo codes are not available",
|
|
1340
|
+
"signIn": "Sign in to use this code",
|
|
1341
|
+
"rejected": "That code could not be applied"
|
|
1342
|
+
},
|
|
1343
|
+
"statuses": [
|
|
1344
|
+
"idle",
|
|
1345
|
+
"applied"
|
|
1346
|
+
],
|
|
1347
|
+
"actions": [
|
|
1348
|
+
"apply",
|
|
1349
|
+
"reset",
|
|
1350
|
+
"setCode"
|
|
1351
|
+
],
|
|
1352
|
+
"mounts": false
|
|
787
1353
|
},
|
|
788
1354
|
{
|
|
789
1355
|
"tag": "tl-seat-map",
|
|
@@ -868,7 +1434,8 @@
|
|
|
868
1434
|
"web"
|
|
869
1435
|
],
|
|
870
1436
|
"sdkMethods": [],
|
|
871
|
-
"category": "purchase"
|
|
1437
|
+
"category": "purchase",
|
|
1438
|
+
"core": false
|
|
872
1439
|
},
|
|
873
1440
|
{
|
|
874
1441
|
"tag": "tl-ticket",
|
|
@@ -899,11 +1466,12 @@
|
|
|
899
1466
|
"native"
|
|
900
1467
|
],
|
|
901
1468
|
"sdkMethods": [],
|
|
902
|
-
"category": "tickets"
|
|
1469
|
+
"category": "tickets",
|
|
1470
|
+
"core": false
|
|
903
1471
|
},
|
|
904
1472
|
{
|
|
905
1473
|
"tag": "tl-ticket-selector",
|
|
906
|
-
"docs": "",
|
|
1474
|
+
"docs": "Pick quantities of the ticket types on sale for one occurrence, and add them to the cart.",
|
|
907
1475
|
"props": [
|
|
908
1476
|
{
|
|
909
1477
|
"name": "buttonLabel",
|
|
@@ -961,8 +1529,61 @@
|
|
|
961
1529
|
"web",
|
|
962
1530
|
"native"
|
|
963
1531
|
],
|
|
964
|
-
"sdkMethods": [
|
|
965
|
-
|
|
1532
|
+
"sdkMethods": [
|
|
1533
|
+
"cart.addItem",
|
|
1534
|
+
"events.getTicketTypes"
|
|
1535
|
+
],
|
|
1536
|
+
"category": "purchase",
|
|
1537
|
+
"core": true,
|
|
1538
|
+
"tokens": [
|
|
1539
|
+
"background",
|
|
1540
|
+
"border",
|
|
1541
|
+
"border-hover",
|
|
1542
|
+
"error",
|
|
1543
|
+
"error-bg",
|
|
1544
|
+
"font-family",
|
|
1545
|
+
"foreground",
|
|
1546
|
+
"muted",
|
|
1547
|
+
"muted-foreground",
|
|
1548
|
+
"primary",
|
|
1549
|
+
"primary-foreground",
|
|
1550
|
+
"radius-md",
|
|
1551
|
+
"radius-sm",
|
|
1552
|
+
"spacing-1",
|
|
1553
|
+
"spacing-2",
|
|
1554
|
+
"spacing-3",
|
|
1555
|
+
"spacing-4",
|
|
1556
|
+
"success",
|
|
1557
|
+
"warning",
|
|
1558
|
+
"warning-bg"
|
|
1559
|
+
],
|
|
1560
|
+
"strings": {
|
|
1561
|
+
"selectTickets": "Select Tickets",
|
|
1562
|
+
"adding": "Adding...",
|
|
1563
|
+
"added": "Added to cart!",
|
|
1564
|
+
"limited": "Limited",
|
|
1565
|
+
"soldOut": "Sold Out",
|
|
1566
|
+
"ticketsRow": "Tickets",
|
|
1567
|
+
"totalRow": "Total",
|
|
1568
|
+
"decrease": "Decrease quantity",
|
|
1569
|
+
"increase": "Increase quantity",
|
|
1570
|
+
"loadFailed": "Failed to load tickets",
|
|
1571
|
+
"addFailed": "Failed to add to cart",
|
|
1572
|
+
"noClient": "SDK not initialized."
|
|
1573
|
+
},
|
|
1574
|
+
"statuses": [
|
|
1575
|
+
"loading",
|
|
1576
|
+
"error",
|
|
1577
|
+
"ready"
|
|
1578
|
+
],
|
|
1579
|
+
"actions": [
|
|
1580
|
+
"addToCart",
|
|
1581
|
+
"changeQuantity",
|
|
1582
|
+
"connectFailed",
|
|
1583
|
+
"load",
|
|
1584
|
+
"setFeeQuote"
|
|
1585
|
+
],
|
|
1586
|
+
"mounts": true
|
|
966
1587
|
}
|
|
967
1588
|
]
|
|
968
1589
|
}
|