@almadar/std 14.29.0 → 14.29.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/behaviors/registry/app/molecules/std-vendor-onboarding.orb +305 -257
- package/behaviors/registry/core/atoms/std-step-flow.orb +718 -346
- package/behaviors/registry/core/molecules/std-wizard-form.orb +254 -183
- package/dist/behaviors/registry/app/molecules/std-vendor-onboarding.orb +305 -257
- package/dist/behaviors/registry/core/atoms/std-step-flow.orb +718 -346
- package/dist/behaviors/registry/core/molecules/std-wizard-form.orb +254 -183
- package/package.json +1 -1
|
@@ -35,6 +35,53 @@
|
|
|
35
35
|
"category": "interaction",
|
|
36
36
|
"linkedEntity": "WizardFormEntry",
|
|
37
37
|
"emits": [
|
|
38
|
+
{
|
|
39
|
+
"event": "NEXT",
|
|
40
|
+
"payloadSchema": [
|
|
41
|
+
{
|
|
42
|
+
"name": "data",
|
|
43
|
+
"type": "object"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "currentStep",
|
|
47
|
+
"type": "number"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"name": "totalSteps",
|
|
51
|
+
"type": "number"
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"event": "PREV",
|
|
57
|
+
"payloadSchema": [
|
|
58
|
+
{
|
|
59
|
+
"name": "currentStep",
|
|
60
|
+
"type": "number"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "totalSteps",
|
|
64
|
+
"type": "number"
|
|
65
|
+
}
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"event": "COMPLETE",
|
|
70
|
+
"payloadSchema": [
|
|
71
|
+
{
|
|
72
|
+
"name": "data",
|
|
73
|
+
"type": "object"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "currentStep",
|
|
77
|
+
"type": "number"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"name": "totalSteps",
|
|
81
|
+
"type": "number"
|
|
82
|
+
}
|
|
83
|
+
]
|
|
84
|
+
},
|
|
38
85
|
{
|
|
39
86
|
"event": "WizardFormSaved",
|
|
40
87
|
"description": "Fired when wizard flow completes successfully",
|
|
@@ -116,14 +163,31 @@
|
|
|
116
163
|
"payloadSchema": [
|
|
117
164
|
{
|
|
118
165
|
"name": "data",
|
|
119
|
-
"type": "object"
|
|
120
|
-
|
|
166
|
+
"type": "object"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "currentStep",
|
|
170
|
+
"type": "number"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"name": "totalSteps",
|
|
174
|
+
"type": "number"
|
|
121
175
|
}
|
|
122
176
|
]
|
|
123
177
|
},
|
|
124
178
|
{
|
|
125
179
|
"key": "PREV",
|
|
126
|
-
"name": "Prev"
|
|
180
|
+
"name": "Prev",
|
|
181
|
+
"payloadSchema": [
|
|
182
|
+
{
|
|
183
|
+
"name": "currentStep",
|
|
184
|
+
"type": "number"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"name": "totalSteps",
|
|
188
|
+
"type": "number"
|
|
189
|
+
}
|
|
190
|
+
]
|
|
127
191
|
},
|
|
128
192
|
{
|
|
129
193
|
"key": "COMPLETE",
|
|
@@ -131,8 +195,15 @@
|
|
|
131
195
|
"payloadSchema": [
|
|
132
196
|
{
|
|
133
197
|
"name": "data",
|
|
134
|
-
"type": "object"
|
|
135
|
-
|
|
198
|
+
"type": "object"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"name": "currentStep",
|
|
202
|
+
"type": "number"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"name": "totalSteps",
|
|
206
|
+
"type": "number"
|
|
136
207
|
}
|
|
137
208
|
]
|
|
138
209
|
},
|
|
@@ -209,49 +280,48 @@
|
|
|
209
280
|
"render-ui",
|
|
210
281
|
"main",
|
|
211
282
|
{
|
|
212
|
-
"
|
|
283
|
+
"direction": "vertical",
|
|
213
284
|
"gap": "lg",
|
|
214
285
|
"type": "stack",
|
|
215
|
-
"direction": "vertical",
|
|
216
286
|
"children": [
|
|
217
287
|
{
|
|
218
|
-
"gap": "sm",
|
|
219
|
-
"direction": "horizontal",
|
|
220
|
-
"align": "center",
|
|
221
288
|
"children": [
|
|
222
289
|
{
|
|
223
290
|
"type": "icon",
|
|
224
291
|
"name": "user-plus"
|
|
225
292
|
},
|
|
226
293
|
{
|
|
227
|
-
"type": "typography",
|
|
228
294
|
"variant": "h3",
|
|
229
|
-
"content": "Sign-up"
|
|
295
|
+
"content": "Sign-up",
|
|
296
|
+
"type": "typography"
|
|
230
297
|
}
|
|
231
298
|
],
|
|
232
|
-
"type": "stack"
|
|
299
|
+
"type": "stack",
|
|
300
|
+
"gap": "sm",
|
|
301
|
+
"align": "center",
|
|
302
|
+
"direction": "horizontal"
|
|
233
303
|
},
|
|
234
304
|
{
|
|
235
|
-
"currentStep": 0.0,
|
|
236
305
|
"type": "wizard-progress",
|
|
237
306
|
"steps": [
|
|
238
307
|
"Personal",
|
|
239
308
|
"Preferences",
|
|
240
309
|
"Review"
|
|
241
|
-
]
|
|
310
|
+
],
|
|
311
|
+
"currentStep": 0.0
|
|
242
312
|
},
|
|
243
313
|
{
|
|
244
314
|
"type": "divider"
|
|
245
315
|
},
|
|
246
316
|
{
|
|
247
|
-
"type": "typography",
|
|
248
317
|
"variant": "h4",
|
|
249
|
-
"content": "Personal Info"
|
|
318
|
+
"content": "Personal Info",
|
|
319
|
+
"type": "typography"
|
|
250
320
|
},
|
|
251
321
|
{
|
|
252
|
-
"mode": "create",
|
|
253
322
|
"submitEvent": "NEXT",
|
|
254
323
|
"type": "form-section",
|
|
324
|
+
"mode": "create",
|
|
255
325
|
"cancelEvent": "INIT",
|
|
256
326
|
"fields": [
|
|
257
327
|
"name",
|
|
@@ -259,15 +329,16 @@
|
|
|
259
329
|
]
|
|
260
330
|
},
|
|
261
331
|
{
|
|
262
|
-
"showBack": false,
|
|
263
|
-
"showNext": true,
|
|
264
|
-
"showComplete": false,
|
|
265
332
|
"type": "wizard-navigation",
|
|
266
333
|
"currentStep": 0.0,
|
|
334
|
+
"showNext": true,
|
|
267
335
|
"onNext": "NEXT",
|
|
268
|
-
"totalSteps": 3.0
|
|
336
|
+
"totalSteps": 3.0,
|
|
337
|
+
"showComplete": false,
|
|
338
|
+
"showBack": false
|
|
269
339
|
}
|
|
270
|
-
]
|
|
340
|
+
],
|
|
341
|
+
"className": "max-w-xl mx-auto w-full"
|
|
271
342
|
}
|
|
272
343
|
]
|
|
273
344
|
]
|
|
@@ -292,65 +363,65 @@
|
|
|
292
363
|
"main",
|
|
293
364
|
{
|
|
294
365
|
"type": "stack",
|
|
295
|
-
"className": "max-w-xl mx-auto w-full",
|
|
296
366
|
"direction": "vertical",
|
|
297
367
|
"children": [
|
|
298
368
|
{
|
|
369
|
+
"type": "stack",
|
|
370
|
+
"direction": "horizontal",
|
|
371
|
+
"gap": "sm",
|
|
372
|
+
"align": "center",
|
|
299
373
|
"children": [
|
|
300
374
|
{
|
|
301
|
-
"
|
|
302
|
-
"
|
|
375
|
+
"name": "user-plus",
|
|
376
|
+
"type": "icon"
|
|
303
377
|
},
|
|
304
378
|
{
|
|
305
|
-
"type": "typography",
|
|
306
379
|
"variant": "h3",
|
|
307
|
-
"content": "Sign-up"
|
|
380
|
+
"content": "Sign-up",
|
|
381
|
+
"type": "typography"
|
|
308
382
|
}
|
|
309
|
-
]
|
|
310
|
-
"direction": "horizontal",
|
|
311
|
-
"gap": "sm",
|
|
312
|
-
"align": "center",
|
|
313
|
-
"type": "stack"
|
|
383
|
+
]
|
|
314
384
|
},
|
|
315
385
|
{
|
|
316
386
|
"type": "wizard-progress",
|
|
317
|
-
"currentStep": 1.0,
|
|
318
387
|
"steps": [
|
|
319
388
|
"Personal",
|
|
320
389
|
"Preferences",
|
|
321
390
|
"Review"
|
|
322
|
-
]
|
|
391
|
+
],
|
|
392
|
+
"currentStep": 1.0
|
|
323
393
|
},
|
|
324
394
|
{
|
|
325
395
|
"type": "divider"
|
|
326
396
|
},
|
|
327
397
|
{
|
|
328
|
-
"variant": "h4",
|
|
329
398
|
"content": "Preferences",
|
|
330
|
-
"type": "typography"
|
|
399
|
+
"type": "typography",
|
|
400
|
+
"variant": "h4"
|
|
331
401
|
},
|
|
332
402
|
{
|
|
333
|
-
"mode": "edit",
|
|
334
403
|
"fields": [
|
|
335
404
|
"theme"
|
|
336
405
|
],
|
|
337
|
-
"
|
|
338
|
-
"cancelEvent": "PREV",
|
|
406
|
+
"mode": "edit",
|
|
339
407
|
"type": "form-section",
|
|
408
|
+
"cancelEvent": "PREV",
|
|
409
|
+
"entity": "@entity",
|
|
340
410
|
"submitEvent": "NEXT"
|
|
341
411
|
},
|
|
342
412
|
{
|
|
343
|
-
"showBack": true,
|
|
344
|
-
"onNext": "NEXT",
|
|
345
413
|
"currentStep": 1.0,
|
|
346
|
-
"onBack": "PREV",
|
|
347
|
-
"showComplete": false,
|
|
348
|
-
"showNext": true,
|
|
349
414
|
"type": "wizard-navigation",
|
|
350
|
-
"
|
|
415
|
+
"showBack": true,
|
|
416
|
+
"showNext": true,
|
|
417
|
+
"totalSteps": 3.0,
|
|
418
|
+
"showComplete": false,
|
|
419
|
+
"onNext": "NEXT",
|
|
420
|
+
"onBack": "PREV"
|
|
351
421
|
}
|
|
352
422
|
],
|
|
353
|
-
"gap": "lg"
|
|
423
|
+
"gap": "lg",
|
|
424
|
+
"className": "max-w-xl mx-auto w-full"
|
|
354
425
|
}
|
|
355
426
|
]
|
|
356
427
|
]
|
|
@@ -369,120 +440,120 @@
|
|
|
369
440
|
"render-ui",
|
|
370
441
|
"main",
|
|
371
442
|
{
|
|
372
|
-
"
|
|
443
|
+
"type": "stack",
|
|
373
444
|
"direction": "vertical",
|
|
445
|
+
"className": "max-w-xl mx-auto w-full",
|
|
374
446
|
"gap": "lg",
|
|
375
447
|
"children": [
|
|
376
448
|
{
|
|
377
|
-
"type": "stack",
|
|
378
|
-
"align": "center",
|
|
379
|
-
"direction": "horizontal",
|
|
380
449
|
"children": [
|
|
381
450
|
{
|
|
382
|
-
"
|
|
383
|
-
"
|
|
451
|
+
"type": "icon",
|
|
452
|
+
"name": "user-plus"
|
|
384
453
|
},
|
|
385
454
|
{
|
|
386
|
-
"
|
|
455
|
+
"content": "Sign-up",
|
|
387
456
|
"variant": "h3",
|
|
388
|
-
"
|
|
457
|
+
"type": "typography"
|
|
389
458
|
}
|
|
390
459
|
],
|
|
391
|
-
"
|
|
460
|
+
"direction": "horizontal",
|
|
461
|
+
"gap": "sm",
|
|
462
|
+
"type": "stack",
|
|
463
|
+
"align": "center"
|
|
392
464
|
},
|
|
393
465
|
{
|
|
466
|
+
"currentStep": 2.0,
|
|
394
467
|
"steps": [
|
|
395
468
|
"Personal",
|
|
396
469
|
"Preferences",
|
|
397
470
|
"Review"
|
|
398
471
|
],
|
|
399
|
-
"type": "wizard-progress"
|
|
400
|
-
"currentStep": 2.0
|
|
472
|
+
"type": "wizard-progress"
|
|
401
473
|
},
|
|
402
474
|
{
|
|
403
475
|
"type": "divider"
|
|
404
476
|
},
|
|
405
477
|
{
|
|
406
478
|
"type": "typography",
|
|
407
|
-
"
|
|
408
|
-
"
|
|
479
|
+
"variant": "h4",
|
|
480
|
+
"content": "Review"
|
|
409
481
|
},
|
|
410
482
|
{
|
|
411
|
-
"direction": "vertical",
|
|
412
|
-
"type": "stack",
|
|
413
483
|
"children": [
|
|
414
484
|
{
|
|
415
|
-
"direction": "horizontal",
|
|
416
485
|
"gap": "md",
|
|
486
|
+
"justify": "between",
|
|
487
|
+
"direction": "horizontal",
|
|
417
488
|
"children": [
|
|
418
489
|
{
|
|
419
490
|
"type": "typography",
|
|
420
491
|
"variant": "caption",
|
|
421
|
-
"
|
|
422
|
-
"
|
|
492
|
+
"color": "muted",
|
|
493
|
+
"content": "Name"
|
|
423
494
|
},
|
|
424
495
|
{
|
|
425
|
-
"variant": "body",
|
|
426
496
|
"type": "typography",
|
|
497
|
+
"variant": "body",
|
|
427
498
|
"content": "@entity.name"
|
|
428
499
|
}
|
|
429
500
|
],
|
|
430
|
-
"justify": "between",
|
|
431
501
|
"type": "stack"
|
|
432
502
|
},
|
|
433
503
|
{
|
|
504
|
+
"type": "stack",
|
|
434
505
|
"gap": "md",
|
|
435
506
|
"justify": "between",
|
|
436
|
-
"direction": "horizontal",
|
|
437
|
-
"type": "stack",
|
|
438
507
|
"children": [
|
|
439
508
|
{
|
|
440
509
|
"type": "typography",
|
|
441
|
-
"
|
|
510
|
+
"variant": "caption",
|
|
442
511
|
"color": "muted",
|
|
443
|
-
"
|
|
512
|
+
"content": "Email"
|
|
444
513
|
},
|
|
445
514
|
{
|
|
446
|
-
"type": "typography",
|
|
447
515
|
"content": "@entity.email",
|
|
516
|
+
"type": "typography",
|
|
448
517
|
"variant": "body"
|
|
449
518
|
}
|
|
450
|
-
]
|
|
519
|
+
],
|
|
520
|
+
"direction": "horizontal"
|
|
451
521
|
},
|
|
452
522
|
{
|
|
453
523
|
"direction": "horizontal",
|
|
454
|
-
"justify": "between",
|
|
455
524
|
"children": [
|
|
456
525
|
{
|
|
526
|
+
"type": "typography",
|
|
457
527
|
"variant": "caption",
|
|
458
528
|
"color": "muted",
|
|
459
|
-
"content": "Theme"
|
|
460
|
-
"type": "typography"
|
|
529
|
+
"content": "Theme"
|
|
461
530
|
},
|
|
462
531
|
{
|
|
463
|
-
"type": "typography",
|
|
464
532
|
"variant": "body",
|
|
465
|
-
"content": "@entity.theme"
|
|
533
|
+
"content": "@entity.theme",
|
|
534
|
+
"type": "typography"
|
|
466
535
|
}
|
|
467
536
|
],
|
|
537
|
+
"gap": "md",
|
|
468
538
|
"type": "stack",
|
|
469
|
-
"
|
|
539
|
+
"justify": "between"
|
|
470
540
|
}
|
|
471
541
|
],
|
|
472
|
-
"gap": "sm"
|
|
542
|
+
"gap": "sm",
|
|
543
|
+
"type": "stack",
|
|
544
|
+
"direction": "vertical"
|
|
473
545
|
},
|
|
474
546
|
{
|
|
547
|
+
"showBack": true,
|
|
475
548
|
"type": "wizard-navigation",
|
|
549
|
+
"onBack": "PREV",
|
|
550
|
+
"currentStep": 2.0,
|
|
551
|
+
"onComplete": "COMPLETE",
|
|
476
552
|
"showComplete": true,
|
|
477
|
-
"showNext": false,
|
|
478
553
|
"totalSteps": 3.0,
|
|
479
|
-
"
|
|
480
|
-
"onComplete": "COMPLETE",
|
|
481
|
-
"onBack": "PREV",
|
|
482
|
-
"currentStep": 2.0
|
|
554
|
+
"showNext": false
|
|
483
555
|
}
|
|
484
|
-
]
|
|
485
|
-
"type": "stack"
|
|
556
|
+
]
|
|
486
557
|
}
|
|
487
558
|
]
|
|
488
559
|
]
|
|
@@ -496,63 +567,63 @@
|
|
|
496
567
|
"render-ui",
|
|
497
568
|
"main",
|
|
498
569
|
{
|
|
499
|
-
"
|
|
570
|
+
"type": "stack",
|
|
500
571
|
"direction": "vertical",
|
|
572
|
+
"className": "max-w-xl mx-auto w-full",
|
|
501
573
|
"gap": "lg",
|
|
502
|
-
"type": "stack",
|
|
503
574
|
"children": [
|
|
504
575
|
{
|
|
505
|
-
"align": "center",
|
|
506
576
|
"children": [
|
|
507
577
|
{
|
|
508
|
-
"
|
|
509
|
-
"
|
|
578
|
+
"name": "user-plus",
|
|
579
|
+
"type": "icon"
|
|
510
580
|
},
|
|
511
581
|
{
|
|
582
|
+
"type": "typography",
|
|
512
583
|
"variant": "h3",
|
|
513
|
-
"content": "Sign-up"
|
|
514
|
-
"type": "typography"
|
|
584
|
+
"content": "Sign-up"
|
|
515
585
|
}
|
|
516
586
|
],
|
|
517
|
-
"type": "stack",
|
|
518
587
|
"direction": "horizontal",
|
|
519
|
-
"
|
|
588
|
+
"align": "center",
|
|
589
|
+
"gap": "sm",
|
|
590
|
+
"type": "stack"
|
|
520
591
|
},
|
|
521
592
|
{
|
|
522
|
-
"type": "wizard-progress",
|
|
523
|
-
"currentStep": 0.0,
|
|
524
593
|
"steps": [
|
|
525
594
|
"Personal",
|
|
526
595
|
"Preferences",
|
|
527
596
|
"Review"
|
|
528
|
-
]
|
|
597
|
+
],
|
|
598
|
+
"currentStep": 0.0,
|
|
599
|
+
"type": "wizard-progress"
|
|
529
600
|
},
|
|
530
601
|
{
|
|
531
602
|
"type": "divider"
|
|
532
603
|
},
|
|
533
604
|
{
|
|
534
|
-
"type": "typography",
|
|
535
605
|
"variant": "h4",
|
|
606
|
+
"type": "typography",
|
|
536
607
|
"content": "Personal Info"
|
|
537
608
|
},
|
|
538
609
|
{
|
|
610
|
+
"mode": "edit",
|
|
539
611
|
"fields": [
|
|
540
612
|
"name",
|
|
541
613
|
"email"
|
|
542
614
|
],
|
|
543
615
|
"cancelEvent": "INIT",
|
|
544
|
-
"
|
|
545
|
-
"type": "form-section",
|
|
616
|
+
"submitEvent": "NEXT",
|
|
546
617
|
"entity": "@entity",
|
|
547
|
-
"
|
|
618
|
+
"type": "form-section"
|
|
548
619
|
},
|
|
549
620
|
{
|
|
621
|
+
"type": "wizard-navigation",
|
|
622
|
+
"showComplete": false,
|
|
550
623
|
"onNext": "NEXT",
|
|
551
624
|
"currentStep": 0.0,
|
|
552
|
-
"showComplete": false,
|
|
553
|
-
"totalSteps": 3.0,
|
|
554
|
-
"type": "wizard-navigation",
|
|
555
625
|
"showBack": false,
|
|
626
|
+
"totalSteps": 3.0,
|
|
556
627
|
"showNext": true
|
|
557
628
|
}
|
|
558
629
|
]
|
|
@@ -581,22 +652,22 @@
|
|
|
581
652
|
"render-ui",
|
|
582
653
|
"main",
|
|
583
654
|
{
|
|
584
|
-
"
|
|
585
|
-
"
|
|
655
|
+
"align": "center",
|
|
656
|
+
"className": "max-w-xl mx-auto w-full py-12",
|
|
657
|
+
"gap": "lg",
|
|
586
658
|
"children": [
|
|
587
659
|
{
|
|
588
660
|
"type": "spinner"
|
|
589
661
|
},
|
|
590
662
|
{
|
|
591
|
-
"color": "muted",
|
|
592
|
-
"variant": "caption",
|
|
593
663
|
"content": "Completing sign-up…",
|
|
664
|
+
"variant": "caption",
|
|
665
|
+
"color": "muted",
|
|
594
666
|
"type": "typography"
|
|
595
667
|
}
|
|
596
668
|
],
|
|
597
|
-
"
|
|
598
|
-
"
|
|
599
|
-
"align": "center"
|
|
669
|
+
"type": "stack",
|
|
670
|
+
"direction": "vertical"
|
|
600
671
|
}
|
|
601
672
|
]
|
|
602
673
|
]
|
|
@@ -610,66 +681,66 @@
|
|
|
610
681
|
"render-ui",
|
|
611
682
|
"main",
|
|
612
683
|
{
|
|
613
|
-
"
|
|
684
|
+
"gap": "lg",
|
|
614
685
|
"type": "stack",
|
|
615
|
-
"className": "max-w-xl mx-auto w-full",
|
|
616
686
|
"children": [
|
|
617
687
|
{
|
|
688
|
+
"direction": "horizontal",
|
|
689
|
+
"type": "stack",
|
|
618
690
|
"children": [
|
|
619
691
|
{
|
|
620
|
-
"
|
|
621
|
-
"
|
|
692
|
+
"type": "icon",
|
|
693
|
+
"name": "user-plus"
|
|
622
694
|
},
|
|
623
695
|
{
|
|
696
|
+
"variant": "h3",
|
|
624
697
|
"type": "typography",
|
|
625
|
-
"content": "Sign-up"
|
|
626
|
-
"variant": "h3"
|
|
698
|
+
"content": "Sign-up"
|
|
627
699
|
}
|
|
628
700
|
],
|
|
629
|
-
"direction": "horizontal",
|
|
630
|
-
"gap": "sm",
|
|
631
701
|
"align": "center",
|
|
632
|
-
"
|
|
702
|
+
"gap": "sm"
|
|
633
703
|
},
|
|
634
704
|
{
|
|
705
|
+
"currentStep": 1.0,
|
|
706
|
+
"type": "wizard-progress",
|
|
635
707
|
"steps": [
|
|
636
708
|
"Personal",
|
|
637
709
|
"Preferences",
|
|
638
710
|
"Review"
|
|
639
|
-
]
|
|
640
|
-
"currentStep": 1.0,
|
|
641
|
-
"type": "wizard-progress"
|
|
711
|
+
]
|
|
642
712
|
},
|
|
643
713
|
{
|
|
644
714
|
"type": "divider"
|
|
645
715
|
},
|
|
646
716
|
{
|
|
647
717
|
"variant": "h4",
|
|
648
|
-
"
|
|
649
|
-
"
|
|
718
|
+
"type": "typography",
|
|
719
|
+
"content": "Preferences"
|
|
650
720
|
},
|
|
651
721
|
{
|
|
722
|
+
"mode": "edit",
|
|
723
|
+
"type": "form-section",
|
|
724
|
+
"cancelEvent": "PREV",
|
|
725
|
+
"submitEvent": "NEXT",
|
|
652
726
|
"fields": [
|
|
653
727
|
"theme"
|
|
654
728
|
],
|
|
655
|
-
"
|
|
656
|
-
"mode": "edit",
|
|
657
|
-
"submitEvent": "NEXT",
|
|
658
|
-
"entity": "@entity",
|
|
659
|
-
"cancelEvent": "PREV"
|
|
729
|
+
"entity": "@entity"
|
|
660
730
|
},
|
|
661
731
|
{
|
|
662
732
|
"totalSteps": 3.0,
|
|
663
|
-
"
|
|
664
|
-
"onBack": "PREV",
|
|
733
|
+
"showNext": true,
|
|
665
734
|
"onNext": "NEXT",
|
|
666
735
|
"showComplete": false,
|
|
667
|
-
"
|
|
668
|
-
"
|
|
669
|
-
"
|
|
736
|
+
"showBack": true,
|
|
737
|
+
"onBack": "PREV",
|
|
738
|
+
"currentStep": 1.0,
|
|
739
|
+
"type": "wizard-navigation"
|
|
670
740
|
}
|
|
671
741
|
],
|
|
672
|
-
"
|
|
742
|
+
"direction": "vertical",
|
|
743
|
+
"className": "max-w-xl mx-auto w-full"
|
|
673
744
|
}
|
|
674
745
|
]
|
|
675
746
|
]
|
|
@@ -683,35 +754,35 @@
|
|
|
683
754
|
"render-ui",
|
|
684
755
|
"main",
|
|
685
756
|
{
|
|
686
|
-
"
|
|
687
|
-
"type": "stack",
|
|
757
|
+
"gap": "lg",
|
|
688
758
|
"children": [
|
|
689
759
|
{
|
|
690
|
-
"
|
|
691
|
-
"
|
|
760
|
+
"type": "icon",
|
|
761
|
+
"name": "check-circle"
|
|
692
762
|
},
|
|
693
763
|
{
|
|
764
|
+
"variant": "h3",
|
|
694
765
|
"content": "Welcome!",
|
|
695
|
-
"type": "typography"
|
|
696
|
-
"variant": "h3"
|
|
766
|
+
"type": "typography"
|
|
697
767
|
},
|
|
698
768
|
{
|
|
699
769
|
"type": "typography",
|
|
700
770
|
"content": "Your account has been created.",
|
|
701
|
-
"
|
|
702
|
-
"
|
|
771
|
+
"color": "muted",
|
|
772
|
+
"variant": "body"
|
|
703
773
|
},
|
|
704
774
|
{
|
|
705
|
-
"
|
|
775
|
+
"variant": "ghost",
|
|
706
776
|
"label": "Start Over",
|
|
777
|
+
"icon": "rotate-ccw",
|
|
707
778
|
"action": "RESTART",
|
|
708
|
-
"type": "button"
|
|
709
|
-
"variant": "ghost"
|
|
779
|
+
"type": "button"
|
|
710
780
|
}
|
|
711
781
|
],
|
|
712
|
-
"
|
|
713
|
-
"
|
|
714
|
-
"align": "center"
|
|
782
|
+
"direction": "vertical",
|
|
783
|
+
"type": "stack",
|
|
784
|
+
"align": "center",
|
|
785
|
+
"className": "max-w-xl mx-auto w-full py-12"
|
|
715
786
|
}
|
|
716
787
|
]
|
|
717
788
|
]
|
|
@@ -725,8 +796,9 @@
|
|
|
725
796
|
"render-ui",
|
|
726
797
|
"main",
|
|
727
798
|
{
|
|
728
|
-
"
|
|
729
|
-
"
|
|
799
|
+
"type": "stack",
|
|
800
|
+
"direction": "vertical",
|
|
801
|
+
"className": "max-w-xl mx-auto w-full py-12",
|
|
730
802
|
"children": [
|
|
731
803
|
{
|
|
732
804
|
"type": "icon",
|
|
@@ -734,26 +806,25 @@
|
|
|
734
806
|
"color": "destructive"
|
|
735
807
|
},
|
|
736
808
|
{
|
|
737
|
-
"
|
|
809
|
+
"content": "Sign-up Failed",
|
|
738
810
|
"type": "typography",
|
|
739
|
-
"
|
|
811
|
+
"variant": "h3"
|
|
740
812
|
},
|
|
741
813
|
{
|
|
742
|
-
"
|
|
814
|
+
"message": "@payload.error",
|
|
743
815
|
"variant": "error",
|
|
744
|
-
"
|
|
816
|
+
"type": "alert"
|
|
745
817
|
},
|
|
746
818
|
{
|
|
747
819
|
"action": "COMPLETE",
|
|
748
|
-
"variant": "primary",
|
|
749
820
|
"icon": "refresh-cw",
|
|
750
|
-
"
|
|
751
|
-
"label": "Retry"
|
|
821
|
+
"variant": "primary",
|
|
822
|
+
"label": "Retry",
|
|
823
|
+
"type": "button"
|
|
752
824
|
}
|
|
753
825
|
],
|
|
754
|
-
"
|
|
755
|
-
"
|
|
756
|
-
"className": "max-w-xl mx-auto w-full py-12"
|
|
826
|
+
"gap": "lg",
|
|
827
|
+
"align": "center"
|
|
757
828
|
}
|
|
758
829
|
]
|
|
759
830
|
]
|
|
@@ -767,33 +838,32 @@
|
|
|
767
838
|
"render-ui",
|
|
768
839
|
"main",
|
|
769
840
|
{
|
|
770
|
-
"gap": "lg",
|
|
771
841
|
"children": [
|
|
772
842
|
{
|
|
773
|
-
"align": "center",
|
|
774
|
-
"gap": "sm",
|
|
775
843
|
"type": "stack",
|
|
844
|
+
"direction": "horizontal",
|
|
845
|
+
"gap": "sm",
|
|
776
846
|
"children": [
|
|
777
847
|
{
|
|
778
848
|
"name": "user-plus",
|
|
779
849
|
"type": "icon"
|
|
780
850
|
},
|
|
781
851
|
{
|
|
852
|
+
"variant": "h3",
|
|
782
853
|
"content": "Sign-up",
|
|
783
|
-
"type": "typography"
|
|
784
|
-
"variant": "h3"
|
|
854
|
+
"type": "typography"
|
|
785
855
|
}
|
|
786
856
|
],
|
|
787
|
-
"
|
|
857
|
+
"align": "center"
|
|
788
858
|
},
|
|
789
859
|
{
|
|
860
|
+
"type": "wizard-progress",
|
|
861
|
+
"currentStep": 0.0,
|
|
790
862
|
"steps": [
|
|
791
863
|
"Personal",
|
|
792
864
|
"Preferences",
|
|
793
865
|
"Review"
|
|
794
|
-
]
|
|
795
|
-
"type": "wizard-progress",
|
|
796
|
-
"currentStep": 0.0
|
|
866
|
+
]
|
|
797
867
|
},
|
|
798
868
|
{
|
|
799
869
|
"type": "divider"
|
|
@@ -804,28 +874,29 @@
|
|
|
804
874
|
"type": "typography"
|
|
805
875
|
},
|
|
806
876
|
{
|
|
807
|
-
"type": "form-section",
|
|
808
|
-
"submitEvent": "NEXT",
|
|
809
|
-
"cancelEvent": "INIT",
|
|
810
877
|
"fields": [
|
|
811
878
|
"name",
|
|
812
879
|
"email"
|
|
813
880
|
],
|
|
814
|
-
"mode": "create"
|
|
881
|
+
"mode": "create",
|
|
882
|
+
"cancelEvent": "INIT",
|
|
883
|
+
"type": "form-section",
|
|
884
|
+
"submitEvent": "NEXT"
|
|
815
885
|
},
|
|
816
886
|
{
|
|
887
|
+
"showNext": true,
|
|
888
|
+
"currentStep": 0.0,
|
|
889
|
+
"onNext": "NEXT",
|
|
817
890
|
"type": "wizard-navigation",
|
|
818
891
|
"showBack": false,
|
|
819
|
-
"currentStep": 0.0,
|
|
820
|
-
"totalSteps": 3.0,
|
|
821
|
-
"showNext": true,
|
|
822
892
|
"showComplete": false,
|
|
823
|
-
"
|
|
893
|
+
"totalSteps": 3.0
|
|
824
894
|
}
|
|
825
895
|
],
|
|
826
896
|
"type": "stack",
|
|
827
|
-
"
|
|
828
|
-
"
|
|
897
|
+
"direction": "vertical",
|
|
898
|
+
"gap": "lg",
|
|
899
|
+
"className": "max-w-xl mx-auto w-full"
|
|
829
900
|
}
|
|
830
901
|
]
|
|
831
902
|
]
|