@almadar/std 14.17.0 → 14.18.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.
Files changed (27) hide show
  1. package/behaviors/registry/app/atoms/std-kitchen-display.orb +50 -50
  2. package/behaviors/registry/app/atoms/std-route-optimize.orb +53 -51
  3. package/behaviors/registry/app/atoms/std-ticket-tier.orb +85 -69
  4. package/behaviors/registry/app/atoms/std-work-order.orb +47 -47
  5. package/behaviors/registry/app/organisms/std-event-ticketing.orb +204 -212
  6. package/behaviors/registry/app/organisms/std-field-service.orb +183 -187
  7. package/behaviors/registry/app/organisms/std-forum.orb +131 -132
  8. package/behaviors/registry/app/organisms/std-listings.orb +177 -182
  9. package/behaviors/registry/app/organisms/std-restaurant-pos.orb +130 -130
  10. package/behaviors/registry/app/organisms/std-subscription-billing.orb +174 -176
  11. package/behaviors/registry/app/organisms/std-survey.orb +144 -145
  12. package/behaviors/registry/app/organisms/std-wiki.orb +129 -130
  13. package/behaviors/registry/core/molecules/std-form-advanced.orb +124 -124
  14. package/dist/behaviors/registry/app/atoms/std-kitchen-display.orb +50 -50
  15. package/dist/behaviors/registry/app/atoms/std-route-optimize.orb +53 -51
  16. package/dist/behaviors/registry/app/atoms/std-ticket-tier.orb +85 -69
  17. package/dist/behaviors/registry/app/atoms/std-work-order.orb +47 -47
  18. package/dist/behaviors/registry/app/organisms/std-event-ticketing.orb +204 -212
  19. package/dist/behaviors/registry/app/organisms/std-field-service.orb +183 -187
  20. package/dist/behaviors/registry/app/organisms/std-forum.orb +131 -132
  21. package/dist/behaviors/registry/app/organisms/std-listings.orb +177 -182
  22. package/dist/behaviors/registry/app/organisms/std-restaurant-pos.orb +130 -130
  23. package/dist/behaviors/registry/app/organisms/std-subscription-billing.orb +174 -176
  24. package/dist/behaviors/registry/app/organisms/std-survey.orb +144 -145
  25. package/dist/behaviors/registry/app/organisms/std-wiki.orb +129 -130
  26. package/dist/behaviors/registry/core/molecules/std-form-advanced.orb +124 -124
  27. package/package.json +7 -14
@@ -111,33 +111,33 @@
111
111
  "ref": "AppShell.traits.AppLayout",
112
112
  "name": "EventAppLayout",
113
113
  "config": {
114
- "notifications": [],
115
114
  "contentTrait": "@trait.EventCatalog",
116
- "appName": "EventTicketing",
117
115
  "navItems": [
118
116
  {
117
+ "label": "Events",
119
118
  "href": "/events",
120
- "icon": "calendar",
121
- "label": "Events"
119
+ "icon": "calendar"
122
120
  },
123
121
  {
124
- "icon": "ticket",
125
122
  "label": "Tickets",
126
- "href": "/tickets"
123
+ "href": "/tickets",
124
+ "icon": "ticket"
127
125
  },
128
126
  {
129
- "icon": "qr-code",
130
127
  "label": "Check-in",
131
- "href": "/checkin"
128
+ "href": "/checkin",
129
+ "icon": "qr-code"
132
130
  },
133
131
  {
134
- "label": "Waitlist",
135
132
  "href": "/waitlist",
133
+ "label": "Waitlist",
136
134
  "icon": "users"
137
135
  }
138
136
  ],
137
+ "searchEvent": "EVENT_SEARCH",
138
+ "notifications": [],
139
139
  "notificationClickEvent": "EVENT_NOTIFICATIONS_OPEN",
140
- "searchEvent": "EVENT_SEARCH"
140
+ "appName": "EventTicketing"
141
141
  },
