@pareto-engineering/design-system 2.0.0-alpha.10 → 2.0.0-alpha.14

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 (44) hide show
  1. package/dist/cjs/a/BackgroundGradient/BackgroundGradient.js +77 -0
  2. package/dist/cjs/a/BackgroundGradient/index.js +15 -0
  3. package/dist/cjs/a/BackgroundGradient/styles.scss +16 -0
  4. package/dist/cjs/a/Conversation/Conversation.js +15 -8
  5. package/dist/cjs/a/Conversation/common/Message/Message.js +33 -6
  6. package/dist/cjs/a/Conversation/styles.scss +139 -32
  7. package/dist/cjs/a/Shapes/Shapes.js +9 -1
  8. package/dist/cjs/a/Shapes/styles.scss +35 -1
  9. package/dist/cjs/a/index.js +9 -1
  10. package/dist/cjs/b/Button/Button.js +10 -4
  11. package/dist/cjs/b/Button/styles.scss +28 -8
  12. package/dist/cjs/b/Page/common/Section/Section.js +17 -3
  13. package/dist/es/a/BackgroundGradient/BackgroundGradient.js +55 -0
  14. package/dist/es/a/BackgroundGradient/index.js +2 -0
  15. package/dist/es/a/BackgroundGradient/styles.scss +16 -0
  16. package/dist/es/a/Conversation/Conversation.js +15 -8
  17. package/dist/es/a/Conversation/common/Message/Message.js +33 -6
  18. package/dist/es/a/Conversation/styles.scss +139 -32
  19. package/dist/es/a/Shapes/Shapes.js +9 -1
  20. package/dist/es/a/Shapes/styles.scss +35 -1
  21. package/dist/es/a/index.js +2 -1
  22. package/dist/es/b/Button/Button.js +8 -2
  23. package/dist/es/b/Button/styles.scss +28 -8
  24. package/dist/es/b/Page/common/Section/Section.js +17 -3
  25. package/package.json +3 -3
  26. package/src/__snapshots__/Storyshots.test.js.snap +1632 -162
  27. package/src/local.scss +1 -0
  28. package/src/stories/a/BackgroundGradient.stories.jsx +38 -0
  29. package/src/stories/a/Conversation.stories.jsx +78 -1
  30. package/src/stories/a/Shapes.stories.jsx +18 -0
  31. package/src/stories/b/Button.stories.jsx +22 -0
  32. package/src/stories/b/Page.stories.jsx +25 -1
  33. package/src/ui/a/BackgroundGradient/BackgroundGradient.jsx +76 -0
  34. package/src/ui/a/BackgroundGradient/index.js +2 -0
  35. package/src/ui/a/BackgroundGradient/styles.scss +16 -0
  36. package/src/ui/a/Conversation/Conversation.jsx +15 -7
  37. package/src/ui/a/Conversation/common/Message/Message.jsx +40 -7
  38. package/src/ui/a/Conversation/styles.scss +139 -32
  39. package/src/ui/a/Shapes/Shapes.jsx +10 -0
  40. package/src/ui/a/Shapes/styles.scss +35 -1
  41. package/src/ui/a/index.js +1 -0
  42. package/src/ui/b/Button/Button.jsx +7 -0
  43. package/src/ui/b/Button/styles.scss +28 -8
  44. package/src/ui/b/Page/common/Section/Section.jsx +19 -2
@@ -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-background u1"
117
+ className="base conversation illustration y-background2 u1"
97
118
  >
98
119
  <div
99
- className="base message x-main2 ours"
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-background2"
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-main2 ours"
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-background u1"
231
+ className="base conversation illustration y-background2 u1"
211
232
  >
212
233
  <div
213
- className="base message x-main2 ours"
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-background2"
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-main2 ours"
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-background u1"
320
+ className="base conversation illustration y-background2 u1"
300
321
  >
301
322
  <div
302
- className="base message x-main2 ours"
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-background2"
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-main2 ours"
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-background u1"
381
+ className="base conversation y-background2 u1"
361
382
  >
362
383
  <div
