@pareto-engineering/design-system 2.0.0-alpha.11 → 2.0.0-alpha.15
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/dist/cjs/a/BackgroundGradient/BackgroundGradient.js +77 -0
- package/dist/cjs/a/BackgroundGradient/index.js +15 -0
- package/dist/cjs/a/BackgroundGradient/styles.scss +16 -0
- package/dist/cjs/a/Conversation/Conversation.js +15 -8
- package/dist/cjs/a/Conversation/common/Message/Message.js +33 -6
- package/dist/cjs/a/Conversation/styles.scss +139 -32
- package/dist/cjs/a/Shapes/Shapes.js +9 -1
- package/dist/cjs/a/Shapes/styles.scss +35 -1
- package/dist/cjs/a/index.js +9 -1
- package/dist/cjs/b/Button/styles.scss +43 -18
- package/dist/cjs/b/Page/common/Section/Section.js +17 -3
- package/dist/cjs/c/ContentSlides/common/Navigator/Navigator.js +4 -3
- package/dist/cjs/f/common/Debugger/Debugger.js +1 -1
- package/dist/cjs/f/common/Label/Label.js +1 -1
- package/dist/cjs/f/fields/ChoicesInput/ChoicesInput.js +1 -1
- package/dist/cjs/f/fields/SelectInput/styles.scss +1 -1
- package/dist/cjs/f/fields/TaskRecommendationInput/TaskRecommendationInput.js +1 -1
- package/dist/cjs/f/fields/TextInput/styles.scss +4 -4
- package/dist/cjs/f/fields/TextareaInput/TextareaInput.js +1 -1
- package/dist/es/a/BackgroundGradient/BackgroundGradient.js +55 -0
- package/dist/es/a/BackgroundGradient/index.js +2 -0
- package/dist/es/a/BackgroundGradient/styles.scss +16 -0
- package/dist/es/a/Conversation/Conversation.js +15 -8
- package/dist/es/a/Conversation/common/Message/Message.js +33 -6
- package/dist/es/a/Conversation/styles.scss +139 -32
- package/dist/es/a/Shapes/Shapes.js +9 -1
- package/dist/es/a/Shapes/styles.scss +35 -1
- package/dist/es/a/index.js +2 -1
- package/dist/es/b/Button/styles.scss +43 -18
- package/dist/es/b/Page/common/Section/Section.js +17 -3
- package/dist/es/c/ContentSlides/common/Navigator/Navigator.js +4 -3
- package/dist/es/f/common/Debugger/Debugger.js +1 -1
- package/dist/es/f/common/Label/Label.js +1 -1
- package/dist/es/f/fields/ChoicesInput/ChoicesInput.js +1 -1
- package/dist/es/f/fields/SelectInput/styles.scss +1 -1
- package/dist/es/f/fields/TaskRecommendationInput/TaskRecommendationInput.js +1 -1
- package/dist/es/f/fields/TextInput/styles.scss +4 -4
- package/dist/es/f/fields/TextareaInput/TextareaInput.js +1 -1
- package/package.json +2 -2
- package/src/__snapshots__/Storyshots.test.js.snap +423 -93
- package/src/local.scss +1 -0
- package/src/stories/a/BackgroundGradient.stories.jsx +38 -0
- package/src/stories/a/Conversation.stories.jsx +78 -1
- package/src/stories/a/Shapes.stories.jsx +18 -0
- package/src/stories/b/Button.stories.jsx +5 -4
- package/src/stories/b/Page.stories.jsx +25 -1
- package/src/ui/a/BackgroundGradient/BackgroundGradient.jsx +76 -0
- package/src/ui/a/BackgroundGradient/index.js +2 -0
- package/src/ui/a/BackgroundGradient/styles.scss +16 -0
- package/src/ui/a/Conversation/Conversation.jsx +15 -7
- package/src/ui/a/Conversation/common/Message/Message.jsx +40 -7
- package/src/ui/a/Conversation/styles.scss +139 -32
- package/src/ui/a/Shapes/Shapes.jsx +10 -0
- package/src/ui/a/Shapes/styles.scss +35 -1
- package/src/ui/a/index.js +1 -0
- package/src/ui/b/Button/Button.jsx +2 -1
- package/src/ui/b/Button/styles.scss +43 -18
- package/src/ui/b/Page/common/Section/Section.jsx +19 -2
- package/src/ui/c/ContentSlides/common/Navigator/Navigator.jsx +3 -2
- package/src/ui/f/common/Debugger/Debugger.jsx +1 -1
- package/src/ui/f/common/Label/Label.jsx +1 -1
- package/src/ui/f/fields/ChoicesInput/ChoicesInput.jsx +1 -1
- package/src/ui/f/fields/SelectInput/styles.scss +1 -1
- package/src/ui/f/fields/TaskRecommendationInput/TaskRecommendationInput.jsx +1 -1
- package/src/ui/f/fields/TextInput/styles.scss +4 -4
- package/src/ui/f/fields/TextareaInput/TextareaInput.jsx +1 -1
|
@@ -63,6 +63,27 @@ exports[`Storyshots a/AnimatedCounter Before And After 1`] = `
|
|
|
63
63
|
</div>
|
|
64
64
|
`;
|
|
65
65
|
|
|
66
|
+
exports[`Storyshots a/BackgroundGradient Base 1`] = `
|
|
67
|
+
<div
|
|
68
|
+
className="y-background4"
|
|
69
|
+
style={
|
|
70
|
+
Object {
|
|
71
|
+
"height": "700px",
|
|
72
|
+
"position": "relative",
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
>
|
|
76
|
+
<div
|
|
77
|
+
className="base background-gradient"
|
|
78
|
+
style={
|
|
79
|
+
Object {
|
|
80
|
+
"--gradient-height": "50em",
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
/>
|
|
84
|
+
</div>
|
|
85
|
+
`;
|
|
86
|
+
|
|
66
87
|
exports[`Storyshots a/ContentCard Content After 1`] = `
|
|
67
88
|
<div
|
|
68
89
|
className="u1 p-u"
|
|
@@ -93,10 +114,10 @@ exports[`Storyshots a/ContentCard Content After 1`] = `
|
|
|
93
114
|
</p>
|
|
94
115
|
</div>
|
|
95
116
|
<div
|
|
96
|
-
className="base conversation illustration y-
|
|
117
|
+
className="base conversation illustration y-background2 u1"
|
|
97
118
|
>
|
|
98
119
|
<div
|
|
99
|
-
className="base message x-
|
|
120
|
+
className="base message x-background1 ours v1"
|
|
100
121
|
>
|
|
101
122
|
<div
|
|
102
123
|
className="elementContent"
|
|
@@ -113,7 +134,7 @@ exports[`Storyshots a/ContentCard Content After 1`] = `
|
|
|
113
134
|
</div>
|
|
114
135
|
</div>
|
|
115
136
|
<div
|
|
116
|
-
className="base message x-
|
|
137
|
+
className="base message x-background1 v1"
|
|
117
138
|
>
|
|
118
139
|
<div
|
|
119
140
|
className="elementContent"
|
|
@@ -130,7 +151,7 @@ exports[`Storyshots a/ContentCard Content After 1`] = `
|
|
|
130
151
|
</div>
|
|
131
152
|
</div>
|
|
132
153
|
<div
|
|
133
|
-
className="base message x-
|
|
154
|
+
className="base message x-background1 ours v1"
|
|
134
155
|
>
|
|
135
156
|
<div
|
|
136
157
|
className="elementContent"
|
|
@@ -207,10 +228,10 @@ exports[`Storyshots a/ContentCard Layout Left 1`] = `
|
|
|
207
228
|
</p>
|
|
208
229
|
</div>
|
|
209
230
|
<div
|
|
210
|
-
className="base conversation illustration y-
|
|
231
|
+
className="base conversation illustration y-background2 u1"
|
|
211
232
|
>
|
|
212
233
|
<div
|
|
213
|
-
className="base message x-
|
|
234
|
+
className="base message x-background1 ours v1"
|
|
214
235
|
>
|
|
215
236
|
<div
|
|
216
237
|
className="elementContent"
|
|
@@ -227,7 +248,7 @@ exports[`Storyshots a/ContentCard Layout Left 1`] = `
|
|
|
227
248
|
</div>
|
|
228
249
|
</div>
|
|
229
250
|
<div
|
|
230
|
-
className="base message x-
|
|
251
|
+
className="base message x-background1 v1"
|
|
231
252
|
>
|
|
232
253
|
<div
|
|
233
254
|
className="elementContent"
|
|
@@ -244,7 +265,7 @@ exports[`Storyshots a/ContentCard Layout Left 1`] = `
|
|
|
244
265
|
</div>
|
|
245
266
|
</div>
|
|
246
267
|
<div
|
|
247
|
-
className="base message x-
|
|
268
|
+
className="base message x-background1 ours v1"
|
|
248
269
|
>
|
|
249
270
|
<div
|
|
250
271
|
className="elementContent"
|
|
@@ -296,10 +317,10 @@ exports[`Storyshots a/ContentCard Layout Right 1`] = `
|
|
|
296
317
|
</p>
|
|
297
318
|
</div>
|
|
298
319
|
<div
|
|
299
|
-
className="base conversation illustration y-
|
|
320
|
+
className="base conversation illustration y-background2 u1"
|
|
300
321
|
>
|
|
301
322
|
<div
|
|
302
|
-
className="base message x-
|
|
323
|
+
className="base message x-background1 ours v1"
|
|
303
324
|
>
|
|
304
325
|
<div
|
|
305
326
|
className="elementContent"
|
|
@@ -316,7 +337,7 @@ exports[`Storyshots a/ContentCard Layout Right 1`] = `
|
|
|
316
337
|
</div>
|
|
317
338
|
</div>
|
|
318
339
|
<div
|
|
319
|
-
className="base message x-
|
|
340
|
+
className="base message x-background1 v1"
|
|
320
341
|
>
|
|
321
342
|
<div
|
|
322
343
|
className="elementContent"
|
|
@@ -333,7 +354,7 @@ exports[`Storyshots a/ContentCard Layout Right 1`] = `
|
|
|
333
354
|
</div>
|
|
334
355
|
</div>
|
|
335
356
|
<div
|
|
336
|
-
className="base message x-
|
|
357
|
+
className="base message x-background1 ours v1"
|
|
337
358
|
>
|
|
338
359
|
<div
|
|
339
360
|
className="elementContent"
|
|
@@ -357,10 +378,10 @@ exports[`Storyshots a/ContentCard Layout Right 1`] = `
|
|
|
357
378
|
|
|
358
379
|
exports[`Storyshots a/Conversation Base 1`] = `
|
|
359
380
|
<div
|
|
360
|
-
className="base conversation y-
|
|
381
|
+
className="base conversation y-background2 u1"
|
|
361
382
|
>
|
|
362
383
|
<div
|
|
363
|
-
className="base message x-
|
|
384
|
+
className="base message x-background1 v1"
|
|
364
385
|
>
|
|
365
386
|
<div
|
|
366
387
|
className="elementContent"
|
|
@@ -377,7 +398,7 @@ exports[`Storyshots a/Conversation Base 1`] = `
|
|
|
377
398
|
</div>
|
|
378
399
|
</div>
|
|
379
400
|
<div
|
|
380
|
-
className="base message x-
|
|
401
|
+
className="base message x-background1 ours v1"
|
|
381
402
|
>
|
|
382
403
|
<div
|
|
383
404
|
className="elementContent"
|
|
@@ -389,12 +410,12 @@ exports[`Storyshots a/Conversation Base 1`] = `
|
|
|
389
410
|
:
|
|
390
411
|
</p>
|
|
391
412
|
<p>
|
|
392
|
-
Hi
|
|
413
|
+
Hi Morgan! Here is the database we prepared for you.
|
|
393
414
|
</p>
|
|
394
415
|
</div>
|
|
395
416
|
</div>
|
|
396
417
|
<div
|
|
397
|
-
className="base message x-
|
|
418
|
+
className="base message x-background1 v1"
|
|
398
419
|
>
|
|
399
420
|
<div
|
|
400
421
|
className="elementContent"
|
|
@@ -410,6 +431,201 @@ exports[`Storyshots a/Conversation Base 1`] = `
|
|
|
410
431
|
</p>
|
|
411
432
|
</div>
|
|
412
433
|
</div>
|
|
434
|
+
<div
|
|
435
|
+
className="base message x-background1 ours v1"
|
|
436
|
+
>
|
|
437
|
+
<div
|
|
438
|
+
className="elementContent"
|
|
439
|
+
>
|
|
440
|
+
<p
|
|
441
|
+
className="sender v25 mb-v s-1"
|
|
442
|
+
>
|
|
443
|
+
CAMILLE
|
|
444
|
+
:
|
|
445
|
+
</p>
|
|
446
|
+
<p>
|
|
447
|
+
Hi Morgan! Here is the database we prepared for you.
|
|
448
|
+
</p>
|
|
449
|
+
</div>
|
|
450
|
+
</div>
|
|
451
|
+
</div>
|
|
452
|
+
`;
|
|
453
|
+
|
|
454
|
+
exports[`Storyshots a/Conversation With Attachment 1`] = `
|
|
455
|
+
<div
|
|
456
|
+
className="base conversation y-background2 u1"
|
|
457
|
+
>
|
|
458
|
+
<div
|
|
459
|
+
className="base message x-background1 v1"
|
|
460
|
+
>
|
|
461
|
+
<div
|
|
462
|
+
className="elementContent"
|
|
463
|
+
>
|
|
464
|
+
<p
|
|
465
|
+
className="sender v25 mb-v s-1"
|
|
466
|
+
>
|
|
467
|
+
HUMBL
|
|
468
|
+
:
|
|
469
|
+
</p>
|
|
470
|
+
<p>
|
|
471
|
+
Hi Camille, please compile an assesment of top 5 firms/brand providers for the listed fields in the US.
|
|
472
|
+
</p>
|
|
473
|
+
</div>
|
|
474
|
+
</div>
|
|
475
|
+
<div
|
|
476
|
+
className="base message x-background1 ours v1"
|
|
477
|
+
>
|
|
478
|
+
<div
|
|
479
|
+
className="elementContent"
|
|
480
|
+
>
|
|
481
|
+
<p
|
|
482
|
+
className="sender v25 mb-v s-1"
|
|
483
|
+
>
|
|
484
|
+
CAMILLE
|
|
485
|
+
:
|
|
486
|
+
</p>
|
|
487
|
+
<p>
|
|
488
|
+
Hi Morgan! Here is the database we prepared for you.
|
|
489
|
+
</p>
|
|
490
|
+
<div
|
|
491
|
+
className="attachment y-main4"
|
|
492
|
+
>
|
|
493
|
+
<span
|
|
494
|
+
className="f-icons"
|
|
495
|
+
>
|
|
496
|
+
A
|
|
497
|
+
</span>
|
|
498
|
+
<p
|
|
499
|
+
className="ml-v"
|
|
500
|
+
>
|
|
501
|
+
spreadsheet.xlsx
|
|
502
|
+
</p>
|
|
503
|
+
</div>
|
|
504
|
+
</div>
|
|
505
|
+
</div>
|
|
506
|
+
<div
|
|
507
|
+
className="base message x-background1 v1"
|
|
508
|
+
>
|
|
509
|
+
<div
|
|
510
|
+
className="elementContent"
|
|
511
|
+
>
|
|
512
|
+
<p
|
|
513
|
+
className="sender v25 mb-v s-1"
|
|
514
|
+
>
|
|
515
|
+
HUMBL
|
|
516
|
+
:
|
|
517
|
+
</p>
|
|
518
|
+
<p>
|
|
519
|
+
Hi Camille, please compile an assesment of top 5 firms/brand providers for the listed fields in the US.
|
|
520
|
+
</p>
|
|
521
|
+
</div>
|
|
522
|
+
</div>
|
|
523
|
+
<div
|
|
524
|
+
className="base message x-background1 ours v1"
|
|
525
|
+
>
|
|
526
|
+
<div
|
|
527
|
+
className="elementContent"
|
|
528
|
+
>
|
|
529
|
+
<p
|
|
530
|
+
className="sender v25 mb-v s-1"
|
|
531
|
+
>
|
|
532
|
+
CAMILLE
|
|
533
|
+
:
|
|
534
|
+
</p>
|
|
535
|
+
<p>
|
|
536
|
+
Hi Morgan! Here is the database we prepared for you.
|
|
537
|
+
</p>
|
|
538
|
+
<div
|
|
539
|
+
className="attachment y-main4"
|
|
540
|
+
>
|
|
541
|
+
<span
|
|
542
|
+
className="f-icons"
|
|
543
|
+
>
|
|
544
|
+
A
|
|
545
|
+
</span>
|
|
546
|
+
<p
|
|
547
|
+
className="ml-v"
|
|
548
|
+
>
|
|
549
|
+
spreadsheet.xlsx
|
|
550
|
+
</p>
|
|
551
|
+
</div>
|
|
552
|
+
</div>
|
|
553
|
+
</div>
|
|
554
|
+
</div>
|
|
555
|
+
`;
|
|
556
|
+
|
|
557
|
+
exports[`Storyshots a/Conversation With Triangle 1`] = `
|
|
558
|
+
<div
|
|
559
|
+
className="base conversation y-background2 u1"
|
|
560
|
+
>
|
|
561
|
+
<div
|
|
562
|
+
className="base message x-background1 has-triangle v1"
|
|
563
|
+
>
|
|
564
|
+
<div
|
|
565
|
+
className="elementContent"
|
|
566
|
+
>
|
|
567
|
+
<p
|
|
568
|
+
className="sender v25 mb-v s-1"
|
|
569
|
+
>
|
|
570
|
+
HUMBL
|
|
571
|
+
:
|
|
572
|
+
</p>
|
|
573
|
+
<p>
|
|
574
|
+
Hi Camille, please compile an assesment of top 5 firms/brand providers for the listed fields in the US.
|
|
575
|
+
</p>
|
|
576
|
+
</div>
|
|
577
|
+
</div>
|
|
578
|
+
<div
|
|
579
|
+
className="base message x-background1 ours has-triangle v1"
|
|
580
|
+
>
|
|
581
|
+
<div
|
|
582
|
+
className="elementContent"
|
|
583
|
+
>
|
|
584
|
+
<p
|
|
585
|
+
className="sender v25 mb-v s-1"
|
|
586
|
+
>
|
|
587
|
+
CAMILLE
|
|
588
|
+
:
|
|
589
|
+
</p>
|
|
590
|
+
<p>
|
|
591
|
+
Hi Morgan! Here is the database we prepared for you.
|
|
592
|
+
</p>
|
|
593
|
+
</div>
|
|
594
|
+
</div>
|
|
595
|
+
<div
|
|
596
|
+
className="base message x-background1 has-triangle v1"
|
|
597
|
+
>
|
|
598
|
+
<div
|
|
599
|
+
className="elementContent"
|
|
600
|
+
>
|
|
601
|
+
<p
|
|
602
|
+
className="sender v25 mb-v s-1"
|
|
603
|
+
>
|
|
604
|
+
HUMBL
|
|
605
|
+
:
|
|
606
|
+
</p>
|
|
607
|
+
<p>
|
|
608
|
+
Hi Camille, please compile an assesment of top 5 firms/brand providers for the listed fields in the US.
|
|
609
|
+
</p>
|
|
610
|
+
</div>
|
|
611
|
+
</div>
|
|
612
|
+
<div
|
|
613
|
+
className="base message x-background1 ours has-triangle v1"
|
|
614
|
+
>
|
|
615
|
+
<div
|
|
616
|
+
className="elementContent"
|
|
617
|
+
>
|
|
618
|
+
<p
|
|
619
|
+
className="sender v25 mb-v s-1"
|
|
620
|
+
>
|
|
621
|
+
CAMILLE
|
|
622
|
+
:
|
|
623
|
+
</p>
|
|
624
|
+
<p>
|
|
625
|
+
Hi Morgan! Here is the database we prepared for you.
|
|
626
|
+
</p>
|
|
627
|
+
</div>
|
|
628
|
+
</div>
|
|
413
629
|
</div>
|
|
414
630
|
`;
|
|
415
631
|
|
|
@@ -1442,6 +1658,71 @@ exports[`Storyshots a/Shapes Half Ellipses 1`] = `
|
|
|
1442
1658
|
</div>
|
|
1443
1659
|
`;
|
|
1444
1660
|
|
|
1661
|
+
exports[`Storyshots a/Shapes Intersecting Circles 1`] = `
|
|
1662
|
+
<div
|
|
1663
|
+
className="y-background5 b-light-y"
|
|
1664
|
+
style={
|
|
1665
|
+
Object {
|
|
1666
|
+
"height": "1000px",
|
|
1667
|
+
"overflow": "hidden",
|
|
1668
|
+
"position": "relative",
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
>
|
|
1672
|
+
<div
|
|
1673
|
+
className="base shapes"
|
|
1674
|
+
style={
|
|
1675
|
+
Object {
|
|
1676
|
+
"--horizontal-align": "center",
|
|
1677
|
+
"--overflow": "hidden",
|
|
1678
|
+
"--shape-height": "30em",
|
|
1679
|
+
"--vertical-align": "center",
|
|
1680
|
+
}
|
|
1681
|
+
}
|
|
1682
|
+
>
|
|
1683
|
+
<div
|
|
1684
|
+
className="intersecting-circles"
|
|
1685
|
+
>
|
|
1686
|
+
<div
|
|
1687
|
+
className="left"
|
|
1688
|
+
/>
|
|
1689
|
+
<div
|
|
1690
|
+
className="right"
|
|
1691
|
+
/>
|
|
1692
|
+
</div>
|
|
1693
|
+
</div>
|
|
1694
|
+
</div>
|
|
1695
|
+
`;
|
|
1696
|
+
|
|
1697
|
+
exports[`Storyshots a/Shapes Inverted Triangle 1`] = `
|
|
1698
|
+
<div
|
|
1699
|
+
className="y-background6 b-light-y"
|
|
1700
|
+
style={
|
|
1701
|
+
Object {
|
|
1702
|
+
"height": "1000px",
|
|
1703
|
+
"overflow": "hidden",
|
|
1704
|
+
"position": "relative",
|
|
1705
|
+
}
|
|
1706
|
+
}
|
|
1707
|
+
>
|
|
1708
|
+
<div
|
|
1709
|
+
className="base shapes"
|
|
1710
|
+
style={
|
|
1711
|
+
Object {
|
|
1712
|
+
"--horizontal-align": "center",
|
|
1713
|
+
"--overflow": "hidden",
|
|
1714
|
+
"--shape-height": "30em",
|
|
1715
|
+
"--vertical-align": "flex-end",
|
|
1716
|
+
}
|
|
1717
|
+
}
|
|
1718
|
+
>
|
|
1719
|
+
<div
|
|
1720
|
+
className="inverted-triangle"
|
|
1721
|
+
/>
|
|
1722
|
+
</div>
|
|
1723
|
+
</div>
|
|
1724
|
+
`;
|
|
1725
|
+
|
|
1445
1726
|
exports[`Storyshots a/Shapes Rectangles 1`] = `
|
|
1446
1727
|
<div
|
|
1447
1728
|
className="y-background5 b-light-y"
|
|
@@ -7570,11 +7851,11 @@ exports[`Storyshots b/Page Item Type 1`] = `
|
|
|
7570
7851
|
exports[`Storyshots b/Page Sections With Background 1`] = `
|
|
7571
7852
|
<main
|
|
7572
7853
|
className="base page"
|
|
7573
|
-
id="with-
|
|
7854
|
+
id="with-background"
|
|
7574
7855
|
>
|
|
7575
7856
|
<section
|
|
7576
7857
|
className="base section y-success b-light-y"
|
|
7577
|
-
id="with-
|
|
7858
|
+
id="with-background_s1"
|
|
7578
7859
|
style={
|
|
7579
7860
|
Object {
|
|
7580
7861
|
"alignItems": "center",
|
|
@@ -7623,6 +7904,55 @@ exports[`Storyshots b/Page Sections With Background 1`] = `
|
|
|
7623
7904
|
</main>
|
|
7624
7905
|
`;
|
|
7625
7906
|
|
|
7907
|
+
exports[`Storyshots b/Page Sections With Background Gradient 1`] = `
|
|
7908
|
+
<main
|
|
7909
|
+
className="base page"
|
|
7910
|
+
id="with-background-gradient"
|
|
7911
|
+
>
|
|
7912
|
+
<section
|
|
7913
|
+
className="base section y-success"
|
|
7914
|
+
id="with-background-gradient_s1"
|
|
7915
|
+
style={
|
|
7916
|
+
Object {
|
|
7917
|
+
"alignItems": "center",
|
|
7918
|
+
"display": "flex",
|
|
7919
|
+
"height": "30em",
|
|
7920
|
+
"justifyContent": "center",
|
|
7921
|
+
}
|
|
7922
|
+
}
|
|
7923
|
+
>
|
|
7924
|
+
<figure
|
|
7925
|
+
className="base quote x-paragraph"
|
|
7926
|
+
>
|
|
7927
|
+
<blockquote
|
|
7928
|
+
className="blockquote uc"
|
|
7929
|
+
>
|
|
7930
|
+
<p
|
|
7931
|
+
className="quotation c-x md-s0 s-1"
|
|
7932
|
+
>
|
|
7933
|
+
Pareto was like having a full-time employee without having to hire somebody. That’s how I would explain it. An on-call, on-demand full-time employee.
|
|
7934
|
+
</p>
|
|
7935
|
+
</blockquote>
|
|
7936
|
+
<figcaption
|
|
7937
|
+
className="figcaption"
|
|
7938
|
+
>
|
|
7939
|
+
<cite>
|
|
7940
|
+
Austen Spoonts
|
|
7941
|
+
</cite>
|
|
7942
|
+
</figcaption>
|
|
7943
|
+
</figure>
|
|
7944
|
+
<div
|
|
7945
|
+
className="base background-gradient"
|
|
7946
|
+
style={
|
|
7947
|
+
Object {
|
|
7948
|
+
"--gradient-height": "50em",
|
|
7949
|
+
}
|
|
7950
|
+
}
|
|
7951
|
+
/>
|
|
7952
|
+
</section>
|
|
7953
|
+
</main>
|
|
7954
|
+
`;
|
|
7955
|
+
|
|
7626
7956
|
exports[`Storyshots b/Page With Sections 1`] = `
|
|
7627
7957
|
<main
|
|
7628
7958
|
className="base page"
|
|
@@ -8302,7 +8632,7 @@ exports[`Storyshots c/ContentSlides Base 1`] = `
|
|
|
8302
8632
|
>
|
|
8303
8633
|
<span />
|
|
8304
8634
|
<button
|
|
8305
|
-
className="base button x-
|
|
8635
|
+
className="base button x-main2 next x-main1 modifierCompact"
|
|
8306
8636
|
disabled={false}
|
|
8307
8637
|
onClick={[Function]}
|
|
8308
8638
|
type="button"
|
|
@@ -8359,7 +8689,7 @@ exports[`Storyshots c/ContentSlides Base 1`] = `
|
|
|
8359
8689
|
>
|
|
8360
8690
|
<span />
|
|
8361
8691
|
<button
|
|
8362
|
-
className="base button x-
|
|
8692
|
+
className="base button x-main2 next x-main1 modifierCompact"
|
|
8363
8693
|
disabled={false}
|
|
8364
8694
|
onClick={[Function]}
|
|
8365
8695
|
type="button"
|
|
@@ -8398,7 +8728,7 @@ exports[`Storyshots c/ContentSlides Base 1`] = `
|
|
|
8398
8728
|
>
|
|
8399
8729
|
<span />
|
|
8400
8730
|
<button
|
|
8401
|
-
className="base button x-
|
|
8731
|
+
className="base button x-main2 next x-main1 modifierCompact"
|
|
8402
8732
|
disabled={false}
|
|
8403
8733
|
onClick={[Function]}
|
|
8404
8734
|
type="button"
|
|
@@ -8437,7 +8767,7 @@ exports[`Storyshots c/ContentSlides Base 1`] = `
|
|
|
8437
8767
|
>
|
|
8438
8768
|
<span />
|
|
8439
8769
|
<button
|
|
8440
|
-
className="base button x-
|
|
8770
|
+
className="base button x-main2 next x-main1 modifierCompact"
|
|
8441
8771
|
disabled={false}
|
|
8442
8772
|
onClick={[Function]}
|
|
8443
8773
|
type="button"
|
|
@@ -8556,7 +8886,7 @@ exports[`Storyshots c/ContentSlides Simple 1`] = `
|
|
|
8556
8886
|
>
|
|
8557
8887
|
<span />
|
|
8558
8888
|
<button
|
|
8559
|
-
className="base button x-
|
|
8889
|
+
className="base button x-main2 next x-main1 modifierCompact"
|
|
8560
8890
|
disabled={false}
|
|
8561
8891
|
onClick={[Function]}
|
|
8562
8892
|
type="button"
|
|
@@ -8611,7 +8941,7 @@ exports[`Storyshots c/ContentSlides Simple 1`] = `
|
|
|
8611
8941
|
>
|
|
8612
8942
|
<span />
|
|
8613
8943
|
<button
|
|
8614
|
-
className="base button x-
|
|
8944
|
+
className="base button x-main2 next x-main1 modifierCompact"
|
|
8615
8945
|
disabled={false}
|
|
8616
8946
|
onClick={[Function]}
|
|
8617
8947
|
type="button"
|
|
@@ -8650,7 +8980,7 @@ exports[`Storyshots c/ContentSlides Simple 1`] = `
|
|
|
8650
8980
|
>
|
|
8651
8981
|
<span />
|
|
8652
8982
|
<button
|
|
8653
|
-
className="base button x-
|
|
8983
|
+
className="base button x-main2 next x-main1 modifierCompact"
|
|
8654
8984
|
disabled={false}
|
|
8655
8985
|
onClick={[Function]}
|
|
8656
8986
|
type="button"
|
|
@@ -8689,7 +9019,7 @@ exports[`Storyshots c/ContentSlides Simple 1`] = `
|
|
|
8689
9019
|
>
|
|
8690
9020
|
<span />
|
|
8691
9021
|
<button
|
|
8692
|
-
className="base button x-
|
|
9022
|
+
className="base button x-main2 next x-main1 modifierCompact"
|
|
8693
9023
|
disabled={false}
|
|
8694
9024
|
onClick={[Function]}
|
|
8695
9025
|
type="button"
|
|
@@ -8800,7 +9130,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
|
|
|
8800
9130
|
className="base text-input form-input"
|
|
8801
9131
|
>
|
|
8802
9132
|
<label
|
|
8803
|
-
className="base label input-label v50 mb-v x-
|
|
9133
|
+
className="base label input-label v50 mb-v x-main2"
|
|
8804
9134
|
htmlFor="firstName"
|
|
8805
9135
|
>
|
|
8806
9136
|
What's your first name ?
|
|
@@ -8820,7 +9150,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
|
|
|
8820
9150
|
className="base text-input form-input"
|
|
8821
9151
|
>
|
|
8822
9152
|
<label
|
|
8823
|
-
className="base label input-label v50 mb-v x-
|
|
9153
|
+
className="base label input-label v50 mb-v x-main2"
|
|
8824
9154
|
htmlFor="lastName"
|
|
8825
9155
|
>
|
|
8826
9156
|
What's your last name ?
|
|
@@ -8836,10 +9166,10 @@ exports[`Storyshots f/FormInput Base 1`] = `
|
|
|
8836
9166
|
/>
|
|
8837
9167
|
</div>
|
|
8838
9168
|
<div
|
|
8839
|
-
className="base text-area-input form-input x-background1 y-
|
|
9169
|
+
className="base text-area-input form-input x-background1 y-main2"
|
|
8840
9170
|
>
|
|
8841
9171
|
<label
|
|
8842
|
-
className="base label c-y v50 mb-v x-
|
|
9172
|
+
className="base label c-y v50 mb-v x-main2"
|
|
8843
9173
|
htmlFor="description"
|
|
8844
9174
|
>
|
|
8845
9175
|
Describe yourself in a few sentences
|
|
@@ -8855,7 +9185,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
|
|
|
8855
9185
|
|
|
8856
9186
|
</div>
|
|
8857
9187
|
<div
|
|
8858
|
-
className="base choices-input form-input x-background2 y-
|
|
9188
|
+
className="base choices-input form-input x-background2 y-main2"
|
|
8859
9189
|
style={
|
|
8860
9190
|
Object {
|
|
8861
9191
|
"--grid-columns-desktop": 3,
|
|
@@ -8864,7 +9194,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
|
|
|
8864
9194
|
}
|
|
8865
9195
|
>
|
|
8866
9196
|
<p
|
|
8867
|
-
className="base label x-
|
|
9197
|
+
className="base label x-main2"
|
|
8868
9198
|
>
|
|
8869
9199
|
What are your favourite colors ?
|
|
8870
9200
|
</p>
|
|
@@ -8931,7 +9261,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
|
|
|
8931
9261
|
className="base select-input form-input"
|
|
8932
9262
|
>
|
|
8933
9263
|
<label
|
|
8934
|
-
className="base label input-label x-
|
|
9264
|
+
className="base label input-label x-main2"
|
|
8935
9265
|
htmlFor="food"
|
|
8936
9266
|
>
|
|
8937
9267
|
What do you want for dinner ?
|
|
@@ -8965,7 +9295,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
|
|
|
8965
9295
|
className="debugger"
|
|
8966
9296
|
>
|
|
8967
9297
|
<button
|
|
8968
|
-
className="base button x-
|
|
9298
|
+
className="base button x-main2"
|
|
8969
9299
|
onClick={[Function]}
|
|
8970
9300
|
type="button"
|
|
8971
9301
|
>
|
|
@@ -8985,7 +9315,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
|
|
|
8985
9315
|
className="base text-input form-input"
|
|
8986
9316
|
>
|
|
8987
9317
|
<label
|
|
8988
|
-
className="base label input-label v50 mb-v x-
|
|
9318
|
+
className="base label input-label v50 mb-v x-main2"
|
|
8989
9319
|
htmlFor="firstName"
|
|
8990
9320
|
>
|
|
8991
9321
|
What's your first name ?
|
|
@@ -9005,7 +9335,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
|
|
|
9005
9335
|
className="base text-input form-input"
|
|
9006
9336
|
>
|
|
9007
9337
|
<label
|
|
9008
|
-
className="base label input-label v50 mb-v x-
|
|
9338
|
+
className="base label input-label v50 mb-v x-main2"
|
|
9009
9339
|
htmlFor="lastName"
|
|
9010
9340
|
>
|
|
9011
9341
|
What's your last name ?
|
|
@@ -9021,10 +9351,10 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
|
|
|
9021
9351
|
/>
|
|
9022
9352
|
</div>
|
|
9023
9353
|
<div
|
|
9024
|
-
className="base text-area-input form-input x-background1 y-
|
|
9354
|
+
className="base text-area-input form-input x-background1 y-main2"
|
|
9025
9355
|
>
|
|
9026
9356
|
<label
|
|
9027
|
-
className="base label c-y v50 mb-v x-
|
|
9357
|
+
className="base label c-y v50 mb-v x-main2"
|
|
9028
9358
|
htmlFor="description"
|
|
9029
9359
|
>
|
|
9030
9360
|
Describe yourself in a few sentences
|
|
@@ -9040,7 +9370,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
|
|
|
9040
9370
|
|
|
9041
9371
|
</div>
|
|
9042
9372
|
<div
|
|
9043
|
-
className="base choices-input form-input x-background2 y-
|
|
9373
|
+
className="base choices-input form-input x-background2 y-main2"
|
|
9044
9374
|
style={
|
|
9045
9375
|
Object {
|
|
9046
9376
|
"--grid-columns-desktop": 3,
|
|
@@ -9049,7 +9379,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
|
|
|
9049
9379
|
}
|
|
9050
9380
|
>
|
|
9051
9381
|
<p
|
|
9052
|
-
className="base label x-
|
|
9382
|
+
className="base label x-main2"
|
|
9053
9383
|
>
|
|
9054
9384
|
What are your favourite colors ?
|
|
9055
9385
|
</p>
|
|
@@ -9116,7 +9446,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
|
|
|
9116
9446
|
className="base select-input form-input"
|
|
9117
9447
|
>
|
|
9118
9448
|
<label
|
|
9119
|
-
className="base label input-label x-
|
|
9449
|
+
className="base label input-label x-main2"
|
|
9120
9450
|
htmlFor="food"
|
|
9121
9451
|
>
|
|
9122
9452
|
What do you want for dinner ?
|
|
@@ -9150,7 +9480,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
|
|
|
9150
9480
|
className="debugger"
|
|
9151
9481
|
>
|
|
9152
9482
|
<button
|
|
9153
|
-
className="base button x-
|
|
9483
|
+
className="base button x-main2"
|
|
9154
9484
|
onClick={[Function]}
|
|
9155
9485
|
type="button"
|
|
9156
9486
|
>
|
|
@@ -9170,7 +9500,7 @@ exports[`Storyshots f/FormInput Extensible Form Input 1`] = `
|
|
|
9170
9500
|
className="base text-input form-input"
|
|
9171
9501
|
>
|
|
9172
9502
|
<label
|
|
9173
|
-
className="base label input-label v50 mb-v x-
|
|
9503
|
+
className="base label input-label v50 mb-v x-main2"
|
|
9174
9504
|
htmlFor="extended"
|
|
9175
9505
|
>
|
|
9176
9506
|
Extended type input
|
|
@@ -9189,7 +9519,7 @@ exports[`Storyshots f/FormInput Extensible Form Input 1`] = `
|
|
|
9189
9519
|
className="debugger"
|
|
9190
9520
|
>
|
|
9191
9521
|
<button
|
|
9192
|
-
className="base button x-
|
|
9522
|
+
className="base button x-main2"
|
|
9193
9523
|
onClick={[Function]}
|
|
9194
9524
|
type="button"
|
|
9195
9525
|
>
|
|
@@ -9209,7 +9539,7 @@ exports[`Storyshots f/common/Description Base 1`] = `
|
|
|
9209
9539
|
|
|
9210
9540
|
exports[`Storyshots f/common/Label Base 1`] = `
|
|
9211
9541
|
<label
|
|
9212
|
-
className="base label x-
|
|
9542
|
+
className="base label x-main2"
|
|
9213
9543
|
>
|
|
9214
9544
|
Sample Label
|
|
9215
9545
|
</label>
|
|
@@ -9231,7 +9561,7 @@ exports[`Storyshots f/fields/CheckboxInput Base 1`] = `
|
|
|
9231
9561
|
className="not-selected input-content uc v1 pv-v"
|
|
9232
9562
|
>
|
|
9233
9563
|
<label
|
|
9234
|
-
className="base label x-
|
|
9564
|
+
className="base label x-main2"
|
|
9235
9565
|
htmlFor="businessTypes"
|
|
9236
9566
|
>
|
|
9237
9567
|
<input
|
|
@@ -9256,7 +9586,7 @@ exports[`Storyshots f/fields/CheckboxInput Base 1`] = `
|
|
|
9256
9586
|
className="not-selected input-content uc v1 pv-v"
|
|
9257
9587
|
>
|
|
9258
9588
|
<label
|
|
9259
|
-
className="base label x-
|
|
9589
|
+
className="base label x-main2"
|
|
9260
9590
|
htmlFor="businessTypes"
|
|
9261
9591
|
>
|
|
9262
9592
|
<input
|
|
@@ -9281,7 +9611,7 @@ exports[`Storyshots f/fields/CheckboxInput Base 1`] = `
|
|
|
9281
9611
|
className="not-selected input-content uc v1 pv-v"
|
|
9282
9612
|
>
|
|
9283
9613
|
<label
|
|
9284
|
-
className="base label x-
|
|
9614
|
+
className="base label x-main2"
|
|
9285
9615
|
htmlFor="businessTypes"
|
|
9286
9616
|
>
|
|
9287
9617
|
<input
|
|
@@ -9306,7 +9636,7 @@ exports[`Storyshots f/fields/CheckboxInput Base 1`] = `
|
|
|
9306
9636
|
className="not-selected input-content uc v1 pv-v"
|
|
9307
9637
|
>
|
|
9308
9638
|
<label
|
|
9309
|
-
className="base label x-
|
|
9639
|
+
className="base label x-main2"
|
|
9310
9640
|
htmlFor="businessTypes"
|
|
9311
9641
|
>
|
|
9312
9642
|
<input
|
|
@@ -9328,7 +9658,7 @@ exports[`Storyshots f/fields/CheckboxInput Base 1`] = `
|
|
|
9328
9658
|
className="debugger"
|
|
9329
9659
|
>
|
|
9330
9660
|
<button
|
|
9331
|
-
className="base button x-
|
|
9661
|
+
className="base button x-main2"
|
|
9332
9662
|
onClick={[Function]}
|
|
9333
9663
|
type="button"
|
|
9334
9664
|
>
|
|
@@ -9346,7 +9676,7 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
|
|
|
9346
9676
|
onSubmit={[Function]}
|
|
9347
9677
|
>
|
|
9348
9678
|
<div
|
|
9349
|
-
className="base choices-input x-background2 y-
|
|
9679
|
+
className="base choices-input x-background2 y-main2"
|
|
9350
9680
|
id="colors"
|
|
9351
9681
|
style={
|
|
9352
9682
|
Object {
|
|
@@ -9418,7 +9748,7 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
|
|
|
9418
9748
|
className="debugger"
|
|
9419
9749
|
>
|
|
9420
9750
|
<button
|
|
9421
|
-
className="base button x-
|
|
9751
|
+
className="base button x-main2"
|
|
9422
9752
|
onClick={[Function]}
|
|
9423
9753
|
type="button"
|
|
9424
9754
|
>
|
|
@@ -9435,7 +9765,7 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
|
|
|
9435
9765
|
onSubmit={[Function]}
|
|
9436
9766
|
>
|
|
9437
9767
|
<div
|
|
9438
|
-
className="base choices-input x-background2 y-
|
|
9768
|
+
className="base choices-input x-background2 y-main2"
|
|
9439
9769
|
id="shapes"
|
|
9440
9770
|
style={
|
|
9441
9771
|
Object {
|
|
@@ -9445,7 +9775,7 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
|
|
|
9445
9775
|
}
|
|
9446
9776
|
>
|
|
9447
9777
|
<p
|
|
9448
|
-
className="base label x-
|
|
9778
|
+
className="base label x-main2"
|
|
9449
9779
|
>
|
|
9450
9780
|
Geometric Shapes
|
|
9451
9781
|
</p>
|
|
@@ -9512,7 +9842,7 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
|
|
|
9512
9842
|
className="debugger"
|
|
9513
9843
|
>
|
|
9514
9844
|
<button
|
|
9515
|
-
className="base button x-
|
|
9845
|
+
className="base button x-main2"
|
|
9516
9846
|
onClick={[Function]}
|
|
9517
9847
|
type="button"
|
|
9518
9848
|
>
|
|
@@ -9529,7 +9859,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
|
|
|
9529
9859
|
onSubmit={[Function]}
|
|
9530
9860
|
>
|
|
9531
9861
|
<div
|
|
9532
|
-
className="base choices-input x-background2 y-
|
|
9862
|
+
className="base choices-input x-background2 y-main2"
|
|
9533
9863
|
id="shapes"
|
|
9534
9864
|
style={
|
|
9535
9865
|
Object {
|
|
@@ -9539,7 +9869,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
|
|
|
9539
9869
|
}
|
|
9540
9870
|
>
|
|
9541
9871
|
<p
|
|
9542
|
-
className="base label x-
|
|
9872
|
+
className="base label x-main2"
|
|
9543
9873
|
>
|
|
9544
9874
|
Geometric Shapes
|
|
9545
9875
|
</p>
|
|
@@ -9606,7 +9936,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
|
|
|
9606
9936
|
className="debugger"
|
|
9607
9937
|
>
|
|
9608
9938
|
<button
|
|
9609
|
-
className="base button x-
|
|
9939
|
+
className="base button x-main2"
|
|
9610
9940
|
onClick={[Function]}
|
|
9611
9941
|
type="button"
|
|
9612
9942
|
>
|
|
@@ -9623,7 +9953,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
|
|
|
9623
9953
|
onSubmit={[Function]}
|
|
9624
9954
|
>
|
|
9625
9955
|
<div
|
|
9626
|
-
className="base choices-input multiple x-background2 y-
|
|
9956
|
+
className="base choices-input multiple x-background2 y-main2"
|
|
9627
9957
|
id="colors"
|
|
9628
9958
|
style={
|
|
9629
9959
|
Object {
|
|
@@ -9695,7 +10025,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
|
|
|
9695
10025
|
className="debugger"
|
|
9696
10026
|
>
|
|
9697
10027
|
<button
|
|
9698
|
-
className="base button x-
|
|
10028
|
+
className="base button x-main2"
|
|
9699
10029
|
onClick={[Function]}
|
|
9700
10030
|
type="button"
|
|
9701
10031
|
>
|
|
@@ -9712,7 +10042,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
|
|
|
9712
10042
|
onSubmit={[Function]}
|
|
9713
10043
|
>
|
|
9714
10044
|
<div
|
|
9715
|
-
className="base choices-input multiple x-background2 y-
|
|
10045
|
+
className="base choices-input multiple x-background2 y-main2"
|
|
9716
10046
|
id="colors"
|
|
9717
10047
|
style={
|
|
9718
10048
|
Object {
|
|
@@ -9874,7 +10204,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
|
|
|
9874
10204
|
className="debugger"
|
|
9875
10205
|
>
|
|
9876
10206
|
<button
|
|
9877
|
-
className="base button x-
|
|
10207
|
+
className="base button x-main2"
|
|
9878
10208
|
onClick={[Function]}
|
|
9879
10209
|
type="button"
|
|
9880
10210
|
>
|
|
@@ -9897,7 +10227,7 @@ exports[`Storyshots f/fields/RadioInput Base 1`] = `
|
|
|
9897
10227
|
className="not-selected uc v1 pv-v"
|
|
9898
10228
|
>
|
|
9899
10229
|
<label
|
|
9900
|
-
className="base label x-
|
|
10230
|
+
className="base label x-main2"
|
|
9901
10231
|
htmlFor="companySize"
|
|
9902
10232
|
>
|
|
9903
10233
|
<input
|
|
@@ -9924,7 +10254,7 @@ exports[`Storyshots f/fields/RadioInput Base 1`] = `
|
|
|
9924
10254
|
className="not-selected uc v1 pv-v"
|
|
9925
10255
|
>
|
|
9926
10256
|
<label
|
|
9927
|
-
className="base label x-
|
|
10257
|
+
className="base label x-main2"
|
|
9928
10258
|
htmlFor="companySize"
|
|
9929
10259
|
>
|
|
9930
10260
|
<input
|
|
@@ -9951,7 +10281,7 @@ exports[`Storyshots f/fields/RadioInput Base 1`] = `
|
|
|
9951
10281
|
className="not-selected uc v1 pv-v"
|
|
9952
10282
|
>
|
|
9953
10283
|
<label
|
|
9954
|
-
className="base label x-
|
|
10284
|
+
className="base label x-main2"
|
|
9955
10285
|
htmlFor="companySize"
|
|
9956
10286
|
>
|
|
9957
10287
|
<input
|
|
@@ -9978,7 +10308,7 @@ exports[`Storyshots f/fields/RadioInput Base 1`] = `
|
|
|
9978
10308
|
className="not-selected uc v1 pv-v"
|
|
9979
10309
|
>
|
|
9980
10310
|
<label
|
|
9981
|
-
className="base label x-
|
|
10311
|
+
className="base label x-main2"
|
|
9982
10312
|
htmlFor="companySize"
|
|
9983
10313
|
>
|
|
9984
10314
|
<input
|
|
@@ -10002,7 +10332,7 @@ exports[`Storyshots f/fields/RadioInput Base 1`] = `
|
|
|
10002
10332
|
className="debugger"
|
|
10003
10333
|
>
|
|
10004
10334
|
<button
|
|
10005
|
-
className="base button x-
|
|
10335
|
+
className="base button x-main2"
|
|
10006
10336
|
onClick={[Function]}
|
|
10007
10337
|
type="button"
|
|
10008
10338
|
>
|
|
@@ -10141,7 +10471,7 @@ exports[`Storyshots f/fields/RatingsInput Base 1`] = `
|
|
|
10141
10471
|
className="debugger"
|
|
10142
10472
|
>
|
|
10143
10473
|
<button
|
|
10144
|
-
className="base button x-
|
|
10474
|
+
className="base button x-main2"
|
|
10145
10475
|
onClick={[Function]}
|
|
10146
10476
|
type="button"
|
|
10147
10477
|
>
|
|
@@ -10455,7 +10785,7 @@ exports[`Storyshots f/fields/RatingsInput Labels 1`] = `
|
|
|
10455
10785
|
className="debugger"
|
|
10456
10786
|
>
|
|
10457
10787
|
<button
|
|
10458
|
-
className="base button x-
|
|
10788
|
+
className="base button x-main2"
|
|
10459
10789
|
onClick={[Function]}
|
|
10460
10790
|
type="button"
|
|
10461
10791
|
>
|
|
@@ -10759,7 +11089,7 @@ exports[`Storyshots f/fields/RatingsInput Numbers 1`] = `
|
|
|
10759
11089
|
className="debugger"
|
|
10760
11090
|
>
|
|
10761
11091
|
<button
|
|
10762
|
-
className="base button x-
|
|
11092
|
+
className="base button x-main2"
|
|
10763
11093
|
onClick={[Function]}
|
|
10764
11094
|
type="button"
|
|
10765
11095
|
>
|
|
@@ -10779,7 +11109,7 @@ exports[`Storyshots f/fields/SelectInput Base 1`] = `
|
|
|
10779
11109
|
className="base select-input"
|
|
10780
11110
|
>
|
|
10781
11111
|
<label
|
|
10782
|
-
className="base label input-label x-
|
|
11112
|
+
className="base label input-label x-main2"
|
|
10783
11113
|
htmlFor="workType"
|
|
10784
11114
|
>
|
|
10785
11115
|
Work Type
|
|
@@ -10814,7 +11144,7 @@ exports[`Storyshots f/fields/SelectInput Base 1`] = `
|
|
|
10814
11144
|
className="debugger"
|
|
10815
11145
|
>
|
|
10816
11146
|
<button
|
|
10817
|
-
className="base button x-
|
|
11147
|
+
className="base button x-main2"
|
|
10818
11148
|
onClick={[Function]}
|
|
10819
11149
|
type="button"
|
|
10820
11150
|
>
|
|
@@ -10834,7 +11164,7 @@ exports[`Storyshots f/fields/SelectInput Disabled Select Input 1`] = `
|
|
|
10834
11164
|
className="base select-input"
|
|
10835
11165
|
>
|
|
10836
11166
|
<label
|
|
10837
|
-
className="base label input-label x-
|
|
11167
|
+
className="base label input-label x-main2"
|
|
10838
11168
|
htmlFor="workType"
|
|
10839
11169
|
>
|
|
10840
11170
|
Work Type
|
|
@@ -10879,7 +11209,7 @@ exports[`Storyshots f/fields/SelectInput Disabled Select Input 1`] = `
|
|
|
10879
11209
|
className="debugger"
|
|
10880
11210
|
>
|
|
10881
11211
|
<button
|
|
10882
|
-
className="base button x-
|
|
11212
|
+
className="base button x-main2"
|
|
10883
11213
|
onClick={[Function]}
|
|
10884
11214
|
type="button"
|
|
10885
11215
|
>
|
|
@@ -10899,7 +11229,7 @@ exports[`Storyshots f/fields/SelectInput Objects 1`] = `
|
|
|
10899
11229
|
className="base select-input"
|
|
10900
11230
|
>
|
|
10901
11231
|
<label
|
|
10902
|
-
className="base label input-label x-
|
|
11232
|
+
className="base label input-label x-main2"
|
|
10903
11233
|
htmlFor="workType"
|
|
10904
11234
|
>
|
|
10905
11235
|
Work Type
|
|
@@ -10929,7 +11259,7 @@ exports[`Storyshots f/fields/SelectInput Objects 1`] = `
|
|
|
10929
11259
|
className="debugger"
|
|
10930
11260
|
>
|
|
10931
11261
|
<button
|
|
10932
|
-
className="base button x-
|
|
11262
|
+
className="base button x-main2"
|
|
10933
11263
|
onClick={[Function]}
|
|
10934
11264
|
type="button"
|
|
10935
11265
|
>
|
|
@@ -10949,7 +11279,7 @@ exports[`Storyshots f/fields/SelectInput String And Objects 1`] = `
|
|
|
10949
11279
|
className="base select-input"
|
|
10950
11280
|
>
|
|
10951
11281
|
<label
|
|
10952
|
-
className="base label input-label x-
|
|
11282
|
+
className="base label input-label x-main2"
|
|
10953
11283
|
htmlFor="workType"
|
|
10954
11284
|
>
|
|
10955
11285
|
Work Type
|
|
@@ -10994,7 +11324,7 @@ exports[`Storyshots f/fields/SelectInput String And Objects 1`] = `
|
|
|
10994
11324
|
className="debugger"
|
|
10995
11325
|
>
|
|
10996
11326
|
<button
|
|
10997
|
-
className="base button x-
|
|
11327
|
+
className="base button x-main2"
|
|
10998
11328
|
onClick={[Function]}
|
|
10999
11329
|
type="button"
|
|
11000
11330
|
>
|
|
@@ -11019,7 +11349,7 @@ exports[`Storyshots f/fields/TaskRecommendationInput Base 1`] = `
|
|
|
11019
11349
|
}
|
|
11020
11350
|
>
|
|
11021
11351
|
<div
|
|
11022
|
-
className="base task-recommendation-input x-
|
|
11352
|
+
className="base task-recommendation-input x-main2"
|
|
11023
11353
|
>
|
|
11024
11354
|
<div
|
|
11025
11355
|
className="task-content b-on-x"
|
|
@@ -11028,7 +11358,7 @@ exports[`Storyshots f/fields/TaskRecommendationInput Base 1`] = `
|
|
|
11028
11358
|
className="v1 p-v task"
|
|
11029
11359
|
>
|
|
11030
11360
|
<label
|
|
11031
|
-
className="base label uc mb-v x-
|
|
11361
|
+
className="base label uc mb-v x-main2"
|
|
11032
11362
|
htmlFor="taskRecommendations"
|
|
11033
11363
|
>
|
|
11034
11364
|
Find potential business customers
|
|
@@ -11072,7 +11402,7 @@ exports[`Storyshots f/fields/TextInput Base 1`] = `
|
|
|
11072
11402
|
className="base text-input"
|
|
11073
11403
|
>
|
|
11074
11404
|
<label
|
|
11075
|
-
className="base label input-label v50 mb-v x-
|
|
11405
|
+
className="base label input-label v50 mb-v x-main2"
|
|
11076
11406
|
htmlFor="firstName"
|
|
11077
11407
|
>
|
|
11078
11408
|
What's your first name ?
|
|
@@ -11092,7 +11422,7 @@ exports[`Storyshots f/fields/TextInput Base 1`] = `
|
|
|
11092
11422
|
className="debugger"
|
|
11093
11423
|
>
|
|
11094
11424
|
<button
|
|
11095
|
-
className="base button x-
|
|
11425
|
+
className="base button x-main2"
|
|
11096
11426
|
onClick={[Function]}
|
|
11097
11427
|
type="button"
|
|
11098
11428
|
>
|
|
@@ -11116,7 +11446,7 @@ exports[`Storyshots f/fields/TextInput Date Time 1`] = `
|
|
|
11116
11446
|
className="base text-input"
|
|
11117
11447
|
>
|
|
11118
11448
|
<label
|
|
11119
|
-
className="base label input-label v50 mb-v x-
|
|
11449
|
+
className="base label input-label v50 mb-v x-main2"
|
|
11120
11450
|
htmlFor="date"
|
|
11121
11451
|
>
|
|
11122
11452
|
Select date
|
|
@@ -11136,7 +11466,7 @@ exports[`Storyshots f/fields/TextInput Date Time 1`] = `
|
|
|
11136
11466
|
className="base text-input"
|
|
11137
11467
|
>
|
|
11138
11468
|
<label
|
|
11139
|
-
className="base label input-label v50 mb-v x-
|
|
11469
|
+
className="base label input-label v50 mb-v x-main2"
|
|
11140
11470
|
htmlFor="time"
|
|
11141
11471
|
>
|
|
11142
11472
|
Select time
|
|
@@ -11156,7 +11486,7 @@ exports[`Storyshots f/fields/TextInput Date Time 1`] = `
|
|
|
11156
11486
|
className="debugger"
|
|
11157
11487
|
>
|
|
11158
11488
|
<button
|
|
11159
|
-
className="base button x-
|
|
11489
|
+
className="base button x-main2"
|
|
11160
11490
|
onClick={[Function]}
|
|
11161
11491
|
type="button"
|
|
11162
11492
|
>
|
|
@@ -11180,7 +11510,7 @@ exports[`Storyshots f/fields/TextInput Disabled Text Input 1`] = `
|
|
|
11180
11510
|
className="base text-input"
|
|
11181
11511
|
>
|
|
11182
11512
|
<label
|
|
11183
|
-
className="base label input-label v50 mb-v x-
|
|
11513
|
+
className="base label input-label v50 mb-v x-main2"
|
|
11184
11514
|
htmlFor="firstName"
|
|
11185
11515
|
>
|
|
11186
11516
|
What's your first name ?
|
|
@@ -11210,10 +11540,10 @@ exports[`Storyshots f/fields/TextareaInput Base 1`] = `
|
|
|
11210
11540
|
className="y-background1 b-dark-y"
|
|
11211
11541
|
>
|
|
11212
11542
|
<div
|
|
11213
|
-
className="base text-area-input x-background1 y-
|
|
11543
|
+
className="base text-area-input x-background1 y-main2"
|
|
11214
11544
|
>
|
|
11215
11545
|
<label
|
|
11216
|
-
className="base label c-y v50 mb-v x-
|
|
11546
|
+
className="base label c-y v50 mb-v x-main2"
|
|
11217
11547
|
htmlFor="feedBack"
|
|
11218
11548
|
>
|
|
11219
11549
|
What can we improve on?
|
|
@@ -11233,7 +11563,7 @@ exports[`Storyshots f/fields/TextareaInput Base 1`] = `
|
|
|
11233
11563
|
className="debugger"
|
|
11234
11564
|
>
|
|
11235
11565
|
<button
|
|
11236
|
-
className="base button x-
|
|
11566
|
+
className="base button x-main2"
|
|
11237
11567
|
onClick={[Function]}
|
|
11238
11568
|
type="button"
|
|
11239
11569
|
>
|
|
@@ -11254,10 +11584,10 @@ exports[`Storyshots f/fields/TextareaInput Disabled Textarea Input 1`] = `
|
|
|
11254
11584
|
className="y-background1 b-dark-y"
|
|
11255
11585
|
>
|
|
11256
11586
|
<div
|
|
11257
|
-
className="base text-area-input x-background1 y-
|
|
11587
|
+
className="base text-area-input x-background1 y-main2"
|
|
11258
11588
|
>
|
|
11259
11589
|
<label
|
|
11260
|
-
className="base label c-y v50 mb-v x-
|
|
11590
|
+
className="base label c-y v50 mb-v x-main2"
|
|
11261
11591
|
htmlFor="feedBack"
|
|
11262
11592
|
>
|
|
11263
11593
|
What can we improve on?
|
|
@@ -11277,7 +11607,7 @@ exports[`Storyshots f/fields/TextareaInput Disabled Textarea Input 1`] = `
|
|
|
11277
11607
|
className="debugger"
|
|
11278
11608
|
>
|
|
11279
11609
|
<button
|
|
11280
|
-
className="base button x-
|
|
11610
|
+
className="base button x-main2"
|
|
11281
11611
|
onClick={[Function]}
|
|
11282
11612
|
type="button"
|
|
11283
11613
|
>
|