142
142
  "events": {
143
143
  "SEARCH": "EVENT_SEARCH",
@@ -224,61 +224,61 @@
224
224
  "render-ui",
225
225
  "main",
226
226
  {
227
- "type": "stack",
227
+ "direction": "vertical",
228
228
  "gap": "lg",
229
229
  "children": [
230
230
  {
231
231
  "align": "center",
232
- "direction": "horizontal",
232
+ "gap": "md",
233
+ "type": "stack",
233
234
  "children": [
234
235
  {
235
236
  "children": [
236
237
  {
237
- "name": "calendar",
238
- "type": "icon"
238
+ "type": "icon",
239
+ "name": "calendar"
239
240
  },
240
241
  {
241
- "content": "Events",
242
242
  "type": "typography",
243
- "variant": "h2"
243
+ "variant": "h2",
244
+ "content": "Events"
244
245
  }
245
246
  ],
246
- "type": "stack",
247
- "gap": "sm",
247
+ "align": "center",
248
248
  "direction": "horizontal",
249
- "align": "center"
249
+ "gap": "sm",
250
+ "type": "stack"
250
251
  },
251
252
  {
252
253
  "children": [
253
254
  {
254
- "label": "New Event",
255
255
  "type": "button",
256
- "action": "CREATE",
256
+ "label": "New Event",
257
257
  "variant": "primary",
258
- "icon": "plus"
258
+ "icon": "plus",
259
+ "action": "CREATE"
259
260
  }
260
261
  ],
261
- "gap": "sm",
262
262
  "direction": "horizontal",
263
- "type": "stack"
263
+ "type": "stack",
264
+ "gap": "sm"
264
265
  }
265
266
  ],
266
- "type": "stack",
267
- "justify": "between",
268
- "gap": "md"
267
+ "direction": "horizontal",
268
+ "justify": "between"
269
269
  },
270
270
  {
271
271
  "type": "divider"
272
272
  },
273
273
  {
274
274
  "gap": "md",
275
- "direction": "horizontal",
276
275
  "type": "stack",
277
276
  "align": "center",
278
277
  "children": [
279
278
  "@trait.EventSearch",
280
279
  "@trait.EventFilter"
281
- ]
280
+ ],
281
+ "direction": "horizontal"
282
282
  },
283
283
  "@trait.EventStats",
284
284
  {
@@ -293,13 +293,13 @@
293
293
  "type": "divider"
294
294
  },
295
295
  {
296
+ "content": "Advanced Event Admin",
296
297
  "variant": "h3",
297
- "type": "typography",
298
- "content": "Advanced Event Admin"
298
+ "type": "typography"
299
299
  },
300
300
  "@trait.EventAdvancedAdmin"
301
301
  ],
302
- "direction": "vertical"
302
+ "type": "stack"
303
303
  }
304
304
  ]
305
305
  ]
@@ -318,34 +318,34 @@
318
318
  "render-ui",
319
319
  "main",
320
320
  {
321
- "gap": "md",
322
321
  "className": "py-8",
322
+ "direction": "vertical",
323
+ "type": "stack",
324
+ "gap": "md",
325
+ "align": "center",
323
326
  "children": [
324
327
  {
325
- "name": "bell",
326
- "type": "icon"
328
+ "type": "icon",
329
+ "name": "bell"
327
330
  },
328
331
  {
329
332
  "variant": "h3",
330
- "content": "No notifications",
331
- "type": "typography"
333
+ "type": "typography",
334
+ "content": "No notifications"
332
335
  },
333
336
  {
334
- "color": "muted",
335
337
  "variant": "caption",
336
- "content": "You're all caught up.",
337
- "type": "typography"
338
+ "type": "typography",
339
+ "color": "muted",
340
+ "content": "You're all caught up."
338
341
  },
339
342
  {
340
- "action": "INIT",
341
343
  "variant": "ghost",
342
- "type": "button",
343
- "label": "Back to events"
344
+ "label": "Back to events",
345
+ "action": "INIT",
346
+ "type": "button"
344
347
  }
345
- ],
346
- "type": "stack",
347
- "direction": "vertical",
348
- "align": "center"
348
+ ]
349
349
  }