363
- className="base message x-background2"
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-main2 ours"
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 Humbl, please compile an assesment of top 5 firms/brand providers for the listed fields in the US.
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-background2"
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"
@@ -1539,154 +1820,1294 @@ exports[`Storyshots a/Shapes Spiral 1`] = `
1539
1820
  }
1540
1821
  }
1541
1822
  >
1542
- <div
1543
- className="spiral"
1544
- >
1545
- <div
1546
- className="circle-one"
1547
- />
1548
- <div
1549
- className="circle-two"
1550
- />
1551
- <div
1552
- className="circle-three"
1553
- />
1554
- <div
1555
- className="circle-four"
1556
- />
1557
- </div>
1558
- </div>
1559
- </div>
1560
- `;
1561
-
1562
- exports[`Storyshots a/Shapes Triangle 1`] = `
1563
- <div
1564
- className="y-background6 b-light-y"
1565
- style={
1566
- Object {
1567
- "height": "1000px",
1568
- "overflow": "hidden",
1569
- "position": "relative",
1570
- }
1571
- }
1572
- >
1573
- <div
1574
- className="base shapes"
1575
- style={
1576
- Object {
1577
- "--horizontal-align": "center",
1578
- "--overflow": "hidden",
1579
- "--shape-height": "30em",
1580
- "--vertical-align": "flex-end",
1581
- }
1582
- }
1823
+ <div
1824
+ className="spiral"
1825
+ >
1826
+ <div
1827
+ className="circle-one"
1828
+ />
1829
+ <div
1830
+ className="circle-two"
1831
+ />
1832
+ <div
1833
+ className="circle-three"
1834
+ />
1835
+ <div
1836
+ className="circle-four"
1837
+ />
1838
+ </div>
1839
+ </div>
1840
+ </div>
1841
+ `;
1842
+
1843
+ exports[`Storyshots a/Shapes Triangle 1`] = `
1844
+ <div
1845
+ className="y-background6 b-light-y"
1846
+ style={
1847
+ Object {
1848
+ "height": "1000px",
1849
+ "overflow": "hidden",
1850
+ "position": "relative",
1851
+ }
1852
+ }
1853
+ >
1854
+ <div
1855
+ className="base shapes"
1856
+ style={
1857
+ Object {
1858
+ "--horizontal-align": "center",
1859
+ "--overflow": "hidden",
1860
+ "--shape-height": "30em",
1861
+ "--vertical-align": "flex-end",
1862
+ }
1863
+ }
1864
+ >
1865
+ <div
1866
+ className="triangle"
1867
+ />
1868
+ </div>
1869
+ </div>
1870
+ `;
1871
+
1872
+ exports[`Storyshots a/SiteContext Base 1`] = `"Sample SiteContext"`;
1873
+
1874
+ exports[`Storyshots a/Spinner Base 1`] = `
1875
+ <div
1876
+ className="y-background1 b-y"
1877
+ >
1878
+ <div
1879
+ className="base spinner x-main1"
1880
+ >
1881
+ <div
1882
+ className="loader"
1883
+ />
1884
+ </div>
1885
+ </div>
1886
+ `;
1887
+
1888
+ exports[`Storyshots a/TeamInfo Base 1`] = `
1889
+ <div
1890
+ className="base team-info u1"
1891
+ >
1892
+ <p
1893
+ className="description s-1 md-s0"
1894
+ >
1895
+ Working at Pareto constantly allows me to learn something new. The team gives everyone a strong support system and never leaves anyone behind, especially when tasks get difficult.
1896
+ </p>
1897
+ <div
1898
+ className="content"
1899
+ >
1900
+ <img
1901
+ alt="Lanie Col-long, Partner at Pareto"
1902
+ className="img mr-u"
1903
+ src="https://pareto-v1.s3.us-west-2.amazonaws.com/profile-pictures/Lanie-Col-long.png"
1904
+ />
1905
+ <div
1906
+ className="team-member"
1907
+ >
1908
+ <span
1909
+ className="name s-1"
1910
+ >
1911
+ Lanie Col-long
1912
+ </span>
1913
+ <span
1914
+ className="role s-2"
1915
+ >
1916
+ Partner
1917
+ </span>
1918
+ </div>
1919
+ </div>
1920
+ </div>
1921
+ `;
1922
+
1923
+ exports[`Storyshots a/Timestamp Base 1`] = `
1924
+ <p
1925
+ className="base timestamp"
1926
+ onClick={[Function]}
1927
+ >
1928
+ 1665792000000
1929
+ </p>
1930
+ `;
1931
+
1932
+ exports[`Storyshots a/Timestamp Date Format 1`] = `
1933
+ <p
1934
+ className="base timestamp"
1935
+ >
1936
+ 2022-10-15 at 00:00
1937
+ </p>
1938
+ `;
1939
+
1940
+ exports[`Storyshots a/Timestamp Distance Format 1`] = `
1941
+ <p
1942
+ className="base timestamp"
1943
+ onClick={[Function]}
1944
+ >
1945
+ in 9 months
1946
+ </p>
1947
+ `;
1948
+
1949
+ exports[`Storyshots a/Timestamp Prefix 1`] = `
1950
+ <p
1951
+ className="base timestamp"
1952
+ onClick={[Function]}
1953
+ >
1954
+ <strong>
1955
+ Updated :
1956
+ </strong>
1957
+
1958
+ 1665792000000
1959
+ </p>
1960
+ `;
1961
+
1962
+ exports[`Storyshots a/Timestamp Relative Format 1`] = `
1963
+ Array [
1964
+ "Click to see relative format. Relative format has not been enabled by default because of chromatic snapshots.",
1965
+ <p
1966
+ className="base timestamp"
1967
+ onClick={[Function]}
1968
+ >
1969
+ 2022-10-10T00:00:00.000+00:00
1970
+ </p>,
1971
+ ]
1972
+ `;
1973
+
1974
+ exports[`Storyshots b/Button Arrow Left 1`] = `
1975
+ Array [
1976
+ <button
1977
+ className="base button x-main1 arrow-left"
1978
+ type="button"
1979
+ >
1980
+ This is a
1981
+
1982
+ main1
1983
+
1984
+ button
1985
+ </button>,
1986
+ <button
1987
+ className="base button x-main2 arrow-left"
1988
+ type="button"
1989
+ >
1990
+ This is a
1991
+
1992
+ main2
1993
+
1994
+ button
1995
+ </button>,
1996
+ <button
1997
+ className="base button x-main3 arrow-left"
1998
+ type="button"
1999
+ >
2000
+ This is a
2001
+
2002
+ main3
2003
+
2004
+ button
2005
+ </button>,
2006
+ <button
2007
+ className="base button x-main4 arrow-left"
2008
+ type="button"
2009
+ >
2010
+ This is a
2011
+
2012
+ main4
2013
+
2014
+ button
2015
+ </button>,
2016
+ <button
2017
+ className="base button x-success arrow-left"
2018
+ type="button"
2019
+ >
2020
+ This is a
2021
+
2022
+ success
2023
+
2024
+ button
2025
+ </button>,
2026
+ <button
2027
+ className="base button x-warning arrow-left"
2028
+ type="button"
2029
+ >
2030
+ This is a
2031
+
2032
+ warning
2033
+
2034
+ button
2035
+ </button>,
2036
+ <button
2037
+ className="base button x-error arrow-left"
2038
+ type="button"
2039
+ >
2040
+ This is a
2041
+
2042
+ error
2043
+
2044
+ button
2045
+ </button>,
2046
+ <button
2047
+ className="base button x-background1 arrow-left"
2048
+ type="button"
2049
+ >
2050
+ This is a
2051
+
2052
+ background1
2053
+
2054
+ button
2055
+ </button>,
2056
+ <button
2057
+ className="base button x-background2 arrow-left"
2058
+ type="button"
2059
+ >
2060
+ This is a
2061
+
2062
+ background2
2063
+
2064
+ button
2065
+ </button>,
2066
+ <button
2067
+ className="base button x-background3 arrow-left"
2068
+ type="button"
2069
+ >
2070
+ This is a
2071
+
2072
+ background3
2073
+
2074
+ button
2075
+ </button>,
2076
+ <button
2077
+ className="base button x-background4 arrow-left"
2078
+ type="button"
2079
+ >
2080
+ This is a
2081
+
2082
+ background4
2083
+
2084
+ button
2085
+ </button>,
2086
+ <button
2087
+ className="base button x-background5 arrow-left"
2088
+ type="button"
2089
+ >
2090
+ This is a
2091
+
2092
+ background5
2093
+
2094
+ button
2095
+ </button>,
2096
+ <button
2097
+ className="base button x-background6 arrow-left"
2098
+ type="button"
2099
+ >
2100
+ This is a
2101
+
2102
+ background6
2103
+
2104
+ button
2105
+ </button>,
2106
+ <button
2107
+ className="base button x-heading arrow-left"
2108
+ type="button"
2109
+ >
2110
+ This is a
2111
+
2112
+ heading
2113
+
2114
+ button
2115
+ </button>,
2116
+ <button
2117
+ className="base button x-paragraph arrow-left"
2118
+ type="button"
2119
+ >
2120
+ This is a
2121
+
2122
+ paragraph
2123
+
2124
+ button
2125
+ </button>,
2126
+ <button
2127
+ className="base button x-subtitle arrow-left"
2128
+ type="button"
2129
+ >
2130
+ This is a
2131
+
2132
+ subtitle
2133
+
2134
+ button
2135
+ </button>,
2136
+ <button
2137
+ className="base button x-metadata arrow-left"
2138
+ type="button"
2139
+ >
2140
+ This is a
2141
+
2142
+ metadata
2143
+
2144
+ button
2145
+ </button>,
2146
+ <button
2147
+ className="base button x-link arrow-left"
2148
+ type="button"
2149
+ >
2150
+ This is a
2151
+
2152
+ link
2153
+
2154
+ button
2155
+ </button>,
2156
+ <button
2157
+ className="base button x-navlink arrow-left"
2158
+ type="button"
2159
+ >
2160
+ This is a
2161
+
2162
+ navlink
2163
+
2164
+ button
2165
+ </button>,
2166
+ <button
2167
+ className="base button x-twitter arrow-left"
2168
+ type="button"
2169
+ >
2170
+ This is a
2171
+
2172
+ twitter
2173
+
2174
+ button
2175
+ </button>,
2176
+ <button
2177
+ className="base button x-facebook arrow-left"
2178
+ type="button"
2179
+ >
2180
+ This is a
2181
+
2182
+ facebook
2183
+
2184
+ button
2185
+ </button>,
2186
+ <button
2187
+ className="base button x-instagram arrow-left"
2188
+ type="button"
2189
+ >
2190
+ This is a
2191
+
2192
+ instagram
2193
+
2194
+ button
2195
+ </button>,
2196
+ <button
2197
+ className="base button x-google arrow-left"
2198
+ type="button"
2199
+ >
2200
+ This is a
2201
+
2202
+ google
2203
+
2204
+ button
2205
+ </button>,
2206
+ <button
2207
+ className="base button x-black arrow-left"
2208
+ type="button"
2209
+ >
2210
+ This is a
2211
+
2212
+ black
2213
+
2214
+ button
2215
+ </button>,
2216
+ <button
2217
+ className="base button x-anchor arrow-left"
2218
+ type="button"
2219
+ >
2220
+ This is a
2221
+
2222
+ anchor
2223
+
2224
+ button
2225
+ </button>,
2226
+ <button
2227
+ className="base button x-grey arrow-left"
2228
+ type="button"
2229
+ >
2230
+ This is a
2231
+
2232
+ grey
2233
+
2234
+ button
2235
+ </button>,
2236
+ <button
2237
+ className="base button x-pearl arrow-left"
2238
+ type="button"
2239
+ >
2240
+ This is a
2241
+
2242
+ pearl
2243
+
2244
+ button
2245
+ </button>,
2246
+ <button
2247
+ className="base button x-white arrow-left"
2248
+ type="button"
2249
+ >
2250
+ This is a
2251
+
2252
+ white
2253
+
2254
+ button
2255
+ </button>,
2256
+ ]
2257
+ `;
2258
+
2259
+ exports[`Storyshots b/Button Arrow Left Simple 1`] = `
2260
+ Array [
2261
+ <button
2262
+ className="base button x-main1 modifierSimple arrow-left"
2263
+ type="button"
2264
+ >
2265
+ This is a
2266
+
2267
+ main1
2268
+
2269
+ button
2270
+ </button>,
2271
+ <button
2272
+ className="base button x-main2 modifierSimple arrow-left"
2273
+ type="button"
2274
+ >
2275
+ This is a
2276
+
2277
+ main2
2278
+
2279
+ button
2280
+ </button>,
2281
+ <button
2282
+ className="base button x-main3 modifierSimple arrow-left"
2283
+ type="button"
2284
+ >
2285
+ This is a
2286
+
2287
+ main3
2288
+
2289
+ button
2290
+ </button>,
2291
+ <button
2292
+ className="base button x-main4 modifierSimple arrow-left"
2293
+ type="button"
2294
+ >
2295
+ This is a
2296
+
2297
+ main4
2298
+
2299
+ button
2300
+ </button>,
2301
+ <button
2302
+ className="base button x-success modifierSimple arrow-left"
2303
+ type="button"
2304
+ >
2305
+ This is a
2306
+
2307
+ success
2308
+
2309
+ button
2310
+ </button>,
2311
+ <button
2312
+ className="base button x-warning modifierSimple arrow-left"
2313
+ type="button"
2314
+ >
2315
+ This is a
2316
+
2317
+ warning
2318
+
2319
+ button
2320
+ </button>,
2321
+ <button
2322
+ className="base button x-error modifierSimple arrow-left"
2323
+ type="button"
2324
+ >
2325
+ This is a
2326
+
2327
+ error
2328
+
2329
+ button
2330
+ </button>,
2331
+ <button
2332
+ className="base button x-background1 modifierSimple arrow-left"
2333
+ type="button"
2334
+ >
2335
+ This is a
2336
+
2337
+ background1
2338
+
2339
+ button
2340
+ </button>,
2341
+ <button
2342
+ className="base button x-background2 modifierSimple arrow-left"
2343
+ type="button"
2344
+ >
2345
+ This is a
2346
+
2347
+ background2
2348
+
2349
+ button
2350
+ </button>,
2351
+ <button
2352
+ className="base button x-background3 modifierSimple arrow-left"
2353
+ type="button"
2354
+ >
2355
+ This is a
2356
+
2357
+ background3
2358
+
2359
+ button
2360
+ </button>,
2361
+ <button
2362
+ className="base button x-background4 modifierSimple arrow-left"
2363
+ type="button"
2364
+ >
2365
+ This is a
2366
+
2367
+ background4
2368
+
2369
+ button
2370
+ </button>,
2371
+ <button
2372
+ className="base button x-background5 modifierSimple arrow-left"
2373
+ type="button"
2374
+ >
2375
+ This is a
2376
+
2377
+ background5
2378
+
2379
+ button
2380
+ </button>,
2381
+ <button
2382
+ className="base button x-background6 modifierSimple arrow-left"
2383
+ type="button"
2384
+ >
2385
+ This is a
2386
+
2387
+ background6
2388
+
2389
+ button
2390
+ </button>,
2391
+ <button
2392
+ className="base button x-heading modifierSimple arrow-left"
2393
+ type="button"
2394
+ >
2395
+ This is a
2396
+
2397
+ heading
2398
+
2399
+ button
2400
+ </button>,
2401
+ <button
2402
+ className="base button x-paragraph modifierSimple arrow-left"
2403
+ type="button"
2404
+ >
2405
+ This is a
2406
+
2407
+ paragraph
2408
+
2409
+ button
2410
+ </button>,
2411
+ <button
2412
+ className="base button x-subtitle modifierSimple arrow-left"
2413
+ type="button"
2414
+ >
2415
+ This is a
2416
+
2417
+ subtitle
2418
+
2419
+ button
2420
+ </button>,
2421
+ <button
2422
+ className="base button x-metadata modifierSimple arrow-left"
2423
+ type="button"
2424
+ >
2425
+ This is a
2426
+
2427
+ metadata
2428
+
2429
+ button
2430
+ </button>,
2431
+ <button
2432
+ className="base button x-link modifierSimple arrow-left"
2433
+ type="button"
2434
+ >
2435
+ This is a
2436
+
2437
+ link
2438
+
2439
+ button
2440
+ </button>,
2441
+ <button
2442
+ className="base button x-navlink modifierSimple arrow-left"
2443
+ type="button"
2444
+ >
2445
+ This is a
2446
+
2447
+ navlink
2448
+
2449
+ button
2450
+ </button>,
2451
+ <button
2452
+ className="base button x-twitter modifierSimple arrow-left"
2453
+ type="button"
2454
+ >
2455
+ This is a
2456
+
2457
+ twitter
2458
+
2459
+ button
2460
+ </button>,
2461
+ <button
2462
+ className="base button x-facebook modifierSimple arrow-left"
2463
+ type="button"
2464
+ >
2465
+ This is a
2466
+
2467
+ facebook
2468
+
2469
+ button
2470
+ </button>,
2471
+ <button
2472
+ className="base button x-instagram modifierSimple arrow-left"
2473
+ type="button"
2474
+ >
2475
+ This is a
2476
+
2477
+ instagram
2478
+
2479
+ button
2480
+ </button>,
2481
+ <button
2482
+ className="base button x-google modifierSimple arrow-left"
2483
+ type="button"
2484
+ >
2485
+ This is a
2486
+
2487
+ google
2488
+
2489
+ button
2490
+ </button>,
2491
+ <button
2492
+ className="base button x-black modifierSimple arrow-left"
2493
+ type="button"
2494
+ >
2495
+ This is a
2496
+
2497
+ black
2498
+
2499
+ button
2500
+ </button>,
2501
+ <button
2502
+ className="base button x-anchor modifierSimple arrow-left"
2503
+ type="button"
2504
+ >
2505
+ This is a
2506
+
2507
+ anchor
2508
+
2509
+ button
2510
+ </button>,
2511
+ <button
2512
+ className="base button x-grey modifierSimple arrow-left"
2513
+ type="button"
2514
+ >
2515
+ This is a
2516
+
2517
+ grey
2518
+
2519
+ button
2520
+ </button>,
2521
+ <button
2522
+ className="base button x-pearl modifierSimple arrow-left"
2523
+ type="button"
2524
+ >
2525
+ This is a
2526
+
2527
+ pearl
2528
+
2529
+ button
2530
+ </button>,
2531
+ <button
2532
+ className="base button x-white modifierSimple arrow-left"
2533
+ type="button"
2534
+ >
2535
+ This is a
2536
+
2537
+ white
2538
+
2539
+ button
2540
+ </button>,
2541
+ ]
2542
+ `;
2543
+
2544
+ exports[`Storyshots b/Button Arrow Right 1`] = `
2545
+ Array [
2546
+ <button
2547
+ className="base button x-main1 arrow-right"
2548
+ type="button"
2549
+ >
2550
+ This is a
2551
+
2552
+ main1
2553
+
2554
+ button
2555
+ </button>,
2556
+ <button
2557
+ className="base button x-main2 arrow-right"
2558
+ type="button"
2559
+ >
2560
+ This is a
2561
+
2562
+ main2
2563
+
2564
+ button
2565
+ </button>,
2566
+ <button
2567
+ className="base button x-main3 arrow-right"
2568
+ type="button"
2569
+ >
2570
+ This is a
2571
+
2572
+ main3
2573
+
2574
+ button
2575
+ </button>,
2576
+ <button
2577
+ className="base button x-main4 arrow-right"
2578
+ type="button"
2579
+ >
2580
+ This is a
2581
+
2582
+ main4
2583
+
2584
+ button
2585
+ </button>,
2586
+ <button
2587
+ className="base button x-success arrow-right"
2588
+ type="button"
2589
+ >
2590
+ This is a
2591
+
2592
+ success
2593
+
2594
+ button
2595
+ </button>,
2596
+ <button
2597
+ className="base button x-warning arrow-right"
2598
+ type="button"
2599
+ >
2600
+ This is a
2601
+
2602
+ warning
2603
+
2604
+ button
2605
+ </button>,
2606
+ <button
2607
+ className="base button x-error arrow-right"
2608
+ type="button"
2609
+ >
2610
+ This is a
2611
+
2612
+ error
2613
+
2614
+ button
2615
+ </button>,
2616
+ <button
2617
+ className="base button x-background1 arrow-right"
2618
+ type="button"
2619
+ >
2620
+ This is a
2621
+
2622
+ background1
2623
+
2624
+ button
2625
+ </button>,
2626
+ <button
2627
+ className="base button x-background2 arrow-right"
2628
+ type="button"
2629
+ >
2630
+ This is a
2631
+
2632
+ background2
2633
+
2634
+ button
2635
+ </button>,
2636
+ <button
2637
+ className="base button x-background3 arrow-right"
2638
+ type="button"
2639
+ >
2640
+ This is a
2641
+
2642
+ background3
2643
+
2644
+ button
2645
+ </button>,
2646
+ <button
2647
+ className="base button x-background4 arrow-right"
2648
+ type="button"
2649
+ >
2650
+ This is a
2651
+
2652
+ background4
2653
+
2654
+ button
2655
+ </button>,
2656
+ <button
2657
+ className="base button x-background5 arrow-right"
2658
+ type="button"
2659
+ >
2660
+ This is a
2661
+
2662
+ background5
2663
+
2664
+ button
2665
+ </button>,
2666
+ <button
2667
+ className="base button x-background6 arrow-right"
2668
+ type="button"
2669
+ >
2670
+ This is a
2671
+
2672
+ background6
2673
+
2674
+ button
2675
+ </button>,
2676
+ <button
2677
+ className="base button x-heading arrow-right"
2678
+ type="button"
2679
+ >
2680
+ This is a
2681
+
2682
+ heading
2683
+
2684
+ button
2685
+ </button>,
2686
+ <button
2687
+ className="base button x-paragraph arrow-right"
2688
+ type="button"
2689
+ >
2690
+ This is a
2691
+
2692
+ paragraph
2693
+
2694
+ button
2695
+ </button>,
2696
+ <button
2697
+ className="base button x-subtitle arrow-right"
2698
+ type="button"
2699
+ >
2700
+ This is a
2701
+
2702
+ subtitle
2703
+
2704
+ button
2705
+ </button>,
2706
+ <button
2707
+ className="base button x-metadata arrow-right"
2708
+ type="button"
2709
+ >
2710
+ This is a
2711
+
2712
+ metadata
2713
+
2714
+ button
2715
+ </button>,
2716
+ <button
2717
+ className="base button x-link arrow-right"
2718
+ type="button"
2719
+ >
2720
+ This is a
2721
+
2722
+ link
2723
+
2724
+ button
2725
+ </button>,
2726
+ <button
2727
+ className="base button x-navlink arrow-right"
2728
+ type="button"
2729
+ >
2730
+ This is a
2731
+
2732
+ navlink
2733
+
2734
+ button
2735
+ </button>,
2736
+ <button
2737
+ className="base button x-twitter arrow-right"
2738
+ type="button"
2739
+ >
2740
+ This is a
2741
+
2742
+ twitter
2743
+
2744
+ button
2745
+ </button>,
2746
+ <button
2747
+ className="base button x-facebook arrow-right"
2748
+ type="button"
2749
+ >
2750
+ This is a
2751
+
2752
+ facebook
2753
+
2754
+ button
2755
+ </button>,
2756
+ <button
2757
+ className="base button x-instagram arrow-right"
2758
+ type="button"
2759
+ >
2760
+ This is a
2761
+
2762
+ instagram
2763
+
2764
+ button
2765
+ </button>,
2766
+ <button
2767
+ className="base button x-google arrow-right"
2768
+ type="button"
2769
+ >
2770
+ This is a
2771
+
2772
+ google
2773
+
2774
+ button
2775
+ </button>,
2776
+ <button
2777
+ className="base button x-black arrow-right"
2778
+ type="button"
2779
+ >
2780
+ This is a
2781
+
2782
+ black
2783
+
2784
+ button
2785
+ </button>,
2786
+ <button
2787
+ className="base button x-anchor arrow-right"
2788
+ type="button"
2789
+ >
2790
+ This is a
2791
+
2792
+ anchor
2793
+
2794
+ button
2795
+ </button>,
2796
+ <button
2797
+ className="base button x-grey arrow-right"
2798
+ type="button"
2799
+ >
2800
+ This is a
2801
+
2802
+ grey
2803
+
2804
+ button
2805
+ </button>,
2806
+ <button
2807
+ className="base button x-pearl arrow-right"
2808
+ type="button"
2809
+ >
2810
+ This is a
2811
+
2812
+ pearl
2813
+
2814
+ button
2815
+ </button>,
2816
+ <button
2817
+ className="base button x-white arrow-right"
2818
+ type="button"
2819
+ >
2820
+ This is a
2821
+
2822
+ white
2823
+
2824
+ button
2825
+ </button>,
2826
+ ]
2827
+ `;
2828
+
2829
+ exports[`Storyshots b/Button Arrow Right Simple 1`] = `
2830
+ Array [
2831
+ <button
2832
+ className="base button x-main1 modifierSimple arrow-right"
2833
+ type="button"
2834
+ >
2835
+ This is a
2836
+
2837
+ main1
2838
+
2839
+ button
2840
+ </button>,
2841
+ <button
2842
+ className="base button x-main2 modifierSimple arrow-right"
2843
+ type="button"
2844
+ >
2845
+ This is a
2846
+
2847
+ main2
2848
+
2849
+ button
2850
+ </button>,
2851
+ <button
2852
+ className="base button x-main3 modifierSimple arrow-right"
2853
+ type="button"
2854
+ >
2855
+ This is a
2856
+
2857
+ main3
2858
+
2859
+ button
2860
+ </button>,
2861
+ <button
2862
+ className="base button x-main4 modifierSimple arrow-right"
2863
+ type="button"
2864
+ >
2865
+ This is a
2866
+
2867
+ main4
2868
+
2869
+ button
2870
+ </button>,
2871
+ <button
2872
+ className="base button x-success modifierSimple arrow-right"
2873
+ type="button"
2874
+ >
2875
+ This is a
2876
+
2877
+ success
2878
+
2879
+ button
2880
+ </button>,
2881
+ <button
2882
+ className="base button x-warning modifierSimple arrow-right"
2883
+ type="button"
2884
+ >
2885
+ This is a
2886
+
2887
+ warning
2888
+
2889
+ button
2890
+ </button>,
2891
+ <button
2892
+ className="base button x-error modifierSimple arrow-right"
2893
+ type="button"
2894
+ >
2895
+ This is a
2896
+
2897
+ error
2898
+
2899
+ button
2900
+ </button>,
2901
+ <button
2902
+ className="base button x-background1 modifierSimple arrow-right"
2903
+ type="button"
2904
+ >
2905
+ This is a
2906
+
2907
+ background1
2908
+
2909
+ button
2910
+ </button>,
2911
+ <button
2912
+ className="base button x-background2 modifierSimple arrow-right"
2913
+ type="button"
2914
+ >
2915
+ This is a
2916
+
2917
+ background2
2918
+
2919
+ button
2920
+ </button>,
2921
+ <button
2922
+ className="base button x-background3 modifierSimple arrow-right"
2923
+ type="button"
2924
+ >
2925
+ This is a
2926
+
2927
+ background3
2928
+
2929
+ button
2930
+ </button>,
2931
+ <button
2932
+ className="base button x-background4 modifierSimple arrow-right"
2933
+ type="button"
2934
+ >
2935
+ This is a
2936
+
2937
+ background4
2938
+
2939
+ button
2940
+ </button>,
2941
+ <button
2942
+ className="base button x-background5 modifierSimple arrow-right"
2943
+ type="button"
2944
+ >
2945
+ This is a
2946
+
2947
+ background5
2948
+
2949
+ button
2950
+ </button>,
2951
+ <button
2952
+ className="base button x-background6 modifierSimple arrow-right"
2953
+ type="button"
2954
+ >
2955
+ This is a
2956
+
2957
+ background6
2958
+
2959
+ button
2960
+ </button>,
2961
+ <button
2962
+ className="base button x-heading modifierSimple arrow-right"
2963
+ type="button"
2964
+ >
2965
+ This is a
2966
+
2967
+ heading
2968
+
2969
+ button
2970
+ </button>,
2971
+ <button
2972
+ className="base button x-paragraph modifierSimple arrow-right"
2973
+ type="button"
2974
+ >
2975
+ This is a
2976
+
2977
+ paragraph
2978
+
2979
+ button
2980
+ </button>,
2981
+ <button
2982
+ className="base button x-subtitle modifierSimple arrow-right"
2983
+ type="button"
2984
+ >
2985
+ This is a
2986
+
2987
+ subtitle
2988
+
2989
+ button
2990
+ </button>,
2991
+ <button
2992
+ className="base button x-metadata modifierSimple arrow-right"
2993
+ type="button"
2994
+ >
2995
+ This is a
2996
+
2997
+ metadata
2998
+
2999
+ button
3000
+ </button>,
3001
+ <button
3002
+ className="base button x-link modifierSimple arrow-right"
3003
+ type="button"
3004
+ >
3005
+ This is a
3006
+
3007
+ link
3008
+
3009
+ button
3010
+ </button>,
3011
+ <button
3012
+ className="base button x-navlink modifierSimple arrow-right"
3013
+ type="button"
3014
+ >
3015
+ This is a
3016
+
3017
+ navlink
3018
+
3019
+ button
3020
+ </button>,
3021
+ <button
3022
+ className="base button x-twitter modifierSimple arrow-right"
3023
+ type="button"
3024
+ >
3025
+ This is a
3026
+
3027
+ twitter
3028
+
3029
+ button
3030
+ </button>,
3031
+ <button
3032
+ className="base button x-facebook modifierSimple arrow-right"
3033
+ type="button"
3034
+ >
3035
+ This is a
3036
+
3037
+ facebook
3038
+
3039
+ button
3040
+ </button>,
3041
+ <button
3042
+ className="base button x-instagram modifierSimple arrow-right"
3043
+ type="button"
1583
3044
  >
1584
- <div
1585
- className="triangle"
1586
- />
1587
- </div>
1588
- </div>
1589
- `;
1590
-
1591
- exports[`Storyshots a/SiteContext Base 1`] = `"Sample SiteContext"`;
1592
-
1593
- exports[`Storyshots a/Spinner Base 1`] = `
1594
- <div
1595
- className="y-background1 b-y"
1596
- >
1597
- <div
1598
- className="base spinner x-main1"
3045
+ This is a
3046
+
3047
+ instagram
3048
+
3049
+ button
3050
+ </button>,
3051
+ <button
3052
+ className="base button x-google modifierSimple arrow-right"
3053
+ type="button"
1599
3054
  >
1600
- <div
1601
- className="loader"
1602
- />
1603
- </div>
1604
- </div>
1605
- `;
1606
-
1607
- exports[`Storyshots a/TeamInfo Base 1`] = `
1608
- <div
1609
- className="base team-info u1"
1610
- >
1611
- <p
1612
- className="description s-1 md-s0"
3055
+ This is a
3056
+
3057
+ google
3058
+
3059
+ button
3060
+ </button>,
3061
+ <button
3062
+ className="base button x-black modifierSimple arrow-right"
3063
+ type="button"
1613
3064
  >
1614
- Working at Pareto constantly allows me to learn something new. The team gives everyone a strong support system and never leaves anyone behind, especially when tasks get difficult.
1615
- </p>
1616
- <div
1617
- className="content"
3065
+ This is a
3066
+
3067
+ black
3068
+
3069
+ button
3070
+ </button>,
3071
+ <button
3072
+ className="base button x-anchor modifierSimple arrow-right"
3073
+ type="button"
1618
3074
  >
1619
- <img
1620
- alt="Lanie Col-long, Partner at Pareto"
1621
- className="img mr-u"
1622
- src="https://pareto-v1.s3.us-west-2.amazonaws.com/profile-pictures/Lanie-Col-long.png"
1623
- />
1624
- <div
1625
- className="team-member"
1626
- >
1627
- <span
1628
- className="name s-1"
1629
- >
1630
- Lanie Col-long
1631
- </span>
1632
- <span
1633
- className="role s-2"
1634
- >
1635
- Partner
1636
- </span>
1637
- </div>
1638
- </div>
1639
- </div>
1640
- `;
1641
-
1642
- exports[`Storyshots a/Timestamp Base 1`] = `
1643
- <p
1644
- className="base timestamp"
1645
- onClick={[Function]}
1646
- >
1647
- 1665792000000
1648
- </p>
1649
- `;
1650
-
1651
- exports[`Storyshots a/Timestamp Date Format 1`] = `
1652
- <p
1653
- className="base timestamp"
1654
- >
1655
- 2022-10-15 at 00:00
1656
- </p>
1657
- `;
1658
-
1659
- exports[`Storyshots a/Timestamp Distance Format 1`] = `
1660
- <p
1661
- className="base timestamp"
1662
- onClick={[Function]}
1663
- >
1664
- in 10 months
1665
- </p>
1666
- `;
1667
-
1668
- exports[`Storyshots a/Timestamp Prefix 1`] = `
1669
- <p
1670
- className="base timestamp"
1671
- onClick={[Function]}
1672
- >
1673
- <strong>
1674
- Updated :
1675
- </strong>
1676
-
1677
- 1665792000000
1678
- </p>
1679
- `;
1680
-
1681
- exports[`Storyshots a/Timestamp Relative Format 1`] = `
1682
- Array [
1683
- "Click to see relative format. Relative format has not been enabled by default because of chromatic snapshots.",
1684
- <p
1685
- className="base timestamp"
1686
- onClick={[Function]}
3075
+ This is a
3076
+
3077
+ anchor
3078
+
3079
+ button
3080
+ </button>,
3081
+ <button
3082
+ className="base button x-grey modifierSimple arrow-right"
3083
+ type="button"
1687
3084
  >
1688
- 2022-10-10T00:00:00.000+00:00
1689
- </p>,
3085
+ This is a
3086
+
3087
+ grey
3088
+
3089
+ button
3090
+ </button>,
3091
+ <button
3092
+ className="base button x-pearl modifierSimple arrow-right"
3093
+ type="button"
3094
+ >
3095
+ This is a
3096
+
3097
+ pearl
3098
+
3099
+ button
3100
+ </button>,
3101
+ <button
3102
+ className="base button x-white modifierSimple arrow-right"
3103
+ type="button"
3104
+ >
3105
+ This is a
3106
+
3107
+ white
3108
+
3109
+ button
3110
+ </button>,
1690
3111
  ]
1691
3112
  `;
1692
3113
 
@@ -6430,11 +7851,11 @@ exports[`Storyshots b/Page Item Type 1`] = `
6430
7851
  exports[`Storyshots b/Page Sections With Background 1`] = `
6431
7852
  <main
6432
7853
  className="base page"
6433
- id="with-sections"
7854
+ id="with-background"
6434
7855
  >
6435
7856
  <section
6436
7857
  className="base section y-success b-light-y"
6437
- id="with-sections_s1"
7858
+ id="with-background_s1"
6438
7859
  style={
6439
7860
  Object {
6440
7861
  "alignItems": "center",
@@ -6483,6 +7904,55 @@ exports[`Storyshots b/Page Sections With Background 1`] = `
6483
7904
  </main>
6484
7905
  `;
6485
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
+
6486
7956
  exports[`Storyshots b/Page With Sections 1`] = `
6487
7957
  <main
6488
7958
  className="base page"