350
350
  ]
351
351
  ]
@@ -358,8 +358,8 @@
358
358
  "ref": "Search.traits.SearchResultSearch",
359
359
  "name": "EventSearch",
360
360
  "config": {
361
- "placeholder": "Search events…",
362
- "event": "EVENT_SEARCH"
361
+ "event": "EVENT_SEARCH",
362
+ "placeholder": "Search events…"
363
363
  }
364
364
  },
365
365
  {
@@ -375,14 +375,9 @@
375
375
  "sold-out",
376
376
  "cancelled"
377
377
  ],
378
- "label": "Status",
378
+ "field": "status",
379
379
  "filterType": "select",
380
- "field": "status"
381
- },
382
- {
383
- "filterType": "text",
384
- "field": "venue",
385
- "label": "Venue"
380
+ "label": "Status"
386
381
  }
387
382
  ]
388
383
  }
@@ -391,16 +386,18 @@
391
386
  "ref": "Stats.traits.StatsItemStats",
392
387
  "name": "EventStats",
393
388
  "config": {
394
- "title": "Events",
395
389
  "metrics": [
396
390
  {
397
- "aggregation": "count",
398
391
  "label": "Total",
392
+ "variant": "primary",
393
+ "aggregation": "count",
399
394
  "format": "number",
400
- "icon": "calendar",
401
- "variant": "primary"
395
+ "icon": "calendar"
402
396
  },
403
397
  {
398
+ "icon": "send",
399
+ "aggregation": "count",
400
+ "label": "Published",
404
401
  "filter": [
405
402
  "fn",
406
403
  "row",
@@ -410,14 +407,12 @@
410
407
  "published"
411
408
  ]
412
409
  ],
413
- "label": "Published",
414
410
  "format": "number",
415
- "aggregation": "count",
416
- "icon": "send",
417
411
  "variant": "success"
418
412
  },
419
413
  {
420
414
  "variant": "warning",
415
+ "format": "number",
421
416
  "filter": [
422
417
  "fn",
423
418
  "row",
@@ -427,20 +422,20 @@
427
422
  "sold-out"
428
423
  ]
429
424
  ],
430
- "label": "Sold Out",
431
- "format": "number",
425
+ "icon": "check-circle",
432
426
  "aggregation": "count",
433
- "icon": "check-circle"
427
+ "label": "Sold Out"
434
428
  },
435
429
  {
436
- "variant": "info",
437
- "field": "capacity",
438
430
  "aggregation": "sum",
439
431
  "label": "Capacity",
440
432
  "icon": "users",
433
+ "variant": "info",
434
+ "field": "capacity",
441
435
  "format": "number"
442
436
  }
443
- ]
437
+ ],
438
+ "title": "Events"
444
439
  },
445
440
  "listens": [
446
441
  {
@@ -458,25 +453,6 @@
458
453
  "name": "EventBrowseList",
459
454
  "linkedEntity": "EventRow",
460
455
  "config": {
461
- "gap": "sm",
462
- "itemActions": [
463
- {
464
- "event": "VIEW",
465
- "label": "View",
466
- "variant": "ghost"
467
- },
468
- {
469
- "label": "Edit",
470
- "variant": "ghost",
471
- "event": "EDIT"
472
- },
473
- {
474
- "variant": "danger",
475
- "label": "Delete",
476
- "event": "DELETE"
477
- }
478
- ],
479
- "cols": 1.0,
480
456
  "fields": [
481
457
  {
482
458
  "icon": "calendar",
@@ -484,8 +460,8 @@
484
460
  "variant": "h3"
485
461
  },
486
462
  {
487
- "variant": "body",
488
- "name": "venue"
463
+ "name": "venue",
464
+ "variant": "body"
489
465
  },
490
466
  {
491
467
  "name": "startsAt",
@@ -498,13 +474,32 @@
498
474
  "format": "date"
499
475
  },
500
476
  {
477
+ "format": "number",
501
478
  "variant": "body",
502
- "name": "capacity",
503
- "format": "number"
479
+ "name": "capacity"
504
480
  },
505
481
  {
506
- "variant": "badge",
507
- "name": "status"
482
+ "name": "status",
483
+ "variant": "badge"
484
+ }
485
+ ],
486
+ "cols": 1.0,
487
+ "gap": "sm",
488
+ "itemActions": [
489
+ {
490
+ "event": "VIEW",
491
+ "variant": "ghost",
492
+ "label": "View"
493
+ },
494
+ {
495
+ "event": "EDIT",
496
+ "variant": "ghost",
497
+ "label": "Edit"
498
+ },
499
+ {
500
+ "label": "Delete",
501
+ "event": "DELETE",
502
+ "variant": "danger"
508
503
  }
509
504
  ]
510
505
  },
@@ -598,9 +593,8 @@
598
593
  "name": "EventCreate",
599
594
  "linkedEntity": "EventRow",
600
595
  "config": {
601
- "mode": "create",
602
- "icon": "plus-circle",
603
596
  "title": "New Event",
597
+ "icon": "plus-circle",
604
598
  "fields": [
605
599
  "name",
606
600
  "description",
@@ -610,7 +604,8 @@
610
604
  "capacity",
611
605
  "status",
612
606
  "organizerId"
613
- ]
607
+ ],
608
+ "mode": "create"
614
609
  },
615
610
  "events": {
616
611
  "OPEN": "CREATE"
@@ -631,6 +626,8 @@
631
626
  "name": "EventEdit",
632
627
  "linkedEntity": "EventRow",
633
628
  "config": {
629
+ "mode": "edit",
630
+ "title": "Edit Event",
634
631
  "fields": [
635
632
  "name",
636
633
  "description",
@@ -641,9 +638,7 @@
641
638
  "status",
642
639
  "organizerId"
643
640
  ],
644
- "mode": "edit",
645
- "icon": "edit",
646
- "title": "Edit Event"
641
+ "icon": "edit"
647
642
  },
648
643
  "events": {
649
644
  "OPEN": "EDIT"
@@ -664,6 +659,9 @@
664
659
  "name": "EventView",
665
660
  "linkedEntity": "EventRow",
666
661
  "config": {
662
+ "mode": "edit",
663
+ "icon": "eye",
664
+ "title": "View Event",
667
665
  "fields": [
668
666
  "name",
669
667
  "description",
@@ -673,10 +671,7 @@
673
671
  "capacity",
674
672
  "status",
675
673
  "organizerId"
676
- ],
677
- "icon": "eye",
678
- "mode": "edit",
679
- "title": "View Event"
674
+ ]
680
675
  },
681
676
  "events": {
682
677
  "OPEN": "VIEW"
@@ -703,8 +698,8 @@
703
698
  "confirmLabel": "Delete"
704
699
  },
705
700
  "events": {
706
- "REQUEST": "DELETE",
707
- "CONFIRM": "CONFIRM_DELETE"
701
+ "CONFIRM": "CONFIRM_DELETE",
702
+ "REQUEST": "DELETE"
708
703
  },
709
704
  "listens": [
710
705
  {
@@ -1040,34 +1035,33 @@
1040
1035
  {
1041
1036
  "ref": "AppShell.traits.AppLayout",
1042
1037
  "name": "TicketAppLayout",
1043
- "linkedEntity": "Ticket",
1044
1038
  "config": {
1039
+ "contentTrait": "@trait.TicketShop",
1045
1040
  "appName": "EventTicketing",
1046
1041
  "navItems": [
1047
1042
  {
1048
- "label": "Events",
1043
+ "href": "/events",
1049
1044
  "icon": "calendar",
1050
- "href": "/events"
1045
+ "label": "Events"
1051
1046
  },
1052
1047
  {
1048
+ "label": "Tickets",
1053
1049
  "href": "/tickets",
1054
- "icon": "ticket",
1055
- "label": "Tickets"
1050
+ "icon": "ticket"
1056
1051
  },
1057
1052
  {
1053
+ "icon": "qr-code",
1058
1054
  "label": "Check-in",
1059
- "href": "/checkin",
1060
- "icon": "qr-code"
1055
+ "href": "/checkin"
1061
1056
  },
1062
1057
  {
1058
+ "icon": "users",
1063
1059
  "href": "/waitlist",
1064
- "label": "Waitlist",
1065
- "icon": "users"
1060
+ "label": "Waitlist"
1066
1061
  }
1067
1062
  ],
1068
- "contentTrait": "@trait.TicketShop",
1069
- "searchEvent": "TICKET_SEARCH",
1070
1063
  "notifications": [],
1064
+ "searchEvent": "TICKET_SEARCH",
1071
1065
  "notificationClickEvent": "TICKET_NOTIFICATIONS_OPEN"
1072
1066
  },
1073
1067
  "events": {
@@ -1155,66 +1149,66 @@
1155
1149
  "render-ui",
1156
1150
  "main",
1157
1151
  {
1152
+ "type": "stack",
1158
1153
  "gap": "lg",
1159
1154
  "direction": "vertical",
1160
- "type": "stack",
1161
1155
  "children": [
1162
1156
  {
1163
- "align": "center",
1164
- "gap": "md",
1165
1157
  "justify": "between",
1166
- "type": "stack",
1158
+ "align": "center",
1167
1159
  "children": [
1168
1160
  {
1169
- "type": "stack",
1170
- "align": "center",
1171
- "gap": "sm",
1172
1161
  "direction": "horizontal",
1173
1162
  "children": [
1174
1163
  {
1175
- "type": "icon",
1176
- "name": "ticket"
1164
+ "name": "ticket",
1165
+ "type": "icon"
1177
1166
  },
1178
1167
  {
1179
- "type": "typography",
1180
1168
  "content": "Tickets",
1181
- "variant": "h2"
1169
+ "variant": "h2",
1170
+ "type": "typography"
1182
1171
  }
1183
- ]
1172
+ ],
1173
+ "type": "stack",
1174
+ "align": "center",
1175
+ "gap": "sm"
1184
1176
  },
1185
1177
  {
1186
- "gap": "sm",
1187
- "direction": "horizontal",
1188
1178
  "children": [
1189
1179
  {
1190
1180
  "variant": "primary",
1191
- "action": "ISSUE",
1192
1181
  "type": "button",
1182
+ "icon": "plus",
1193
1183
  "label": "Issue Ticket",
1194
- "icon": "plus"
1184
+ "action": "ISSUE"
1195
1185
  }
1196
1186
  ],
1187
+ "direction": "horizontal",
1188
+ "gap": "sm",
1197
1189
  "type": "stack"
1198
1190
  }
1199
1191
  ],
1200
- "direction": "horizontal"
1192
+ "type": "stack",
1193
+ "direction": "horizontal",
1194
+ "gap": "md"
1201
1195
  },
1202
1196
  {
1203
1197
  "type": "divider"
1204
1198
  },
1205
1199
  {
1200
+ "variant": "h3",
1206
1201
  "type": "typography",
1207
- "content": "Available Tiers",
1208
- "variant": "h3"
1202
+ "content": "Available Tiers"
1209
1203
  },
1210
1204
  "@trait.TicketTierShop",
1211
1205
  {
1212
1206
  "type": "divider"
1213
1207
  },
1214
1208
  {
1209
+ "variant": "h3",
1215
1210
  "type": "typography",
1216
- "content": "Your Cart",
1217
- "variant": "h3"
1211
+ "content": "Your Cart"
1218
1212
  },
1219
1213
  "@trait.TicketCart",
1220
1214
  {
@@ -1222,8 +1216,8 @@
1222
1216
  },
1223
1217
  {
1224
1218
  "type": "typography",
1225
- "content": "Tickets Issued",
1226
- "variant": "h3"
1219
+ "variant": "h3",
1220
+ "content": "Tickets Issued"
1227
1221
  },
1228
1222
  "@trait.TicketBrowseList"
1229
1223
  ]
@@ -1275,41 +1269,41 @@
1275
1269
  "config": {
1276
1270
  "itemActions": [
1277
1271
  {
1272
+ "label": "View",
1278
1273
  "event": "VIEW",
1279
- "variant": "ghost",
1280
- "label": "View"
1274
+ "variant": "ghost"
1281
1275
  }
1282
1276
  ],
1283
- "cols": 1.0,
1277
+ "gap": "sm",
1284
1278
  "fields": [
1285
1279
  {
1286
1280
  "variant": "h4",
1287
- "icon": "ticket",
1288
- "name": "holderName"
1281
+ "name": "holderName",
1282
+ "icon": "ticket"
1289
1283
  },
1290
1284
  {
1291
1285
  "name": "holderEmail",
1292
1286
  "variant": "caption"
1293
1287
  },
1294
1288
  {
1295
- "name": "tierId",
1296
- "variant": "badge"
1289
+ "variant": "badge",
1290
+ "name": "tierId"
1297
1291
  },
1298
1292
  {
1299
- "variant": "body",
1300
- "name": "qrCode"
1293
+ "name": "qrCode",
1294
+ "variant": "body"
1301
1295
  },
1302
1296
  {
1303
- "variant": "badge",
1304
- "name": "status"
1297
+ "name": "status",
1298
+ "variant": "badge"
1305
1299
  },
1306
1300
  {
1301
+ "format": "date",
1307
1302
  "name": "purchasedAt",
1308
- "variant": "caption",
1309
- "format": "date"
1303
+ "variant": "caption"
1310
1304
  }
1311
1305
  ],
1312
- "gap": "sm"
1306
+ "cols": 1.0
1313
1307
  },
1314
1308
  "listens": [
1315
1309
  {
@@ -1327,8 +1321,8 @@
1327
1321
  "name": "TicketIssueModal",
1328
1322
  "linkedEntity": "Ticket",
1329
1323
  "config": {
1330
- "mode": "create",
1331
1324
  "icon": "plus-circle",
1325
+ "title": "Issue Ticket",
1332
1326
  "fields": [
1333
1327
  "eventId",
1334
1328
  "tierId",
@@ -1336,7 +1330,7 @@
1336
1330
  "holderEmail",
1337
1331
  "status"
1338
1332
  ],
1339
- "title": "Issue Ticket"
1333
+ "mode": "create"
1340
1334
  },
1341
1335
  "events": {
1342
1336
  "OPEN": "ISSUE"
@@ -1536,20 +1530,18 @@
1536
1530
  {
1537
1531
  "ref": "AppShell.traits.AppLayout",
1538
1532
  "name": "CheckinAppLayout",
1539
- "linkedEntity": "Attendee",
1540
1533
  "config": {
1541
1534
  "searchEvent": "CHECKIN_SEARCH",
1542
- "appName": "EventTicketing",
1543
1535
  "navItems": [
1544
1536
  {
1545
- "href": "/events",
1546
1537
  "label": "Events",
1538
+ "href": "/events",
1547
1539
  "icon": "calendar"
1548
1540
  },
1549
1541
  {
1550
1542
  "label": "Tickets",
1551
- "href": "/tickets",
1552
- "icon": "ticket"
1543
+ "icon": "ticket",
1544
+ "href": "/tickets"
1553
1545
  },
1554
1546
  {
1555
1547
  "href": "/checkin",
@@ -1557,14 +1549,15 @@
1557
1549
  "label": "Check-in"
1558
1550
  },
1559
1551
  {
1552
+ "label": "Waitlist",
1560
1553
  "href": "/waitlist",
1561
- "icon": "users",
1562
- "label": "Waitlist"
1554
+ "icon": "users"
1563
1555
  }
1564
1556
  ],
1565
- "notificationClickEvent": "CHECKIN_NOTIFICATIONS_OPEN",
1557
+ "appName": "EventTicketing",
1558
+ "contentTrait": "@trait.CheckinDashboard",
1566
1559
  "notifications": [],
1567
- "contentTrait": "@trait.CheckinDashboard"
1560
+ "notificationClickEvent": "CHECKIN_NOTIFICATIONS_OPEN"
1568
1561
  },
1569
1562
  "events": {
1570
1563
  "SEARCH": "CHECKIN_SEARCH",
@@ -1635,24 +1628,25 @@
1635
1628
  "render-ui",
1636
1629
  "main",
1637
1630
  {
1638
- "gap": "lg",
1631
+ "type": "stack",
1632
+ "direction": "vertical",
1639
1633
  "children": [
1640
1634
  {
1635
+ "type": "stack",
1636
+ "direction": "horizontal",
1637
+ "gap": "sm",
1638
+ "align": "center",
1641
1639
  "children": [
1642
1640
  {
1643
1641
  "type": "icon",
1644
1642
  "name": "qr-code"
1645
1643
  },
1646
1644
  {
1647
- "content": "Door Check-in",
1645
+ "variant": "h2",
1648
1646
  "type": "typography",
1649
- "variant": "h2"
1647
+ "content": "Door Check-in"
1650
1648
  }
1651
- ],
1652
- "type": "stack",
1653
- "gap": "sm",
1654
- "direction": "horizontal",
1655
- "align": "center"
1649
+ ]
1656
1650
  },
1657
1651
  {
1658
1652
  "type": "divider"
@@ -1663,13 +1657,12 @@
1663
1657
  },
1664
1658
  {
1665
1659
  "variant": "h3",
1666
- "content": "Attendees",
1667
- "type": "typography"
1660
+ "type": "typography",
1661
+ "content": "Attendees"
1668
1662
  },
1669
1663
  "@trait.AttendeeListing"
1670
1664
  ],
1671
- "direction": "vertical",
1672
- "type": "stack"
1665
+ "gap": "lg"
1673
1666
  }
1674
1667
  ]
1675
1668
  ]
@@ -1795,9 +1788,11 @@
1795
1788
  {
1796
1789
  "ref": "AppShell.traits.AppLayout",
1797
1790
  "name": "WaitlistAppLayout",
1798
- "linkedEntity": "WaitlistRow",
1799
1791
  "config": {
1792
+ "searchEvent": "WAITLIST_SEARCH",
1793
+ "contentTrait": "@trait.WaitlistDashboard",
1800
1794
  "notificationClickEvent": "WAITLIST_NOTIFICATIONS_OPEN",
1795
+ "appName": "EventTicketing",
1801
1796
  "navItems": [
1802
1797
  {
1803
1798
  "href": "/events",
@@ -1805,9 +1800,9 @@
1805
1800
  "label": "Events"
1806
1801
  },
1807
1802
  {
1808
- "icon": "ticket",
1803
+ "href": "/tickets",
1809
1804
  "label": "Tickets",
1810
- "href": "/tickets"
1805
+ "icon": "ticket"
1811
1806
  },
1812
1807
  {
1813
1808
  "href": "/checkin",
@@ -1820,14 +1815,11 @@
1820
1815
  "href": "/waitlist"
1821
1816
  }
1822
1817
  ],
1823
- "notifications": [],
1824
- "contentTrait": "@trait.WaitlistDashboard",
1825
- "appName": "EventTicketing",
1826
- "searchEvent": "WAITLIST_SEARCH"
1818
+ "notifications": []
1827
1819
  },
1828
1820
  "events": {
1829
- "SEARCH": "WAITLIST_SEARCH",
1830
- "NOTIFY_CLICK": "WAITLIST_NOTIFICATIONS_OPEN"
1821
+ "NOTIFY_CLICK": "WAITLIST_NOTIFICATIONS_OPEN",
1822
+ "SEARCH": "WAITLIST_SEARCH"
1831
1823
  }
1832
1824
  },
1833
1825
  {
@@ -1910,17 +1902,14 @@
1910
1902
  "render-ui",
1911
1903
  "main",
1912
1904
  {
1905
+ "direction": "vertical",
1913
1906
  "children": [
1914
1907
  {
1915
1908
  "align": "center",
1916
- "gap": "md",
1917
- "direction": "horizontal",
1918
- "type": "stack",
1919
- "justify": "between",
1920
1909
  "children": [
1921
1910
  {
1922
- "align": "center",
1923
1911
  "direction": "horizontal",
1912
+ "align": "center",
1924
1913
  "children": [
1925
1914
  {
1926
1915
  "name": "users",
@@ -1932,24 +1921,28 @@
1932
1921
  "content": "Waitlist"
1933
1922
  }
1934
1923
  ],
1935
- "type": "stack",
1936
- "gap": "sm"
1924
+ "gap": "sm",
1925
+ "type": "stack"
1937
1926
  },
1938
1927
  {
1939
1928
  "gap": "sm",
1940
- "direction": "horizontal",
1941
- "type": "stack",
1942
1929
  "children": [
1943
1930
  {
1931
+ "label": "Join Waitlist",
1944
1932
  "icon": "user-plus",
1933
+ "variant": "primary",
1945
1934
  "action": "JOIN",
1946
- "label": "Join Waitlist",
1947
- "type": "button",
1948
- "variant": "primary"
1935
+ "type": "button"
1949
1936
  }
1950
- ]
1937
+ ],
1938
+ "type": "stack",
1939
+ "direction": "horizontal"
1951
1940
  }
1952
- ]
1941
+ ],
1942
+ "type": "stack",
1943
+ "direction": "horizontal",
1944
+ "gap": "md",
1945
+ "justify": "between"
1953
1946
  },
1954
1947
  {
1955
1948
  "type": "divider"
@@ -1960,14 +1953,13 @@
1960
1953
  },
1961
1954
  {
1962
1955
  "type": "typography",
1963
- "variant": "h3",
1964
- "content": "All Entries"
1956
+ "content": "All Entries",
1957
+ "variant": "h3"
1965
1958
  },
1966
1959
  "@trait.WaitlistBrowseList"
1967
1960
  ],
1968
- "gap": "lg",
1969
- "direction": "vertical",
1970
- "type": "stack"
1961
+ "type": "stack",
1962
+ "gap": "lg"
1971
1963
  }
1972
1964
  ]
1973
1965
  ]
@@ -1999,23 +1991,22 @@
1999
1991
  "linkedEntity": "WaitlistRow",
2000
1992
  "config": {
2001
1993
  "itemActions": [],
2002
- "gap": "sm",
2003
1994
  "fields": [
2004
1995
  {
2005
1996
  "name": "position",
2006
1997
  "variant": "badge"
2007
1998
  },
2008
1999
  {
2009
- "variant": "h4",
2010
- "name": "userId"
2000
+ "name": "userId",
2001
+ "variant": "h4"
2011
2002
  },
2012
2003
  {
2013
2004
  "name": "targetId",
2014
2005
  "variant": "caption"
2015
2006
  },
2016
2007
  {
2017
- "name": "status",
2018
- "variant": "badge"
2008
+ "variant": "badge",
2009
+ "name": "status"
2019
2010
  },
2020
2011
  {
2021
2012
  "name": "joinedAt",
@@ -2023,7 +2014,8 @@
2023
2014
  "format": "date"
2024
2015
  }
2025
2016
  ],
2026
- "cols": 1.0
2017
+ "cols": 1.0,
2018
+ "gap": "sm"
2027
2019
  },
2028
2020
  "listens": [
2029
2021
  {
@@ -2041,13 +2033,13 @@
2041
2033
  "name": "WaitlistJoinModal",
2042
2034
  "linkedEntity": "WaitlistRow",
2043
2035
  "config": {
2044
- "mode": "create",
2045
2036
  "icon": "user-plus",
2046
2037
  "fields": [
2047
2038
  "targetId",
2048
2039
  "userId",
2049
2040
  "status"
2050
2041
  ],
2042
+ "mode": "create",
2051
2043
  "title": "Join Waitlist"
2052
2044
  },
2053
2045
  "events": {