@pareto-engineering/design-system 2.0.0-alpha.60 → 2.0.0-alpha.62

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 (39) hide show
  1. package/dist/cjs/a/Label/Label.js +87 -0
  2. package/dist/cjs/a/Label/index.js +15 -0
  3. package/dist/cjs/a/Label/styles.scss +34 -0
  4. package/dist/cjs/a/index.js +9 -1
  5. package/dist/cjs/f/FormInput/FormInput.js +6 -0
  6. package/dist/cjs/f/fields/Checkbox/Checkbox.js +117 -0
  7. package/dist/cjs/f/fields/Checkbox/index.js +15 -0
  8. package/dist/cjs/f/fields/Checkbox/styles.scss +14 -0
  9. package/dist/cjs/f/fields/ChoicesInput/ChoicesInput.js +1 -1
  10. package/dist/cjs/f/fields/ChoicesInput/common/Choice/Choice.js +2 -5
  11. package/dist/cjs/f/fields/index.js +9 -1
  12. package/dist/es/a/Label/Label.js +71 -0
  13. package/dist/es/a/Label/index.js +2 -0
  14. package/dist/es/a/Label/styles.scss +34 -0
  15. package/dist/es/a/index.js +2 -1
  16. package/dist/es/f/FormInput/FormInput.js +7 -1
  17. package/dist/es/f/fields/Checkbox/Checkbox.js +99 -0
  18. package/dist/es/f/fields/Checkbox/index.js +2 -0
  19. package/dist/es/f/fields/Checkbox/styles.scss +14 -0
  20. package/dist/es/f/fields/ChoicesInput/ChoicesInput.js +1 -1
  21. package/dist/es/f/fields/ChoicesInput/common/Choice/Choice.js +2 -5
  22. package/dist/es/f/fields/index.js +2 -1
  23. package/package.json +1 -1
  24. package/src/__snapshots__/Storyshots.test.js.snap +1940 -1352
  25. package/src/stories/a/Label.stories.jsx +49 -0
  26. package/src/stories/f/Checkbox.stories.jsx +95 -0
  27. package/src/stories/f/ChoicesInput.stories.jsx +10 -36
  28. package/src/stories/f/FormInput.stories.jsx +5 -0
  29. package/src/ui/a/Label/Label.jsx +93 -0
  30. package/src/ui/a/Label/index.js +2 -0
  31. package/src/ui/a/Label/styles.scss +34 -0
  32. package/src/ui/a/index.js +1 -0
  33. package/src/ui/f/FormInput/FormInput.jsx +11 -0
  34. package/src/ui/f/fields/Checkbox/Checkbox.jsx +118 -0
  35. package/src/ui/f/fields/Checkbox/index.js +2 -0
  36. package/src/ui/f/fields/Checkbox/styles.scss +14 -0
  37. package/src/ui/f/fields/ChoicesInput/ChoicesInput.jsx +1 -1
  38. package/src/ui/f/fields/ChoicesInput/common/Choice/Choice.jsx +2 -10
  39. package/src/ui/f/fields/index.js +1 -0
@@ -1400,6 +1400,785 @@ exports[`Storyshots a/IconList Base 1`] = `
1400
1400
  </ul>
1401
1401
  `;
1402
1402
 
1403
+ exports[`Storyshots a/Label Base 1`] = `
1404
+ <div
1405
+ className="base label x-main1"
1406
+ >
1407
+ Label Value
1408
+ </div>
1409
+ `;
1410
+
1411
+ exports[`Storyshots a/Label Compact 1`] = `
1412
+ Array [
1413
+ <div
1414
+ className="base label x-main1 modifierCompact"
1415
+ >
1416
+ This is a
1417
+
1418
+ main1
1419
+
1420
+ label
1421
+ </div>,
1422
+ <div
1423
+ className="base label x-main2 modifierCompact"
1424
+ >
1425
+ This is a
1426
+
1427
+ main2
1428
+
1429
+ label
1430
+ </div>,
1431
+ <div
1432
+ className="base label x-main3 modifierCompact"
1433
+ >
1434
+ This is a
1435
+
1436
+ main3
1437
+
1438
+ label
1439
+ </div>,
1440
+ <div
1441
+ className="base label x-main4 modifierCompact"
1442
+ >
1443
+ This is a
1444
+
1445
+ main4
1446
+
1447
+ label
1448
+ </div>,
1449
+ <div
1450
+ className="base label x-success modifierCompact"
1451
+ >
1452
+ This is a
1453
+
1454
+ success
1455
+
1456
+ label
1457
+ </div>,
1458
+ <div
1459
+ className="base label x-warning modifierCompact"
1460
+ >
1461
+ This is a
1462
+
1463
+ warning
1464
+
1465
+ label
1466
+ </div>,
1467
+ <div
1468
+ className="base label x-error modifierCompact"
1469
+ >
1470
+ This is a
1471
+
1472
+ error
1473
+
1474
+ label
1475
+ </div>,
1476
+ <div
1477
+ className="base label x-background1 modifierCompact"
1478
+ >
1479
+ This is a
1480
+
1481
+ background1
1482
+
1483
+ label
1484
+ </div>,
1485
+ <div
1486
+ className="base label x-background2 modifierCompact"
1487
+ >
1488
+ This is a
1489
+
1490
+ background2
1491
+
1492
+ label
1493
+ </div>,
1494
+ <div
1495
+ className="base label x-background3 modifierCompact"
1496
+ >
1497
+ This is a
1498
+
1499
+ background3
1500
+
1501
+ label
1502
+ </div>,
1503
+ <div
1504
+ className="base label x-background4 modifierCompact"
1505
+ >
1506
+ This is a
1507
+
1508
+ background4
1509
+
1510
+ label
1511
+ </div>,
1512
+ <div
1513
+ className="base label x-background5 modifierCompact"
1514
+ >
1515
+ This is a
1516
+
1517
+ background5
1518
+
1519
+ label
1520
+ </div>,
1521
+ <div
1522
+ className="base label x-background6 modifierCompact"
1523
+ >
1524
+ This is a
1525
+
1526
+ background6
1527
+
1528
+ label
1529
+ </div>,
1530
+ <div
1531
+ className="base label x-heading modifierCompact"
1532
+ >
1533
+ This is a
1534
+
1535
+ heading
1536
+
1537
+ label
1538
+ </div>,
1539
+ <div
1540
+ className="base label x-paragraph modifierCompact"
1541
+ >
1542
+ This is a
1543
+
1544
+ paragraph
1545
+
1546
+ label
1547
+ </div>,
1548
+ <div
1549
+ className="base label x-subtitle modifierCompact"
1550
+ >
1551
+ This is a
1552
+
1553
+ subtitle
1554
+
1555
+ label
1556
+ </div>,
1557
+ <div
1558
+ className="base label x-metadata modifierCompact"
1559
+ >
1560
+ This is a
1561
+
1562
+ metadata
1563
+
1564
+ label
1565
+ </div>,
1566
+ <div
1567
+ className="base label x-link modifierCompact"
1568
+ >
1569
+ This is a
1570
+
1571
+ link
1572
+
1573
+ label
1574
+ </div>,
1575
+ <div
1576
+ className="base label x-navlink modifierCompact"
1577
+ >
1578
+ This is a
1579
+
1580
+ navlink
1581
+
1582
+ label
1583
+ </div>,
1584
+ <div
1585
+ className="base label x-twitter modifierCompact"
1586
+ >
1587
+ This is a
1588
+
1589
+ twitter
1590
+
1591
+ label
1592
+ </div>,
1593
+ <div
1594
+ className="base label x-facebook modifierCompact"
1595
+ >
1596
+ This is a
1597
+
1598
+ facebook
1599
+
1600
+ label
1601
+ </div>,
1602
+ <div
1603
+ className="base label x-instagram modifierCompact"
1604
+ >
1605
+ This is a
1606
+
1607
+ instagram
1608
+
1609
+ label
1610
+ </div>,
1611
+ <div
1612
+ className="base label x-google modifierCompact"
1613
+ >
1614
+ This is a
1615
+
1616
+ google
1617
+
1618
+ label
1619
+ </div>,
1620
+ <div
1621
+ className="base label x-black modifierCompact"
1622
+ >
1623
+ This is a
1624
+
1625
+ black
1626
+
1627
+ label
1628
+ </div>,
1629
+ <div
1630
+ className="base label x-anchor modifierCompact"
1631
+ >
1632
+ This is a
1633
+
1634
+ anchor
1635
+
1636
+ label
1637
+ </div>,
1638
+ <div
1639
+ className="base label x-grey modifierCompact"
1640
+ >
1641
+ This is a
1642
+
1643
+ grey
1644
+
1645
+ label
1646
+ </div>,
1647
+ <div
1648
+ className="base label x-pearl modifierCompact"
1649
+ >
1650
+ This is a
1651
+
1652
+ pearl
1653
+
1654
+ label
1655
+ </div>,
1656
+ <div
1657
+ className="base label x-white modifierCompact"
1658
+ >
1659
+ This is a
1660
+
1661
+ white
1662
+
1663
+ label
1664
+ </div>,
1665
+ ]
1666
+ `;
1667
+
1668
+ exports[`Storyshots a/Label Ghost 1`] = `
1669
+ Array [
1670
+ <div
1671
+ className="base label x-main1 modifierGhost"
1672
+ >
1673
+ This is a
1674
+
1675
+ main1
1676
+
1677
+ label
1678
+ </div>,
1679
+ <div
1680
+ className="base label x-main2 modifierGhost"
1681
+ >
1682
+ This is a
1683
+
1684
+ main2
1685
+
1686
+ label
1687
+ </div>,
1688
+ <div
1689
+ className="base label x-main3 modifierGhost"
1690
+ >
1691
+ This is a
1692
+
1693
+ main3
1694
+
1695
+ label
1696
+ </div>,
1697
+ <div
1698
+ className="base label x-main4 modifierGhost"
1699
+ >
1700
+ This is a
1701
+
1702
+ main4
1703
+
1704
+ label
1705
+ </div>,
1706
+ <div
1707
+ className="base label x-success modifierGhost"
1708
+ >
1709
+ This is a
1710
+
1711
+ success
1712
+
1713
+ label
1714
+ </div>,
1715
+ <div
1716
+ className="base label x-warning modifierGhost"
1717
+ >
1718
+ This is a
1719
+
1720
+ warning
1721
+
1722
+ label
1723
+ </div>,
1724
+ <div
1725
+ className="base label x-error modifierGhost"
1726
+ >
1727
+ This is a
1728
+
1729
+ error
1730
+
1731
+ label
1732
+ </div>,
1733
+ <div
1734
+ className="base label x-background1 modifierGhost"
1735
+ >
1736
+ This is a
1737
+
1738
+ background1
1739
+
1740
+ label
1741
+ </div>,
1742
+ <div
1743
+ className="base label x-background2 modifierGhost"
1744
+ >
1745
+ This is a
1746
+
1747
+ background2
1748
+
1749
+ label
1750
+ </div>,
1751
+ <div
1752
+ className="base label x-background3 modifierGhost"
1753
+ >
1754
+ This is a
1755
+
1756
+ background3
1757
+
1758
+ label
1759
+ </div>,
1760
+ <div
1761
+ className="base label x-background4 modifierGhost"
1762
+ >
1763
+ This is a
1764
+
1765
+ background4
1766
+
1767
+ label
1768
+ </div>,
1769
+ <div
1770
+ className="base label x-background5 modifierGhost"
1771
+ >
1772
+ This is a
1773
+
1774
+ background5
1775
+
1776
+ label
1777
+ </div>,
1778
+ <div
1779
+ className="base label x-background6 modifierGhost"
1780
+ >
1781
+ This is a
1782
+
1783
+ background6
1784
+
1785
+ label
1786
+ </div>,
1787
+ <div
1788
+ className="base label x-heading modifierGhost"
1789
+ >
1790
+ This is a
1791
+
1792
+ heading
1793
+
1794
+ label
1795
+ </div>,
1796
+ <div
1797
+ className="base label x-paragraph modifierGhost"
1798
+ >
1799
+ This is a
1800
+
1801
+ paragraph
1802
+
1803
+ label
1804
+ </div>,
1805
+ <div
1806
+ className="base label x-subtitle modifierGhost"
1807
+ >
1808
+ This is a
1809
+
1810
+ subtitle
1811
+
1812
+ label
1813
+ </div>,
1814
+ <div
1815
+ className="base label x-metadata modifierGhost"
1816
+ >
1817
+ This is a
1818
+
1819
+ metadata
1820
+
1821
+ label
1822
+ </div>,
1823
+ <div
1824
+ className="base label x-link modifierGhost"
1825
+ >
1826
+ This is a
1827
+
1828
+ link
1829
+
1830
+ label
1831
+ </div>,
1832
+ <div
1833
+ className="base label x-navlink modifierGhost"
1834
+ >
1835
+ This is a
1836
+
1837
+ navlink
1838
+
1839
+ label
1840
+ </div>,
1841
+ <div
1842
+ className="base label x-twitter modifierGhost"
1843
+ >
1844
+ This is a
1845
+
1846
+ twitter
1847
+
1848
+ label
1849
+ </div>,
1850
+ <div
1851
+ className="base label x-facebook modifierGhost"
1852
+ >
1853
+ This is a
1854
+
1855
+ facebook
1856
+
1857
+ label
1858
+ </div>,
1859
+ <div
1860
+ className="base label x-instagram modifierGhost"
1861
+ >
1862
+ This is a
1863
+
1864
+ instagram
1865
+
1866
+ label
1867
+ </div>,
1868
+ <div
1869
+ className="base label x-google modifierGhost"
1870
+ >
1871
+ This is a
1872
+
1873
+ google
1874
+
1875
+ label
1876
+ </div>,
1877
+ <div
1878
+ className="base label x-black modifierGhost"
1879
+ >
1880
+ This is a
1881
+
1882
+ black
1883
+
1884
+ label
1885
+ </div>,
1886
+ <div
1887
+ className="base label x-anchor modifierGhost"
1888
+ >
1889
+ This is a
1890
+
1891
+ anchor
1892
+
1893
+ label
1894
+ </div>,
1895
+ <div
1896
+ className="base label x-grey modifierGhost"
1897
+ >
1898
+ This is a
1899
+
1900
+ grey
1901
+
1902
+ label
1903
+ </div>,
1904
+ <div
1905
+ className="base label x-pearl modifierGhost"
1906
+ >
1907
+ This is a
1908
+
1909
+ pearl
1910
+
1911
+ label
1912
+ </div>,
1913
+ <div
1914
+ className="base label x-white modifierGhost"
1915
+ >
1916
+ This is a
1917
+
1918
+ white
1919
+
1920
+ label
1921
+ </div>,
1922
+ ]
1923
+ `;
1924
+
1925
+ exports[`Storyshots a/Label Normal 1`] = `
1926
+ Array [
1927
+ <div
1928
+ className="base label x-main1"
1929
+ >
1930
+ This is a
1931
+
1932
+ main1
1933
+
1934
+ label
1935
+ </div>,
1936
+ <div
1937
+ className="base label x-main2"
1938
+ >
1939
+ This is a
1940
+
1941
+ main2
1942
+
1943
+ label
1944
+ </div>,
1945
+ <div
1946
+ className="base label x-main3"
1947
+ >
1948
+ This is a
1949
+
1950
+ main3
1951
+
1952
+ label
1953
+ </div>,
1954
+ <div
1955
+ className="base label x-main4"
1956
+ >
1957
+ This is a
1958
+
1959
+ main4
1960
+
1961
+ label
1962
+ </div>,
1963
+ <div
1964
+ className="base label x-success"
1965
+ >
1966
+ This is a
1967
+
1968
+ success
1969
+
1970
+ label
1971
+ </div>,
1972
+ <div
1973
+ className="base label x-warning"
1974
+ >
1975
+ This is a
1976
+
1977
+ warning
1978
+
1979
+ label
1980
+ </div>,
1981
+ <div
1982
+ className="base label x-error"
1983
+ >
1984
+ This is a
1985
+
1986
+ error
1987
+
1988
+ label
1989
+ </div>,
1990
+ <div
1991
+ className="base label x-background1"
1992
+ >
1993
+ This is a
1994
+
1995
+ background1
1996
+
1997
+ label
1998
+ </div>,
1999
+ <div
2000
+ className="base label x-background2"
2001
+ >
2002
+ This is a
2003
+
2004
+ background2
2005
+
2006
+ label
2007
+ </div>,
2008
+ <div
2009
+ className="base label x-background3"
2010
+ >
2011
+ This is a
2012
+
2013
+ background3
2014
+
2015
+ label
2016
+ </div>,
2017
+ <div
2018
+ className="base label x-background4"
2019
+ >
2020
+ This is a
2021
+
2022
+ background4
2023
+
2024
+ label
2025
+ </div>,
2026
+ <div
2027
+ className="base label x-background5"
2028
+ >
2029
+ This is a
2030
+
2031
+ background5
2032
+
2033
+ label
2034
+ </div>,
2035
+ <div
2036
+ className="base label x-background6"
2037
+ >
2038
+ This is a
2039
+
2040
+ background6
2041
+
2042
+ label
2043
+ </div>,
2044
+ <div
2045
+ className="base label x-heading"
2046
+ >
2047
+ This is a
2048
+
2049
+ heading
2050
+
2051
+ label
2052
+ </div>,
2053
+ <div
2054
+ className="base label x-paragraph"
2055
+ >
2056
+ This is a
2057
+
2058
+ paragraph
2059
+
2060
+ label
2061
+ </div>,
2062
+ <div
2063
+ className="base label x-subtitle"
2064
+ >
2065
+ This is a
2066
+
2067
+ subtitle
2068
+
2069
+ label
2070
+ </div>,
2071
+ <div
2072
+ className="base label x-metadata"
2073
+ >
2074
+ This is a
2075
+
2076
+ metadata
2077
+
2078
+ label
2079
+ </div>,
2080
+ <div
2081
+ className="base label x-link"
2082
+ >
2083
+ This is a
2084
+
2085
+ link
2086
+
2087
+ label
2088
+ </div>,
2089
+ <div
2090
+ className="base label x-navlink"
2091
+ >
2092
+ This is a
2093
+
2094
+ navlink
2095
+
2096
+ label
2097
+ </div>,
2098
+ <div
2099
+ className="base label x-twitter"
2100
+ >
2101
+ This is a
2102
+
2103
+ twitter
2104
+
2105
+ label
2106
+ </div>,
2107
+ <div
2108
+ className="base label x-facebook"
2109
+ >
2110
+ This is a
2111
+
2112
+ facebook
2113
+
2114
+ label
2115
+ </div>,
2116
+ <div
2117
+ className="base label x-instagram"
2118
+ >
2119
+ This is a
2120
+
2121
+ instagram
2122
+
2123
+ label
2124
+ </div>,
2125
+ <div
2126
+ className="base label x-google"
2127
+ >
2128
+ This is a
2129
+
2130
+ google
2131
+
2132
+ label
2133
+ </div>,
2134
+ <div
2135
+ className="base label x-black"
2136
+ >
2137
+ This is a
2138
+
2139
+ black
2140
+
2141
+ label
2142
+ </div>,
2143
+ <div
2144
+ className="base label x-anchor"
2145
+ >
2146
+ This is a
2147
+
2148
+ anchor
2149
+
2150
+ label
2151
+ </div>,
2152
+ <div
2153
+ className="base label x-grey"
2154
+ >
2155
+ This is a
2156
+
2157
+ grey
2158
+
2159
+ label
2160
+ </div>,
2161
+ <div
2162
+ className="base label x-pearl"
2163
+ >
2164
+ This is a
2165
+
2166
+ pearl
2167
+
2168
+ label
2169
+ </div>,
2170
+ <div
2171
+ className="base label x-white"
2172
+ >
2173
+ This is a
2174
+
2175
+ white
2176
+
2177
+ label
2178
+ </div>,
2179
+ ]
2180
+ `;
2181
+
1403
2182
  exports[`Storyshots a/LoadingCircle Base 1`] = `
1404
2183
  <div
1405
2184
  className="x-main1 b-x"
@@ -2950,7 +3729,7 @@ exports[`Storyshots a/Timestamp Distance Format 1`] = `
2950
3729
  className="base timestamp"
2951
3730
  onClick={[Function]}
2952
3731
  >
2953
- 16 days ago
3732
+ 23 days ago
2954
3733
  </p>
2955
3734
  `;
2956
3735
 
@@ -10204,170 +10983,35 @@ exports[`Storyshots c/ContentSlides With Background Shape 1`] = `
10204
10983
  preserveAspectRatio="xMinYMin meet"
10205
10984
  version="1.1"
10206
10985
  viewBox="0 0 156 30"
10207
- xmlns="http://www.w3.org/2000/svg"
10208
- >
10209
- <use
10210
- className=""
10211
- href="/logo.svg#logo_squares"
10212
- id="logo_squares"
10213
- style={
10214
- Object {
10215
- "style": undefined,
10216
- }
10217
- }
10218
- />
10219
- <use
10220
- className=""
10221
- href="/logo.svg#logo_pareto"
10222
- id="logo_pareto"
10223
- style={
10224
- Object {
10225
- "style": undefined,
10226
- }
10227
- }
10228
- />
10229
- </svg>
10230
- </div>
10231
- </div>
10232
- </div>
10233
- <main>
10234
- <div
10235
- className="modifierActive slide"
10236
- >
10237
- <div
10238
- className="wrapper"
10239
- >
10240
- <div
10241
- className="content"
10242
- >
10243
- <div
10244
- className="base title"
10245
- >
10246
- <h1
10247
- className="small heading"
10248
- >
10249
- Welcome
10250
- </h1>
10251
- <p
10252
- className="subtitle"
10253
- >
10254
- Welcome to this site. We hope you will have an amazing experience here.
10255
- </p>
10256
- </div>
10257
- <div
10258
- className="navigator"
10259
- >
10260
- <span />
10261
- <button
10262
- className="base button x-main2 next x-main1 modifierCompact"
10263
- disabled={false}
10264
- onClick={[Function]}
10265
- type="button"
10266
- >
10267
- Next
10268
- </button>
10269
- </div>
10270
- </div>
10271
- </div>
10272
- </div>
10273
- <div
10274
- className="slide"
10275
- >
10276
- <div
10277
- className="wrapper"
10278
- >
10279
- <div
10280
- className="content"
10281
- >
10282
- <div
10283
- className="base title"
10284
- >
10285
- <h1
10286
- className="small heading"
10287
- >
10288
- Part 2
10289
- </h1>
10290
- <p
10291
- className="subtitle"
10292
- >
10293
- Welcome to this site. We hope you will have an amazing experience here.
10294
- </p>
10295
- </div>
10296
- <p>
10297
- In ut sollicitudin elit. Maecenas tempor ex aliquet enim egestas, non sollicitudin mi tempor. Pellentesque fermentum, massa in cursus faucibus, enim tortor fringilla ligula, sit amet tincidunt neque orci et tellus. Nam dignissim tristique justo. Cras nulla sem, dictum pellentesque libero eget, porta placerat leo.
10298
- </p>
10299
- <p>
10300
- Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu. enim tortor fringilla ligula, sit amet tincidunt neque orci et tellus. Nam dignissim tristique justo. Cras nulla sem, dictum pellentesque libero eget, porta placerat leo.
10301
- </p>
10302
- <p>
10303
- Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu. enim tortor fringilla ligula, sit amet tincidunt neque orci et tellus. Nam dignissim tristique justo. Cras nulla sem, dictum pellentesque libero eget, porta placerat leo. Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu.
10304
-
10305
- </p>
10306
- <p>
10307
- Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu. enim tortor fringilla ligula, sit amet tincidunt neque orci et tellus. Nam dignissim tristique justo. Cras nulla sem, dictum pellentesque libero eget, porta placerat leo. Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu.
10308
-
10309
- </p>
10310
- <p>
10311
- Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu. enim tortor fringilla ligula, sit amet tincidunt neque orci et tellus. Nam dignissim tristique justo. Cras nulla sem, dictum pellentesque libero eget, porta placerat leo. Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu.
10312
-
10313
- </p>
10314
- <div
10315
- className="navigator"
10316
- >
10317
- <span />
10318
- <button
10319
- className="base button x-main2 next x-main1 modifierCompact"
10320
- disabled={false}
10321
- onClick={[Function]}
10322
- type="button"
10323
- >
10324
- Next
10325
- </button>
10326
- </div>
10327
- </div>
10328
- </div>
10329
- </div>
10330
- <div
10331
- className="slide"
10332
- >
10333
- <div
10334
- className="wrapper"
10335
- >
10336
- <div
10337
- className="content"
10338
- >
10339
- <div
10340
- className="base title"
10341
- >
10342
- <h1
10343
- className="small heading"
10344
- >
10345
- Part 3
10346
- </h1>
10347
- <p
10348
- className="subtitle"
10349
- >
10350
- Welcome to this site. We hope you will have an amazing experience here.
10351
- </p>
10352
- </div>
10353
- <div
10354
- className="navigator"
10355
- >
10356
- <span />
10357
- <button
10358
- className="base button x-main2 next x-main1 modifierCompact"
10359
- disabled={false}
10360
- onClick={[Function]}
10361
- type="button"
10362
- >
10363
- Next
10364
- </button>
10365
- </div>
10366
- </div>
10986
+ xmlns="http://www.w3.org/2000/svg"
10987
+ >
10988
+ <use
10989
+ className=""
10990
+ href="/logo.svg#logo_squares"
10991
+ id="logo_squares"
10992
+ style={
10993
+ Object {
10994
+ "style": undefined,
10995
+ }
10996
+ }
10997
+ />
10998
+ <use
10999
+ className=""
11000
+ href="/logo.svg#logo_pareto"
11001
+ id="logo_pareto"
11002
+ style={
11003
+ Object {
11004
+ "style": undefined,
11005
+ }
11006
+ }
11007
+ />
11008
+ </svg>
10367
11009
  </div>
10368
11010
  </div>
11011
+ </div>
11012
+ <main>
10369
11013
  <div
10370
- className="slide"
11014
+ className="modifierActive slide"
10371
11015
  >
10372
11016
  <div
10373
11017
  className="wrapper"
@@ -10379,354 +11023,289 @@ exports[`Storyshots c/ContentSlides With Background Shape 1`] = `
10379
11023
  className="base title"
10380
11024
  >
10381
11025
  <h1
10382
- className="heading"
11026
+ className="small heading"
10383
11027
  >
10384
- Part 4
11028
+ Welcome
10385
11029
  </h1>
10386
11030
  <p
10387
11031
  className="subtitle"
10388
11032
  >
10389
- Welcome to this site. We hope you will have an amazing experience here.
10390
- </p>
10391
- </div>
10392
- <div
10393
- className="navigator"
10394
- >
10395
- <span />
10396
- <button
10397
- className="base button x-main2 next x-main1 modifierCompact"
10398
- disabled={false}
10399
- onClick={[Function]}
10400
- type="button"
10401
- >
10402
- Next
10403
- </button>
10404
- </div>
10405
- </div>
10406
- </div>
10407
- </div>
10408
- </main>
10409
- </div>
10410
- </div>
10411
- `;
10412
-
10413
- exports[`Storyshots c/Hero Base 1`] = `
10414
- <div
10415
- className="base hero"
10416
- >
10417
- <div
10418
- className="title"
10419
- >
10420
- <div
10421
- className="base title"
10422
- >
10423
- <h1
10424
- className="heading"
10425
- >
10426
- Say no to busywork.
10427
- <br />
10428
- Get back to changing the world
10429
- </h1>
10430
- <p
10431
- className="subtitle"
10432
- >
10433
- Send us the repetitive tasks you don't have time for. Focus on the critical tasks only you can do.
10434
- </p>
10435
- </div>
10436
- </div>
10437
- <div
10438
- className="illustration"
10439
- >
10440
- <svg
10441
- className="base svg"
10442
- height="512"
10443
- preserveAspectRatio="xMinYMin meet"
10444
- version="1.1"
10445
- viewBox="0 0 512 512"
10446
- width="512"
10447
- xmlns="http://www.w3.org/2000/svg"
10448
- >
10449
- <use
10450
- className=""
10451
- href="/sprite.svg"
10452
- style={
10453
- Object {
10454
- "style": undefined,
10455
- }
10456
- }
10457
- />
10458
- </svg>
10459
- </div>
10460
- <div
10461
- className="cta"
10462
- >
10463
- <button
10464
- className="base button x-primary x-main1"
10465
- type="button"
10466
- >
10467
- Free trial
10468
- </button>
10469
- <p
10470
- className="s-1 v1 mt-v"
10471
- >
10472
- No credit card required. Cancel anytime.
10473
- </p>
10474
- </div>
10475
- </div>
10476
- `;
10477
-
10478
- exports[`Storyshots c/Shortener Base 1`] = `
10479
- <span
10480
- className="base shortener"
10481
- style={
10482
- Object {
10483
- "maxWidth": "300px",
10484
- }
10485
- }
10486
- >
10487
- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
10488
- ...
10489
- <button
10490
- className="base button s-2 x-main1 modifierSimple"
10491
- onClick={[Function]}
10492
- type="button"
10493
- >
10494
- Show
10495
- </button>
10496
- </span>
10497
- `;
10498
-
10499
- exports[`Storyshots c/SocialMediaShareButton Facebook 1`] = `
10500
- <a
10501
- className="base social-media-share-button x-facebook"
10502
- href="https://www.facebook.com/sharer/sharer.php?u=http://localhost/#/welcome"
10503
- rel="noreferrer"
10504
- target="_blank"
10505
- >
10506
- <button
10507
- type="button"
10508
- >
10509
- f
10510
- </button>
10511
- </a>
10512
- `;
10513
-
10514
- exports[`Storyshots c/SocialMediaShareButton Twitter 1`] = `
10515
- <a
10516
- className="base social-media-share-button x-twitter"
10517
- href="https://twitter.com/intent/tweet?url=http://localhost/#/welcome"
10518
- rel="noreferrer"
10519
- target="_blank"
10520
- >
10521
- <button
10522
- type="button"
10523
- >
10524
- t
10525
- </button>
10526
- </a>
10527
- `;
10528
-
10529
- exports[`Storyshots f/FormInput Base 1`] = `
10530
- <form
10531
- action="#"
10532
- onReset={[Function]}
10533
- onSubmit={[Function]}
10534
- >
10535
- <div
10536
- className="base text-input form-input y-background2"
10537
- >
10538
- <label
10539
- className="base label v50 mb-v x-main2"
10540
- htmlFor="firstName"
10541
- >
10542
- What's your first name ?
10543
- </label>
10544
- <input
10545
- className="input"
10546
- disabled={false}
10547
- id="firstName"
10548
- name="firstName"
10549
- onBlur={[Function]}
10550
- onChange={[Function]}
10551
- type="text"
10552
- value="Test"
10553
- />
10554
- </div>
10555
- <div
10556
- className="base text-input form-input y-background2"
10557
- >
10558
- <label
10559
- className="base label v50 mb-v x-main2"
10560
- htmlFor="lastName"
10561
- >
10562
- What's your last name ?
10563
- </label>
10564
- <input
10565
- className="input"
10566
- disabled={false}
10567
- id="lastName"
10568
- name="lastName"
10569
- onBlur={[Function]}
10570
- onChange={[Function]}
10571
- type="text"
10572
- />
10573
- </div>
10574
- <div
10575
- className="base text-area-input form-input y-background2"
10576
- >
10577
- <label
10578
- className="base label v50 mb-v x-main2"
10579
- htmlFor="description"
10580
- >
10581
- Describe yourself in a few sentences
10582
- </label>
10583
- <textarea
10584
- className="textarea"
10585
- disabled={false}
10586
- name="description"
10587
- onBlur={[Function]}
10588
- onChange={[Function]}
10589
- rows={3}
10590
- style={
10591
- Object {
10592
- "resize": "vertical",
10593
- }
10594
- }
10595
- />
10596
- </div>
10597
- <div
10598
- className="base choices-input form-input x-background2 y-main2"
10599
- style={
10600
- Object {
10601
- "--grid-columns-desktop": 3,
10602
- "--grid-columns-mobile": 2,
10603
- }
10604
- }
10605
- >
10606
- <p
10607
- className="base label x-main2"
10608
- >
10609
- What are your favourite colors ?
10610
- </p>
10611
- <div
10612
- className="choices"
10613
- >
11033
+ Welcome to this site. We hope you will have an amazing experience here.
11034
+ </p>
11035
+ </div>
11036
+ <div
11037
+ className="navigator"
11038
+ >
11039
+ <span />
11040
+ <button
11041
+ className="base button x-main2 next x-main1 modifierCompact"
11042
+ disabled={false}
11043
+ onClick={[Function]}
11044
+ type="button"
11045
+ >
11046
+ Next
11047
+ </button>
11048
+ </div>
11049
+ </div>
11050
+ </div>
11051
+ </div>
10614
11052
  <div
10615
- className="base choice"
11053
+ className="slide"
10616
11054
  >
10617
- <input
10618
- checked={false}
10619
- disabled={false}
10620
- id="colors-red"
10621
- name="colors"
10622
- onBlur={[Function]}
10623
- onChange={[Function]}
10624
- type="radio"
10625
- value="red"
10626
- />
10627
- <label
10628
- htmlFor="colors-red"
11055
+ <div
11056
+ className="wrapper"
10629
11057
  >
10630
- Color Red
10631
- </label>
11058
+ <div
11059
+ className="content"
11060
+ >
11061
+ <div
11062
+ className="base title"
11063
+ >
11064
+ <h1
11065
+ className="small heading"
11066
+ >
11067
+ Part 2
11068
+ </h1>
11069
+ <p
11070
+ className="subtitle"
11071
+ >
11072
+ Welcome to this site. We hope you will have an amazing experience here.
11073
+ </p>
11074
+ </div>
11075
+ <p>
11076
+ In ut sollicitudin elit. Maecenas tempor ex aliquet enim egestas, non sollicitudin mi tempor. Pellentesque fermentum, massa in cursus faucibus, enim tortor fringilla ligula, sit amet tincidunt neque orci et tellus. Nam dignissim tristique justo. Cras nulla sem, dictum pellentesque libero eget, porta placerat leo.
11077
+ </p>
11078
+ <p>
11079
+ Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu. enim tortor fringilla ligula, sit amet tincidunt neque orci et tellus. Nam dignissim tristique justo. Cras nulla sem, dictum pellentesque libero eget, porta placerat leo.
11080
+ </p>
11081
+ <p>
11082
+ Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu. enim tortor fringilla ligula, sit amet tincidunt neque orci et tellus. Nam dignissim tristique justo. Cras nulla sem, dictum pellentesque libero eget, porta placerat leo. Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu.
11083
+
11084
+ </p>
11085
+ <p>
11086
+ Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu. enim tortor fringilla ligula, sit amet tincidunt neque orci et tellus. Nam dignissim tristique justo. Cras nulla sem, dictum pellentesque libero eget, porta placerat leo. Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu.
11087
+
11088
+ </p>
11089
+ <p>
11090
+ Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu. enim tortor fringilla ligula, sit amet tincidunt neque orci et tellus. Nam dignissim tristique justo. Cras nulla sem, dictum pellentesque libero eget, porta placerat leo. Donec scelerisque enim risus, in pharetra purus fringilla eu. Cras placerat ac enim viverra rhoncus. Cras sagittis euismod orci eget aliquam. Nulla et mi non enim aliquam consequat. Cras volutpat porta convallis. Mauris ullamcorper vitae sapien ac rhoncus. Nullam vel porttitor mi, ut vestibulum arcu.
11091
+
11092
+ </p>
11093
+ <div
11094
+ className="navigator"
11095
+ >
11096
+ <span />
11097
+ <button
11098
+ className="base button x-main2 next x-main1 modifierCompact"
11099
+ disabled={false}
11100
+ onClick={[Function]}
11101
+ type="button"
11102
+ >
11103
+ Next
11104
+ </button>
11105
+ </div>
11106
+ </div>
11107
+ </div>
10632
11108
  </div>
10633
11109
  <div
10634
- className="base choice"
11110
+ className="slide"
10635
11111
  >
10636
- <input
10637
- checked={false}
10638
- disabled={false}
10639
- id="colors-blue"
10640
- name="colors"
10641
- onBlur={[Function]}
10642
- onChange={[Function]}
10643
- type="radio"
10644
- value="blue"
10645
- />
10646
- <label
10647
- htmlFor="colors-blue"
11112
+ <div
11113
+ className="wrapper"
10648
11114
  >
10649
- Color Blue
10650
- </label>
11115
+ <div
11116
+ className="content"
11117
+ >
11118
+ <div
11119
+ className="base title"
11120
+ >
11121
+ <h1
11122
+ className="small heading"
11123
+ >
11124
+ Part 3
11125
+ </h1>
11126
+ <p
11127
+ className="subtitle"
11128
+ >
11129
+ Welcome to this site. We hope you will have an amazing experience here.
11130
+ </p>
11131
+ </div>
11132
+ <div
11133
+ className="navigator"
11134
+ >
11135
+ <span />
11136
+ <button
11137
+ className="base button x-main2 next x-main1 modifierCompact"
11138
+ disabled={false}
11139
+ onClick={[Function]}
11140
+ type="button"
11141
+ >
11142
+ Next
11143
+ </button>
11144
+ </div>
11145
+ </div>
11146
+ </div>
10651
11147
  </div>
10652
11148
  <div
10653
- className="base choice"
11149
+ className="slide"
10654
11150
  >
10655
- <input
10656
- checked={false}
10657
- disabled={false}
10658
- id="colors-green"
10659
- name="colors"
10660
- onBlur={[Function]}
10661
- onChange={[Function]}
10662
- type="radio"
10663
- value="green"
10664
- />
10665
- <label
10666
- htmlFor="colors-green"
11151
+ <div
11152
+ className="wrapper"
10667
11153
  >
10668
- Color Green
10669
- </label>
11154
+ <div
11155
+ className="content"
11156
+ >
11157
+ <div
11158
+ className="base title"
11159
+ >
11160
+ <h1
11161
+ className="heading"
11162
+ >
11163
+ Part 4
11164
+ </h1>
11165
+ <p
11166
+ className="subtitle"
11167
+ >
11168
+ Welcome to this site. We hope you will have an amazing experience here.
11169
+ </p>
11170
+ </div>
11171
+ <div
11172
+ className="navigator"
11173
+ >
11174
+ <span />
11175
+ <button
11176
+ className="base button x-main2 next x-main1 modifierCompact"
11177
+ disabled={false}
11178
+ onClick={[Function]}
11179
+ type="button"
11180
+ >
11181
+ Next
11182
+ </button>
11183
+ </div>
11184
+ </div>
11185
+ </div>
10670
11186
  </div>
10671
- </div>
11187
+ </main>
10672
11188
  </div>
11189
+ </div>
11190
+ `;
11191
+
11192
+ exports[`Storyshots c/Hero Base 1`] = `
11193
+ <div
11194
+ className="base hero"
11195
+ >
10673
11196
  <div
10674
- className="base select-input form-input y-background2"
11197
+ className="title"
10675
11198
  >
10676
- <label
10677
- className="base label x-main2"
10678
- htmlFor="food"
10679
- >
10680
- What do you want for dinner ?
10681
- </label>
10682
11199
  <div
10683
- className="select-wrapper"
11200
+ className="base title"
10684
11201
  >
10685
- <select
10686
- className="input"
10687
- disabled={false}
10688
- id="food"
10689
- name="food"
10690
- onBlur={[Function]}
10691
- onChange={[Function]}
10692
- value=""
11202
+ <h1
11203
+ className="heading"
10693
11204
  >
10694
- <option
10695
- disabled={false}
10696
- value="italian"
10697
- >
10698
- A nice pizza
10699
- </option>
10700
- <option
10701
- disabled={false}
10702
- value="turkish"
10703
- >
10704
- A delicious kebab
10705
- </option>
10706
- <option
10707
- disabled={false}
10708
- value="french"
10709
- >
10710
- A three course delicate french meal
10711
- </option>
10712
- </select>
11205
+ Say no to busywork.
11206
+ <br />
11207
+ Get back to changing the world
11208
+ </h1>
11209
+ <p
11210
+ className="subtitle"
11211
+ >
11212
+ Send us the repetitive tasks you don't have time for. Focus on the critical tasks only you can do.
11213
+ </p>
10713
11214
  </div>
10714
11215
  </div>
10715
11216
  <div
10716
- className="debugger"
11217
+ className="illustration"
11218
+ >
11219
+ <svg
11220
+ className="base svg"
11221
+ height="512"
11222
+ preserveAspectRatio="xMinYMin meet"
11223
+ version="1.1"
11224
+ viewBox="0 0 512 512"
11225
+ width="512"
11226
+ xmlns="http://www.w3.org/2000/svg"
11227
+ >
11228
+ <use
11229
+ className=""
11230
+ href="/sprite.svg"
11231
+ style={
11232
+ Object {
11233
+ "style": undefined,
11234
+ }
11235
+ }
11236
+ />
11237
+ </svg>
11238
+ </div>
11239
+ <div
11240
+ className="cta"
10717
11241
  >
10718
11242
  <button
10719
- className="base button x-main2"
10720
- onClick={[Function]}
11243
+ className="base button x-primary x-main1"
10721
11244
  type="button"
10722
11245
  >
10723
- Open FormDebugger
11246
+ Free trial
10724
11247
  </button>
11248
+ <p
11249
+ className="s-1 v1 mt-v"
11250
+ >
11251
+ No credit card required. Cancel anytime.
11252
+ </p>
10725
11253
  </div>
10726
- </form>
11254
+ </div>
10727
11255
  `;
10728
11256
 
10729
- exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
11257
+ exports[`Storyshots c/Shortener Base 1`] = `
11258
+ <span
11259
+ className="base shortener"
11260
+ style={
11261
+ Object {
11262
+ "maxWidth": "300px",
11263
+ }
11264
+ }
11265
+ >
11266
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
11267
+ ...
11268
+ <button
11269
+ className="base button s-2 x-main1 modifierSimple"
11270
+ onClick={[Function]}
11271
+ type="button"
11272
+ >
11273
+ Show
11274
+ </button>
11275
+ </span>
11276
+ `;
11277
+
11278
+ exports[`Storyshots c/SocialMediaShareButton Facebook 1`] = `
11279
+ <a
11280
+ className="base social-media-share-button x-facebook"
11281
+ href="https://www.facebook.com/sharer/sharer.php?u=http://localhost/#/welcome"
11282
+ rel="noreferrer"
11283
+ target="_blank"
11284
+ >
11285
+ <button
11286
+ type="button"
11287
+ >
11288
+ f
11289
+ </button>
11290
+ </a>
11291
+ `;
11292
+
11293
+ exports[`Storyshots c/SocialMediaShareButton Twitter 1`] = `
11294
+ <a
11295
+ className="base social-media-share-button x-twitter"
11296
+ href="https://twitter.com/intent/tweet?url=http://localhost/#/welcome"
11297
+ rel="noreferrer"
11298
+ target="_blank"
11299
+ >
11300
+ <button
11301
+ type="button"
11302
+ >
11303
+ t
11304
+ </button>
11305
+ </a>
11306
+ `;
11307
+
11308
+ exports[`Storyshots f/FormInput Base 1`] = `
10730
11309
  <form
10731
11310
  action="#"
10732
11311
  onReset={[Function]}
@@ -10743,7 +11322,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
10743
11322
  </label>
10744
11323
  <input
10745
11324
  className="input"
10746
- disabled={true}
11325
+ disabled={false}
10747
11326
  id="firstName"
10748
11327
  name="firstName"
10749
11328
  onBlur={[Function]}
@@ -10761,234 +11340,57 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
10761
11340
  >
10762
11341
  What's your last name ?
10763
11342
  </label>
10764
- <input
10765
- className="input"
10766
- disabled={true}
10767
- id="lastName"
10768
- name="lastName"
10769
- onBlur={[Function]}
10770
- onChange={[Function]}
10771
- type="text"
10772
- />
10773
- </div>
10774
- <div
10775
- className="base text-area-input form-input y-background2"
10776
- >
10777
- <label
10778
- className="base label v50 mb-v x-main2"
10779
- htmlFor="description"
10780
- >
10781
- Describe yourself in a few sentences
10782
- </label>
10783
- <textarea
10784
- className="textarea"
10785
- disabled={true}
10786
- name="description"
10787
- onBlur={[Function]}
10788
- onChange={[Function]}
10789
- rows={3}
10790
- style={
10791
- Object {
10792
- "resize": "vertical",
10793
- }
10794
- }
10795
- />
10796
- </div>
10797
- <div
10798
- className="base choices-input form-input x-background2 y-main2"
10799
- style={
10800
- Object {
10801
- "--grid-columns-desktop": 3,
10802
- "--grid-columns-mobile": 2,
10803
- }
10804
- }
10805
- >
10806
- <p
10807
- className="base label x-main2"
10808
- >
10809
- What are your favourite colors ?
10810
- </p>
10811
- <div
10812
- className="choices"
10813
- >
10814
- <div
10815
- className="base choice"
10816
- >
10817
- <input
10818
- checked={false}
10819
- disabled={true}
10820
- id="colors-red"
10821
- name="colors"
10822
- onBlur={[Function]}
10823
- onChange={[Function]}
10824
- type="radio"
10825
- value="red"
10826
- />
10827
- <label
10828
- htmlFor="colors-red"
10829
- >
10830
- Color Red
10831
- </label>
10832
- </div>
10833
- <div
10834
- className="base choice"
10835
- >
10836
- <input
10837
- checked={false}
10838
- disabled={true}
10839
- id="colors-blue"
10840
- name="colors"
10841
- onBlur={[Function]}
10842
- onChange={[Function]}
10843
- type="radio"
10844
- value="blue"
10845
- />
10846
- <label
10847
- htmlFor="colors-blue"
10848
- >
10849
- Color Blue
10850
- </label>
10851
- </div>
10852
- <div
10853
- className="base choice"
10854
- >
10855
- <input
10856
- checked={false}
10857
- disabled={true}
10858
- id="colors-green"
10859
- name="colors"
10860
- onBlur={[Function]}
10861
- onChange={[Function]}
10862
- type="radio"
10863
- value="green"
10864
- />
10865
- <label
10866
- htmlFor="colors-green"
10867
- >
10868
- Color Green
10869
- </label>
10870
- </div>
10871
- </div>
10872
- </div>
10873
- <div
10874
- className="base select-input form-input y-background2"
10875
- >
10876
- <label
10877
- className="base label x-main2"
10878
- htmlFor="food"
10879
- >
10880
- What do you want for dinner ?
10881
- </label>
10882
- <div
10883
- className="select-wrapper"
10884
- >
10885
- <select
10886
- className="input"
10887
- disabled={true}
10888
- id="food"
10889
- name="food"
10890
- onBlur={[Function]}
10891
- onChange={[Function]}
10892
- value=""
10893
- >
10894
- <option
10895
- disabled={false}
10896
- value="italian"
10897
- >
10898
- A nice pizza
10899
- </option>
10900
- <option
10901
- disabled={false}
10902
- value="turkish"
10903
- >
10904
- A delicious kebab
10905
- </option>
10906
- <option
10907
- disabled={false}
10908
- value="french"
10909
- >
10910
- A three course delicate french meal
10911
- </option>
10912
- </select>
10913
- </div>
10914
- </div>
10915
- <div
10916
- className="debugger"
10917
- >
10918
- <button
10919
- className="base button x-main2"
10920
- onClick={[Function]}
10921
- type="button"
10922
- >
10923
- Open FormDebugger
10924
- </button>
10925
- </div>
10926
- </form>
10927
- `;
10928
-
10929
- exports[`Storyshots f/FormInput Extensible Form Input 1`] = `
10930
- <form
10931
- action="#"
10932
- onReset={[Function]}
10933
- onSubmit={[Function]}
10934
- >
10935
- <div
10936
- className="base text-input form-input y-background2"
10937
- >
10938
- <label
10939
- className="base label v50 mb-v x-main2"
10940
- htmlFor="extended"
10941
- >
10942
- Extended type input
10943
- </label>
10944
11343
  <input
10945
11344
  className="input"
10946
11345
  disabled={false}
10947
- id="extended"
10948
- name="extended"
11346
+ id="lastName"
11347
+ name="lastName"
10949
11348
  onBlur={[Function]}
10950
11349
  onChange={[Function]}
10951
11350
  type="text"
10952
11351
  />
10953
11352
  </div>
10954
11353
  <div
10955
- className="debugger"
11354
+ className="base text-area-input form-input y-background2"
10956
11355
  >
10957
- <button
10958
- className="base button x-main2"
10959
- onClick={[Function]}
10960
- type="button"
11356
+ <label
11357
+ className="base label v50 mb-v x-main2"
11358
+ htmlFor="description"
10961
11359
  >
10962
- Open FormDebugger
10963
- </button>
11360
+ Describe yourself in a few sentences
11361
+ </label>
11362
+ <textarea
11363
+ className="textarea"
11364
+ disabled={false}
11365
+ name="description"
11366
+ onBlur={[Function]}
11367
+ onChange={[Function]}
11368
+ rows={3}
11369
+ style={
11370
+ Object {
11371
+ "resize": "vertical",
11372
+ }
11373
+ }
11374
+ />
10964
11375
  </div>
10965
- </form>
10966
- `;
10967
-
10968
- exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
10969
- <form
10970
- action="#"
10971
- onReset={[Function]}
10972
- onSubmit={[Function]}
10973
- >
10974
11376
  <div
10975
- className="base text-input form-input y-background2"
11377
+ className="base checkbox form-input"
10976
11378
  >
10977
11379
  <label
10978
- className="base label v50 mb-v x-main2"
10979
- htmlFor="firstName"
11380
+ className="base label x-main2"
11381
+ htmlFor="urgent"
10980
11382
  >
10981
- What's your first name ?
11383
+ Urgent
10982
11384
  </label>
10983
11385
  <input
11386
+ checked={false}
10984
11387
  className="input"
10985
11388
  disabled={false}
10986
- id="firstName"
10987
- name="firstName"
11389
+ id="urgent"
11390
+ name="urgent"
10988
11391
  onBlur={[Function]}
10989
11392
  onChange={[Function]}
10990
- type="text"
10991
- value="Test"
11393
+ type="checkbox"
10992
11394
  />
10993
11395
  </div>
10994
11396
  <div
@@ -11012,9 +11414,8 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11012
11414
  className="base choice"
11013
11415
  >
11014
11416
  <input
11015
- checked={false}
11016
11417
  disabled={false}
11017
- id="colors-red"
11418
+ id="undefined-red"
11018
11419
  name="colors"
11019
11420
  onBlur={[Function]}
11020
11421
  onChange={[Function]}
@@ -11022,7 +11423,7 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11022
11423
  value="red"
11023
11424
  />
11024
11425
  <label
11025
- htmlFor="colors-red"
11426
+ htmlFor="undefined-red"
11026
11427
  >
11027
11428
  Color Red
11028
11429
  </label>
@@ -11031,9 +11432,8 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11031
11432
  className="base choice"
11032
11433
  >
11033
11434
  <input
11034
- checked={false}
11035
11435
  disabled={false}
11036
- id="colors-blue"
11436
+ id="undefined-blue"
11037
11437
  name="colors"
11038
11438
  onBlur={[Function]}
11039
11439
  onChange={[Function]}
@@ -11041,7 +11441,7 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11041
11441
  value="blue"
11042
11442
  />
11043
11443
  <label
11044
- htmlFor="colors-blue"
11444
+ htmlFor="undefined-blue"
11045
11445
  >
11046
11446
  Color Blue
11047
11447
  </label>
@@ -11050,9 +11450,8 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11050
11450
  className="base choice"
11051
11451
  >
11052
11452
  <input
11053
- checked={false}
11054
11453
  disabled={false}
11055
- id="colors-green"
11454
+ id="undefined-green"
11056
11455
  name="colors"
11057
11456
  onBlur={[Function]}
11058
11457
  onChange={[Function]}
@@ -11060,7 +11459,7 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11060
11459
  value="green"
11061
11460
  />
11062
11461
  <label
11063
- htmlFor="colors-green"
11462
+ htmlFor="undefined-green"
11064
11463
  >
11065
11464
  Color Green
11066
11465
  </label>
@@ -11072,9 +11471,9 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11072
11471
  >
11073
11472
  <label
11074
11473
  className="base label x-main2"
11075
- htmlFor="status"
11474
+ htmlFor="food"
11076
11475
  >
11077
- Select Task Status
11476
+ What do you want for dinner ?
11078
11477
  </label>
11079
11478
  <div
11080
11479
  className="select-wrapper"
@@ -11082,12 +11481,31 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11082
11481
  <select
11083
11482
  className="input"
11084
11483
  disabled={false}
11085
- id="status"
11086
- name="status"
11484
+ id="food"
11485
+ name="food"
11087
11486
  onBlur={[Function]}
11088
11487
  onChange={[Function]}
11089
11488
  value=""
11090
- />
11489
+ >
11490
+ <option
11491
+ disabled={false}
11492
+ value="italian"
11493
+ >
11494
+ A nice pizza
11495
+ </option>
11496
+ <option
11497
+ disabled={false}
11498
+ value="turkish"
11499
+ >
11500
+ A delicious kebab
11501
+ </option>
11502
+ <option
11503
+ disabled={false}
11504
+ value="french"
11505
+ >
11506
+ A three course delicate french meal
11507
+ </option>
11508
+ </select>
11091
11509
  </div>
11092
11510
  </div>
11093
11511
  <div
@@ -11104,7 +11522,7 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11104
11522
  </form>
11105
11523
  `;
11106
11524
 
11107
- exports[`Storyshots f/FormInput With Query Combobox 1`] = `
11525
+ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
11108
11526
  <form
11109
11527
  action="#"
11110
11528
  onReset={[Function]}
@@ -11121,7 +11539,7 @@ exports[`Storyshots f/FormInput With Query Combobox 1`] = `
11121
11539
  </label>
11122
11540
  <input
11123
11541
  className="input"
11124
- disabled={false}
11542
+ disabled={true}
11125
11543
  id="firstName"
11126
11544
  name="firstName"
11127
11545
  onBlur={[Function]}
@@ -11130,338 +11548,163 @@ exports[`Storyshots f/FormInput With Query Combobox 1`] = `
11130
11548
  value="Test"
11131
11549
  />
11132
11550
  </div>
11133
- <div
11134
- className="base choices-input form-input x-background2 y-main2"
11135
- style={
11136
- Object {
11137
- "--grid-columns-desktop": 3,
11138
- "--grid-columns-mobile": 2,
11139
- }
11140
- }
11141
- >
11142
- <p
11143
- className="base label x-main2"
11144
- >
11145
- What are your favourite colors ?
11146
- </p>
11147
- <div
11148
- className="choices"
11149
- >
11150
- <div
11151
- className="base choice"
11152
- >
11153
- <input
11154
- checked={false}
11155
- disabled={false}
11156
- id="colors-red"
11157
- name="colors"
11158
- onBlur={[Function]}
11159
- onChange={[Function]}
11160
- type="radio"
11161
- value="red"
11162
- />
11163
- <label
11164
- htmlFor="colors-red"
11165
- >
11166
- Color Red
11167
- </label>
11168
- </div>
11169
- <div
11170
- className="base choice"
11171
- >
11172
- <input
11173
- checked={false}
11174
- disabled={false}
11175
- id="colors-blue"
11176
- name="colors"
11177
- onBlur={[Function]}
11178
- onChange={[Function]}
11179
- type="radio"
11180
- value="blue"
11181
- />
11182
- <label
11183
- htmlFor="colors-blue"
11184
- >
11185
- Color Blue
11186
- </label>
11187
- </div>
11188
- <div
11189
- className="base choice"
11190
- >
11191
- <input
11192
- checked={false}
11193
- disabled={false}
11194
- id="colors-green"
11195
- name="colors"
11196
- onBlur={[Function]}
11197
- onChange={[Function]}
11198
- type="radio"
11199
- value="green"
11200
- />
11201
- <label
11202
- htmlFor="colors-green"
11203
- >
11204
- Color Green
11205
- </label>
11206
- </div>
11207
- </div>
11208
- </div>
11209
- <div
11210
- className="base combobox form-input y-background2"
11211
- >
11212
- <label
11213
- className="base label x-main2"
11214
- htmlFor="team"
11215
- id="downshift-0-label"
11216
- >
11217
- Search for a team
11218
- </label>
11219
- <div
11220
- aria-expanded={false}
11221
- aria-haspopup="listbox"
11222
- aria-owns="downshift-0-menu"
11223
- className="input-wrapper"
11224
- role="combobox"
11225
- >
11226
- <input
11227
- aria-autocomplete="list"
11228
- aria-controls="downshift-0-menu"
11229
- aria-labelledby="downshift-0-label"
11230
- autoComplete="off"
11231
- className="input"
11232
- disabled={false}
11233
- id="downshift-0-input"
11234
- onBlur={[Function]}
11235
- onChange={[Function]}
11236
- onKeyDown={[Function]}
11237
- value=""
11238
- />
11239
- </div>
11240
- <div
11241
- className="base popover x-background1 bottom left"
11242
- >
11243
- <ul
11244
- aria-labelledby="downshift-0-label"
11245
- className="base menu"
11246
- id="downshift-0-menu"
11247
- onMouseLeave={[Function]}
11248
- role="listbox"
11249
- />
11250
- </div>
11251
- </div>
11252
- <div
11253
- className="base multiple-combobox form-input y-background2"
11254
- >
11255
- <label
11256
- className="base label x-main2"
11257
- htmlFor="teams"
11258
- id="downshift-1-label"
11259
- >
11260
- Search for teams
11261
- </label>
11262
- <div
11263
- aria-expanded={false}
11264
- aria-haspopup="listbox"
11265
- aria-owns="downshift-1-menu"
11266
- className="input-wrapper"
11267
- role="combobox"
11268
- >
11269
- <input
11270
- aria-autocomplete="list"
11271
- aria-controls="downshift-1-menu"
11272
- aria-labelledby="downshift-1-label"
11273
- autoComplete="off"
11274
- className="input"
11275
- disabled={false}
11276
- id="downshift-1-input"
11277
- onBlur={[Function]}
11278
- onChange={[Function]}
11279
- onClick={[Function]}
11280
- onKeyDown={[Function]}
11281
- value=""
11282
- />
11283
- </div>
11284
- <div
11285
- className="base popover x-background1 bottom left"
11286
- >
11287
- <ul
11288
- aria-labelledby="downshift-1-label"
11289
- className="base menu"
11290
- id="downshift-1-menu"
11291
- onMouseLeave={[Function]}
11292
- role="listbox"
11293
- />
11294
- </div>
11295
- </div>
11296
- <div
11297
- className="debugger"
11298
- >
11299
- <button
11300
- className="base button x-main2"
11301
- onClick={[Function]}
11302
- type="button"
11303
- >
11304
- Open FormDebugger
11305
- </button>
11306
- </div>
11307
- </form>
11308
- `;
11309
-
11310
- exports[`Storyshots f/FormInput With Ratings Input 1`] = `
11311
- <form
11312
- action="#"
11313
- onReset={[Function]}
11314
- onSubmit={[Function]}
11315
- >
11316
11551
  <div
11317
11552
  className="base text-input form-input y-background2"
11318
11553
  >
11319
11554
  <label
11320
11555
  className="base label v50 mb-v x-main2"
11321
- htmlFor="firstName"
11556
+ htmlFor="lastName"
11322
11557
  >
11323
- What's your first name ?
11558
+ What's your last name ?
11324
11559
  </label>
11325
11560
  <input
11326
11561
  className="input"
11327
- disabled={false}
11328
- id="firstName"
11329
- name="firstName"
11562
+ disabled={true}
11563
+ id="lastName"
11564
+ name="lastName"
11330
11565
  onBlur={[Function]}
11331
11566
  onChange={[Function]}
11332
11567
  type="text"
11333
- value="Test"
11334
11568
  />
11335
11569
  </div>
11336
11570
  <div
11337
- className="base ratings-input form-input"
11571
+ className="base text-area-input form-input y-background2"
11338
11572
  >
11339
11573
  <label
11340
- className="base label input-label v50 mb-v x-main2"
11341
- htmlFor="ratings"
11574
+ className="base label v50 mb-v x-main2"
11575
+ htmlFor="description"
11342
11576
  >
11343
- Your Rating
11577
+ Describe yourself in a few sentences
11344
11578
  </label>
11579
+ <textarea
11580
+ className="textarea"
11581
+ disabled={true}
11582
+ name="description"
11583
+ onBlur={[Function]}
11584
+ onChange={[Function]}
11585
+ rows={3}
11586
+ style={
11587
+ Object {
11588
+ "resize": "vertical",
11589
+ }
11590
+ }
11591
+ />
11592
+ </div>
11593
+ <div
11594
+ className="base choices-input form-input x-background2 y-main2"
11595
+ style={
11596
+ Object {
11597
+ "--grid-columns-desktop": 3,
11598
+ "--grid-columns-mobile": 2,
11599
+ }
11600
+ }
11601
+ >
11602
+ <p
11603
+ className="base label x-main2"
11604
+ >
11605
+ What are your favourite colors ?
11606
+ </p>
11345
11607
  <div
11346
- className="stars"
11608
+ className="choices"
11347
11609
  >
11348
11610
  <div
11349
- className="base rating x-main1 y-background2"
11611
+ className="base choice"
11350
11612
  >
11351
- <label
11352
- htmlFor="ratings-1"
11353
- onMouseEnter={[Function]}
11354
- onMouseLeave={[Function]}
11355
- >
11356
- <span
11357
- className="f-icons c-dark-y"
11358
- >
11359
- [
11360
- </span>
11361
- </label>
11362
11613
  <input
11363
- id="ratings-1"
11364
- name="ratings"
11614
+ disabled={true}
11615
+ id="undefined-red"
11616
+ name="colors"
11365
11617
  onBlur={[Function]}
11366
11618
  onChange={[Function]}
11367
11619
  type="radio"
11368
- value={1}
11620
+ value="red"
11369
11621
  />
11370
- </div>
11371
- <div
11372
- className="base rating x-main1 y-background2"
11373
- >
11374
11622
  <label
11375
- htmlFor="ratings-2"
11376
- onMouseEnter={[Function]}
11377
- onMouseLeave={[Function]}
11623
+ htmlFor="undefined-red"
11378
11624
  >
11379
- <span
11380
- className="f-icons c-dark-y"
11381
- >
11382
- [
11383
- </span>
11625
+ Color Red
11384
11626
  </label>
11385
- <input
11386
- id="ratings-2"
11387
- name="ratings"
11388
- onBlur={[Function]}
11389
- onChange={[Function]}
11390
- type="radio"
11391
- value={2}
11392
- />
11393
11627
  </div>
11394
11628
  <div
11395
- className="base rating x-main1 y-background2"
11629
+ className="base choice"
11396
11630
  >
11397
- <label
11398
- htmlFor="ratings-3"
11399
- onMouseEnter={[Function]}
11400
- onMouseLeave={[Function]}
11401
- >
11402
- <span
11403
- className="f-icons c-dark-y"
11404
- >
11405
- [
11406
- </span>
11407
- </label>
11408
11631
  <input
11409
- id="ratings-3"
11410
- name="ratings"
11632
+ disabled={true}
11633
+ id="undefined-blue"
11634
+ name="colors"
11411
11635
  onBlur={[Function]}
11412
11636
  onChange={[Function]}
11413
11637
  type="radio"
11414
- value={3}
11638
+ value="blue"
11415
11639
  />
11416
- </div>
11417
- <div
11418
- className="base rating x-main1 y-background2"
11419
- >
11420
11640
  <label
11421
- htmlFor="ratings-4"
11422
- onMouseEnter={[Function]}
11423
- onMouseLeave={[Function]}
11641
+ htmlFor="undefined-blue"
11424
11642
  >
11425
- <span
11426
- className="f-icons c-dark-y"
11427
- >
11428
- [
11429
- </span>
11643
+ Color Blue
11430
11644
  </label>
11431
- <input
11432
- id="ratings-4"
11433
- name="ratings"
11434
- onBlur={[Function]}
11435
- onChange={[Function]}
11436
- type="radio"
11437
- value={4}
11438
- />
11439
11645
  </div>
11440
11646
  <div
11441
- className="base rating x-main1 y-background2"
11647
+ className="base choice"
11442
11648
  >
11443
- <label
11444
- htmlFor="ratings-5"
11445
- onMouseEnter={[Function]}
11446
- onMouseLeave={[Function]}
11447
- >
11448
- <span
11449
- className="f-icons c-dark-y"
11450
- >
11451
- [
11452
- </span>
11453
- </label>
11454
11649
  <input
11455
- id="ratings-5"
11456
- name="ratings"
11650
+ disabled={true}
11651
+ id="undefined-green"
11652
+ name="colors"
11457
11653
  onBlur={[Function]}
11458
11654
  onChange={[Function]}
11459
11655
  type="radio"
11460
- value={5}
11656
+ value="green"
11461
11657
  />
11658
+ <label
11659
+ htmlFor="undefined-green"
11660
+ >
11661
+ Color Green
11662
+ </label>
11462
11663
  </div>
11463
11664
  </div>
11464
11665
  </div>
11666
+ <div
11667
+ className="base select-input form-input y-background2"
11668
+ >
11669
+ <label
11670
+ className="base label x-main2"
11671
+ htmlFor="food"
11672
+ >
11673
+ What do you want for dinner ?
11674
+ </label>
11675
+ <div
11676
+ className="select-wrapper"
11677
+ >
11678
+ <select
11679
+ className="input"
11680
+ disabled={true}
11681
+ id="food"
11682
+ name="food"
11683
+ onBlur={[Function]}
11684
+ onChange={[Function]}
11685
+ value=""
11686
+ >
11687
+ <option
11688
+ disabled={false}
11689
+ value="italian"
11690
+ >
11691
+ A nice pizza
11692
+ </option>
11693
+ <option
11694
+ disabled={false}
11695
+ value="turkish"
11696
+ >
11697
+ A delicious kebab
11698
+ </option>
11699
+ <option
11700
+ disabled={false}
11701
+ value="french"
11702
+ >
11703
+ A three course delicate french meal
11704
+ </option>
11705
+ </select>
11706
+ </div>
11707
+ </div>
11465
11708
  <div
11466
11709
  className="debugger"
11467
11710
  >
@@ -11476,37 +11719,73 @@ exports[`Storyshots f/FormInput With Ratings Input 1`] = `
11476
11719
  </form>
11477
11720
  `;
11478
11721
 
11479
- exports[`Storyshots f/common/Description Base 1`] = `
11722
+ exports[`Storyshots f/FormInput Extensible Form Input 1`] = `
11480
11723
  <form
11481
11724
  action="#"
11482
11725
  onReset={[Function]}
11483
11726
  onSubmit={[Function]}
11484
11727
  >
11485
11728
  <div
11486
- className="base description x-metadata"
11729
+ className="base text-input form-input y-background2"
11487
11730
  >
11488
- Sample Description
11731
+ <label
11732
+ className="base label v50 mb-v x-main2"
11733
+ htmlFor="extended"
11734
+ >
11735
+ Extended type input
11736
+ </label>
11737
+ <input
11738
+ className="input"
11739
+ disabled={false}
11740
+ id="extended"
11741
+ name="extended"
11742
+ onBlur={[Function]}
11743
+ onChange={[Function]}
11744
+ type="text"
11745
+ />
11746
+ </div>
11747
+ <div
11748
+ className="debugger"
11749
+ >
11750
+ <button
11751
+ className="base button x-main2"
11752
+ onClick={[Function]}
11753
+ type="button"
11754
+ >
11755
+ Open FormDebugger
11756
+ </button>
11489
11757
  </div>
11490
11758
  </form>
11491
11759
  `;
11492
11760
 
11493
- exports[`Storyshots f/common/Label Base 1`] = `
11494
- <label
11495
- className="base label x-main2"
11496
- >
11497
- Sample Label
11498
- </label>
11499
- `;
11500
-
11501
- exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
11761
+ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11502
11762
  <form
11503
11763
  action="#"
11504
11764
  onReset={[Function]}
11505
11765
  onSubmit={[Function]}
11506
11766
  >
11507
11767
  <div
11508
- className="base choices-input x-background2 y-main2"
11509
- id="colors"
11768
+ className="base text-input form-input y-background2"
11769
+ >
11770
+ <label
11771
+ className="base label v50 mb-v x-main2"
11772
+ htmlFor="firstName"
11773
+ >
11774
+ What's your first name ?
11775
+ </label>
11776
+ <input
11777
+ className="input"
11778
+ disabled={false}
11779
+ id="firstName"
11780
+ name="firstName"
11781
+ onBlur={[Function]}
11782
+ onChange={[Function]}
11783
+ type="text"
11784
+ value="Test"
11785
+ />
11786
+ </div>
11787
+ <div
11788
+ className="base choices-input form-input x-background2 y-main2"
11510
11789
  style={
11511
11790
  Object {
11512
11791
  "--grid-columns-desktop": 3,
@@ -11514,6 +11793,11 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
11514
11793
  }
11515
11794
  }
11516
11795
  >
11796
+ <p
11797
+ className="base label x-main2"
11798
+ >
11799
+ What are your favourite colors ?
11800
+ </p>
11517
11801
  <div
11518
11802
  className="choices"
11519
11803
  >
@@ -11521,17 +11805,16 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
11521
11805
  className="base choice"
11522
11806
  >
11523
11807
  <input
11524
- checked={false}
11525
11808
  disabled={false}
11526
- id="color-red"
11527
- name="color"
11809
+ id="undefined-red"
11810
+ name="colors"
11528
11811
  onBlur={[Function]}
11529
11812
  onChange={[Function]}
11530
11813
  type="radio"
11531
11814
  value="red"
11532
11815
  />
11533
11816
  <label
11534
- htmlFor="color-red"
11817
+ htmlFor="undefined-red"
11535
11818
  >
11536
11819
  Color Red
11537
11820
  </label>
@@ -11540,17 +11823,16 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
11540
11823
  className="base choice"
11541
11824
  >
11542
11825
  <input
11543
- checked={false}
11544
11826
  disabled={false}
11545
- id="color-blue"
11546
- name="color"
11827
+ id="undefined-blue"
11828
+ name="colors"
11547
11829
  onBlur={[Function]}
11548
11830
  onChange={[Function]}
11549
11831
  type="radio"
11550
11832
  value="blue"
11551
11833
  />
11552
11834
  <label
11553
- htmlFor="color-blue"
11835
+ htmlFor="undefined-blue"
11554
11836
  >
11555
11837
  Color Blue
11556
11838
  </label>
@@ -11559,118 +11841,245 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
11559
11841
  className="base choice"
11560
11842
  >
11561
11843
  <input
11562
- checked={false}
11563
11844
  disabled={false}
11564
- id="color-green"
11565
- name="color"
11845
+ id="undefined-green"
11846
+ name="colors"
11566
11847
  onBlur={[Function]}
11567
11848
  onChange={[Function]}
11568
11849
  type="radio"
11569
11850
  value="green"
11570
11851
  />
11571
11852
  <label
11572
- htmlFor="color-green"
11853
+ htmlFor="undefined-green"
11573
11854
  >
11574
11855
  Color Green
11575
11856
  </label>
11576
11857
  </div>
11858
+ </div>
11859
+ </div>
11860
+ <div
11861
+ className="base select-input form-input y-background2"
11862
+ >
11863
+ <label
11864
+ className="base label x-main2"
11865
+ htmlFor="status"
11866
+ >
11867
+ Select Task Status
11868
+ </label>
11869
+ <div
11870
+ className="select-wrapper"
11871
+ >
11872
+ <select
11873
+ className="input"
11874
+ disabled={false}
11875
+ id="status"
11876
+ name="status"
11877
+ onBlur={[Function]}
11878
+ onChange={[Function]}
11879
+ value=""
11880
+ />
11881
+ </div>
11882
+ </div>
11883
+ <div
11884
+ className="debugger"
11885
+ >
11886
+ <button
11887
+ className="base button x-main2"
11888
+ onClick={[Function]}
11889
+ type="button"
11890
+ >
11891
+ Open FormDebugger
11892
+ </button>
11893
+ </div>
11894
+ </form>
11895
+ `;
11896
+
11897
+ exports[`Storyshots f/FormInput With Query Combobox 1`] = `
11898
+ <form
11899
+ action="#"
11900
+ onReset={[Function]}
11901
+ onSubmit={[Function]}
11902
+ >
11903
+ <div
11904
+ className="base text-input form-input y-background2"
11905
+ >
11906
+ <label
11907
+ className="base label v50 mb-v x-main2"
11908
+ htmlFor="firstName"
11909
+ >
11910
+ What's your first name ?
11911
+ </label>
11912
+ <input
11913
+ className="input"
11914
+ disabled={false}
11915
+ id="firstName"
11916
+ name="firstName"
11917
+ onBlur={[Function]}
11918
+ onChange={[Function]}
11919
+ type="text"
11920
+ value="Test"
11921
+ />
11922
+ </div>
11923
+ <div
11924
+ className="base choices-input form-input x-background2 y-main2"
11925
+ style={
11926
+ Object {
11927
+ "--grid-columns-desktop": 3,
11928
+ "--grid-columns-mobile": 2,
11929
+ }
11930
+ }
11931
+ >
11932
+ <p
11933
+ className="base label x-main2"
11934
+ >
11935
+ What are your favourite colors ?
11936
+ </p>
11937
+ <div
11938
+ className="choices"
11939
+ >
11577
11940
  <div
11578
11941
  className="base choice"
11579
11942
  >
11580
11943
  <input
11581
- checked={false}
11582
- disabled={false}
11583
- id="color-yellow"
11584
- name="color"
11585
- onBlur={[Function]}
11586
- onChange={[Function]}
11587
- type="radio"
11588
- value="yellow"
11589
- />
11590
- <label
11591
- htmlFor="color-yellow"
11592
- >
11593
- Color Yellow
11594
- </label>
11595
- </div>
11596
- <div
11597
- className="base choice"
11598
- >
11599
- <input
11600
- checked={false}
11601
- disabled={false}
11602
- id="color-oarnge"
11603
- name="color"
11604
- onBlur={[Function]}
11605
- onChange={[Function]}
11606
- type="radio"
11607
- value="oarnge"
11608
- />
11609
- <label
11610
- htmlFor="color-oarnge"
11611
- >
11612
- Color Orange
11613
- </label>
11614
- </div>
11615
- <div
11616
- className="base choice"
11617
- >
11618
- <input
11619
- checked={false}
11620
11944
  disabled={false}
11621
- id="color-violet"
11622
- name="color"
11945
+ id="undefined-red"
11946
+ name="colors"
11623
11947
  onBlur={[Function]}
11624
11948
  onChange={[Function]}
11625
11949
  type="radio"
11626
- value="violet"
11950
+ value="red"
11627
11951
  />
11628
11952
  <label
11629
- htmlFor="color-violet"
11953
+ htmlFor="undefined-red"
11630
11954
  >
11631
- Color Violet
11955
+ Color Red
11632
11956
  </label>
11633
11957
  </div>
11634
11958
  <div
11635
11959
  className="base choice"
11636
11960
  >
11637
11961
  <input
11638
- checked={false}
11639
11962
  disabled={false}
11640
- id="color-brown"
11641
- name="color"
11963
+ id="undefined-blue"
11964
+ name="colors"
11642
11965
  onBlur={[Function]}
11643
11966
  onChange={[Function]}
11644
11967
  type="radio"
11645
- value="brown"
11968
+ value="blue"
11646
11969
  />
11647
11970
  <label
11648
- htmlFor="color-brown"
11971
+ htmlFor="undefined-blue"
11649
11972
  >
11650
- Color Brown
11973
+ Color Blue
11651
11974
  </label>
11652
11975
  </div>
11653
11976
  <div
11654
11977
  className="base choice"
11655
11978
  >
11656
11979
  <input
11657
- checked={false}
11658
11980
  disabled={false}
11659
- id="color-black"
11660
- name="color"
11981
+ id="undefined-green"
11982
+ name="colors"
11661
11983
  onBlur={[Function]}
11662
11984
  onChange={[Function]}
11663
11985
  type="radio"
11664
- value="black"
11986
+ value="green"
11665
11987
  />
11666
11988
  <label
11667
- htmlFor="color-black"
11989
+ htmlFor="undefined-green"
11668
11990
  >
11669
- Color Black
11991
+ Color Green
11670
11992
  </label>
11671
11993
  </div>
11672
11994
  </div>
11673
11995
  </div>
11996
+ <div
11997
+ className="base combobox form-input y-background2"
11998
+ >
11999
+ <label
12000
+ className="base label x-main2"
12001
+ htmlFor="team"
12002
+ id="downshift-0-label"
12003
+ >
12004
+ Search for a team
12005
+ </label>
12006
+ <div
12007
+ aria-expanded={false}
12008
+ aria-haspopup="listbox"
12009
+ aria-owns="downshift-0-menu"
12010
+ className="input-wrapper"
12011
+ role="combobox"
12012
+ >
12013
+ <input
12014
+ aria-autocomplete="list"
12015
+ aria-controls="downshift-0-menu"
12016
+ aria-labelledby="downshift-0-label"
12017
+ autoComplete="off"
12018
+ className="input"
12019
+ disabled={false}
12020
+ id="downshift-0-input"
12021
+ onBlur={[Function]}
12022
+ onChange={[Function]}
12023
+ onKeyDown={[Function]}
12024
+ value=""
12025
+ />
12026
+ </div>
12027
+ <div
12028
+ className="base popover x-background1 bottom left"
12029
+ >
12030
+ <ul
12031
+ aria-labelledby="downshift-0-label"
12032
+ className="base menu"
12033
+ id="downshift-0-menu"
12034
+ onMouseLeave={[Function]}
12035
+ role="listbox"
12036
+ />
12037
+ </div>
12038
+ </div>
12039
+ <div
12040
+ className="base multiple-combobox form-input y-background2"
12041
+ >
12042
+ <label
12043
+ className="base label x-main2"
12044
+ htmlFor="teams"
12045
+ id="downshift-1-label"
12046
+ >
12047
+ Search for teams
12048
+ </label>
12049
+ <div
12050
+ aria-expanded={false}
12051
+ aria-haspopup="listbox"
12052
+ aria-owns="downshift-1-menu"
12053
+ className="input-wrapper"
12054
+ role="combobox"
12055
+ >
12056
+ <input
12057
+ aria-autocomplete="list"
12058
+ aria-controls="downshift-1-menu"
12059
+ aria-labelledby="downshift-1-label"
12060
+ autoComplete="off"
12061
+ className="input"
12062
+ disabled={false}
12063
+ id="downshift-1-input"
12064
+ onBlur={[Function]}
12065
+ onChange={[Function]}
12066
+ onClick={[Function]}
12067
+ onKeyDown={[Function]}
12068
+ value=""
12069
+ />
12070
+ </div>
12071
+ <div
12072
+ className="base popover x-background1 bottom left"
12073
+ >
12074
+ <ul
12075
+ aria-labelledby="downshift-1-label"
12076
+ className="base menu"
12077
+ id="downshift-1-menu"
12078
+ onMouseLeave={[Function]}
12079
+ role="listbox"
12080
+ />
12081
+ </div>
12082
+ </div>
11674
12083
  <div
11675
12084
  className="debugger"
11676
12085
  >
@@ -11685,181 +12094,158 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
11685
12094
  </form>
11686
12095
  `;
11687
12096
 
11688
- exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12097
+ exports[`Storyshots f/FormInput With Ratings Input 1`] = `
11689
12098
  <form
11690
12099
  action="#"
11691
12100
  onReset={[Function]}
11692
12101
  onSubmit={[Function]}
11693
12102
  >
11694
12103
  <div
11695
- className="base choices-input x-background2 y-main2"
11696
- id="colors"
11697
- style={
11698
- Object {
11699
- "--grid-columns-desktop": 3,
11700
- "--grid-columns-mobile": 2,
11701
- }
11702
- }
12104
+ className="base text-input form-input y-background2"
12105
+ >
12106
+ <label
12107
+ className="base label v50 mb-v x-main2"
12108
+ htmlFor="firstName"
12109
+ >
12110
+ What's your first name ?
12111
+ </label>
12112
+ <input
12113
+ className="input"
12114
+ disabled={false}
12115
+ id="firstName"
12116
+ name="firstName"
12117
+ onBlur={[Function]}
12118
+ onChange={[Function]}
12119
+ type="text"
12120
+ value="Test"
12121
+ />
12122
+ </div>
12123
+ <div
12124
+ className="base ratings-input form-input"
11703
12125
  >
11704
- <p
11705
- className="base label x-main2"
12126
+ <label
12127
+ className="base label input-label v50 mb-v x-main2"
12128
+ htmlFor="ratings"
11706
12129
  >
11707
- Select color
11708
- </p>
12130
+ Your Rating
12131
+ </label>
11709
12132
  <div
11710
- className="choices"
12133
+ className="stars"
11711
12134
  >
11712
12135
  <div
11713
- className="base choice"
12136
+ className="base rating x-main1 y-background2"
11714
12137
  >
11715
- <input
11716
- checked={false}
11717
- disabled={false}
11718
- id="color-red"
11719
- name="color"
11720
- onBlur={[Function]}
11721
- onChange={[Function]}
11722
- type="radio"
11723
- value="red"
11724
- />
11725
12138
  <label
11726
- htmlFor="color-red"
12139
+ htmlFor="ratings-1"
12140
+ onMouseEnter={[Function]}
12141
+ onMouseLeave={[Function]}
11727
12142
  >
11728
- Color Red
12143
+ <span
12144
+ className="f-icons c-dark-y"
12145
+ >
12146
+ [
12147
+ </span>
11729
12148
  </label>
11730
- </div>
11731
- <div
11732
- className="base choice"
11733
- >
11734
12149
  <input
11735
- checked={false}
11736
- disabled={false}
11737
- id="color-blue"
11738
- name="color"
12150
+ id="ratings-1"
12151
+ name="ratings"
11739
12152
  onBlur={[Function]}
11740
12153
  onChange={[Function]}
11741
12154
  type="radio"
11742
- value="blue"
12155
+ value={1}
11743
12156
  />
11744
- <label
11745
- htmlFor="color-blue"
11746
- >
11747
- Color Blue
11748
- </label>
11749
12157
  </div>
11750
12158
  <div
11751
- className="base choice"
12159
+ className="base rating x-main1 y-background2"
11752
12160
  >
11753
- <input
11754
- checked={false}
11755
- disabled={false}
11756
- id="color-green"
11757
- name="color"
11758
- onBlur={[Function]}
11759
- onChange={[Function]}
11760
- type="radio"
11761
- value="green"
11762
- />
11763
12161
  <label
11764
- htmlFor="color-green"
12162
+ htmlFor="ratings-2"
12163
+ onMouseEnter={[Function]}
12164
+ onMouseLeave={[Function]}
11765
12165
  >
11766
- Color Green
12166
+ <span
12167
+ className="f-icons c-dark-y"
12168
+ >
12169
+ [
12170
+ </span>
11767
12171
  </label>
11768
- </div>
11769
- <div
11770
- className="base choice"
11771
- >
11772
12172
  <input
11773
- checked={false}
11774
- disabled={false}
11775
- id="color-yellow"
11776
- name="color"
12173
+ id="ratings-2"
12174
+ name="ratings"
11777
12175
  onBlur={[Function]}
11778
12176
  onChange={[Function]}
11779
12177
  type="radio"
11780
- value="yellow"
12178
+ value={2}
11781
12179
  />
11782
- <label
11783
- htmlFor="color-yellow"
11784
- >
11785
- Color Yellow
11786
- </label>
11787
12180
  </div>
11788
12181
  <div
11789
- className="base choice"
12182
+ className="base rating x-main1 y-background2"
11790
12183
  >
11791
- <input
11792
- checked={false}
11793
- disabled={false}
11794
- id="color-oarnge"
11795
- name="color"
11796
- onBlur={[Function]}
11797
- onChange={[Function]}
11798
- type="radio"
11799
- value="oarnge"
11800
- />
11801
12184
  <label
11802
- htmlFor="color-oarnge"
12185
+ htmlFor="ratings-3"
12186
+ onMouseEnter={[Function]}
12187
+ onMouseLeave={[Function]}
11803
12188
  >
11804
- Color Orange
12189
+ <span
12190
+ className="f-icons c-dark-y"
12191
+ >
12192
+ [
12193
+ </span>
11805
12194
  </label>
11806
- </div>
11807
- <div
11808
- className="base choice"
11809
- >
11810
12195
  <input
11811
- checked={false}
11812
- disabled={false}
11813
- id="color-violet"
11814
- name="color"
12196
+ id="ratings-3"
12197
+ name="ratings"
11815
12198
  onBlur={[Function]}
11816
12199
  onChange={[Function]}
11817
12200
  type="radio"
11818
- value="violet"
12201
+ value={3}
11819
12202
  />
11820
- <label
11821
- htmlFor="color-violet"
11822
- >
11823
- Color Violet
11824
- </label>
11825
12203
  </div>
11826
12204
  <div
11827
- className="base choice"
12205
+ className="base rating x-main1 y-background2"
11828
12206
  >
12207
+ <label
12208
+ htmlFor="ratings-4"
12209
+ onMouseEnter={[Function]}
12210
+ onMouseLeave={[Function]}
12211
+ >
12212
+ <span
12213
+ className="f-icons c-dark-y"
12214
+ >
12215
+ [
12216
+ </span>
12217
+ </label>
11829
12218
  <input
11830
- checked={false}
11831
- disabled={false}
11832
- id="color-brown"
11833
- name="color"
12219
+ id="ratings-4"
12220
+ name="ratings"
11834
12221
  onBlur={[Function]}
11835
12222
  onChange={[Function]}
11836
12223
  type="radio"
11837
- value="brown"
12224
+ value={4}
11838
12225
  />
11839
- <label
11840
- htmlFor="color-brown"
11841
- >
11842
- Color Brown
11843
- </label>
11844
12226
  </div>
11845
12227
  <div
11846
- className="base choice"
12228
+ className="base rating x-main1 y-background2"
11847
12229
  >
12230
+ <label
12231
+ htmlFor="ratings-5"
12232
+ onMouseEnter={[Function]}
12233
+ onMouseLeave={[Function]}
12234
+ >
12235
+ <span
12236
+ className="f-icons c-dark-y"
12237
+ >
12238
+ [
12239
+ </span>
12240
+ </label>
11848
12241
  <input
11849
- checked={false}
11850
- disabled={false}
11851
- id="color-black"
11852
- name="color"
12242
+ id="ratings-5"
12243
+ name="ratings"
11853
12244
  onBlur={[Function]}
11854
12245
  onChange={[Function]}
11855
12246
  type="radio"
11856
- value="black"
12247
+ value={5}
11857
12248
  />
11858
- <label
11859
- htmlFor="color-black"
11860
- >
11861
- Color Black
11862
- </label>
11863
12249
  </div>
11864
12250
  </div>
11865
12251
  </div>
@@ -11877,7 +12263,244 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
11877
12263
  </form>
11878
12264
  `;
11879
12265
 
11880
- exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12266
+ exports[`Storyshots f/common/Description Base 1`] = `
12267
+ <form
12268
+ action="#"
12269
+ onReset={[Function]}
12270
+ onSubmit={[Function]}
12271
+ >
12272
+ <div
12273
+ className="base description x-metadata"
12274
+ >
12275
+ Sample Description
12276
+ </div>
12277
+ </form>
12278
+ `;
12279
+
12280
+ exports[`Storyshots f/common/Label Base 1`] = `
12281
+ <label
12282
+ className="base label x-main2"
12283
+ >
12284
+ Sample Label
12285
+ </label>
12286
+ `;
12287
+
12288
+ exports[`Storyshots f/fields/Checkbox Base 1`] = `
12289
+ <form
12290
+ action="#"
12291
+ onReset={[Function]}
12292
+ onSubmit={[Function]}
12293
+ >
12294
+ <div
12295
+ className="base checkbox"
12296
+ >
12297
+ <input
12298
+ checked={false}
12299
+ className="input"
12300
+ disabled={false}
12301
+ id="urgent"
12302
+ name="urgent"
12303
+ onBlur={[Function]}
12304
+ onChange={[Function]}
12305
+ type="checkbox"
12306
+ />
12307
+ </div>
12308
+ <div
12309
+ className="debugger"
12310
+ >
12311
+ <button
12312
+ className="base button x-main2"
12313
+ onClick={[Function]}
12314
+ type="button"
12315
+ >
12316
+ Open FormDebugger
12317
+ </button>
12318
+ </div>
12319
+ </form>
12320
+ `;
12321
+
12322
+ exports[`Storyshots f/fields/Checkbox Disabled 1`] = `
12323
+ <form
12324
+ action="#"
12325
+ onReset={[Function]}
12326
+ onSubmit={[Function]}
12327
+ >
12328
+ <div
12329
+ className="base checkbox"
12330
+ >
12331
+ <input
12332
+ checked={false}
12333
+ className="input"
12334
+ disabled={true}
12335
+ id="urgent"
12336
+ name="urgent"
12337
+ onBlur={[Function]}
12338
+ onChange={[Function]}
12339
+ type="checkbox"
12340
+ />
12341
+ </div>
12342
+ <div
12343
+ className="debugger"
12344
+ >
12345
+ <button
12346
+ className="base button x-main2"
12347
+ onClick={[Function]}
12348
+ type="button"
12349
+ >
12350
+ Open FormDebugger
12351
+ </button>
12352
+ </div>
12353
+ </form>
12354
+ `;
12355
+
12356
+ exports[`Storyshots f/fields/Checkbox Optional 1`] = `
12357
+ <form
12358
+ action="#"
12359
+ onReset={[Function]}
12360
+ onSubmit={[Function]}
12361
+ >
12362
+ <div
12363
+ className="base checkbox"
12364
+ >
12365
+ <input
12366
+ checked={false}
12367
+ className="input"
12368
+ disabled={false}
12369
+ id="urgent"
12370
+ name="urgent"
12371
+ onBlur={[Function]}
12372
+ onChange={[Function]}
12373
+ type="checkbox"
12374
+ />
12375
+ </div>
12376
+ <div
12377
+ className="debugger"
12378
+ >
12379
+ <button
12380
+ className="base button x-main2"
12381
+ onClick={[Function]}
12382
+ type="button"
12383
+ >
12384
+ Open FormDebugger
12385
+ </button>
12386
+ </div>
12387
+ </form>
12388
+ `;
12389
+
12390
+ exports[`Storyshots f/fields/Checkbox With Default Formik Value 1`] = `
12391
+ <form
12392
+ action="#"
12393
+ onReset={[Function]}
12394
+ onSubmit={[Function]}
12395
+ >
12396
+ <div
12397
+ className="base checkbox"
12398
+ >
12399
+ <input
12400
+ checked={false}
12401
+ className="input"
12402
+ disabled={false}
12403
+ id="urgent"
12404
+ name="urgent"
12405
+ onBlur={[Function]}
12406
+ onChange={[Function]}
12407
+ type="checkbox"
12408
+ />
12409
+ </div>
12410
+ <div
12411
+ className="debugger"
12412
+ >
12413
+ <button
12414
+ className="base button x-main2"
12415
+ onClick={[Function]}
12416
+ type="button"
12417
+ >
12418
+ Open FormDebugger
12419
+ </button>
12420
+ </div>
12421
+ </form>
12422
+ `;
12423
+
12424
+ exports[`Storyshots f/fields/Checkbox With Description 1`] = `
12425
+ <form
12426
+ action="#"
12427
+ onReset={[Function]}
12428
+ onSubmit={[Function]}
12429
+ >
12430
+ <div
12431
+ className="base checkbox"
12432
+ >
12433
+ <input
12434
+ checked={false}
12435
+ className="input"
12436
+ disabled={false}
12437
+ id="urgent"
12438
+ name="urgent"
12439
+ onBlur={[Function]}
12440
+ onChange={[Function]}
12441
+ type="checkbox"
12442
+ />
12443
+ <div
12444
+ className="base description v50 mt-v s-1 x-metadata"
12445
+ >
12446
+ Click on the checkbox
12447
+ </div>
12448
+ </div>
12449
+ <div
12450
+ className="debugger"
12451
+ >
12452
+ <button
12453
+ className="base button x-main2"
12454
+ onClick={[Function]}
12455
+ type="button"
12456
+ >
12457
+ Open FormDebugger
12458
+ </button>
12459
+ </div>
12460
+ </form>
12461
+ `;
12462
+
12463
+ exports[`Storyshots f/fields/Checkbox With Label 1`] = `
12464
+ <form
12465
+ action="#"
12466
+ onReset={[Function]}
12467
+ onSubmit={[Function]}
12468
+ >
12469
+ <div
12470
+ className="base checkbox"
12471
+ >
12472
+ <label
12473
+ className="base label x-main2"
12474
+ htmlFor="urgent"
12475
+ >
12476
+ Urgent
12477
+ </label>
12478
+ <input
12479
+ checked={false}
12480
+ className="input"
12481
+ disabled={false}
12482
+ id="urgent"
12483
+ name="urgent"
12484
+ onBlur={[Function]}
12485
+ onChange={[Function]}
12486
+ type="checkbox"
12487
+ />
12488
+ </div>
12489
+ <div
12490
+ className="debugger"
12491
+ >
12492
+ <button
12493
+ className="base button x-main2"
12494
+ onClick={[Function]}
12495
+ type="button"
12496
+ >
12497
+ Open FormDebugger
12498
+ </button>
12499
+ </div>
12500
+ </form>
12501
+ `;
12502
+
12503
+ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
11881
12504
  <form
11882
12505
  action="#"
11883
12506
  onReset={[Function]}
@@ -11893,11 +12516,6 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
11893
12516
  }
11894
12517
  }
11895
12518
  >
11896
- <p
11897
- className="base label x-main2"
11898
- >
11899
- Select color
11900
- </p>
11901
12519
  <div
11902
12520
  className="choices"
11903
12521
  >
@@ -11905,9 +12523,8 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
11905
12523
  className="base choice"
11906
12524
  >
11907
12525
  <input
11908
- checked={false}
11909
- disabled={true}
11910
- id="color-red"
12526
+ disabled={false}
12527
+ id="colors-red"
11911
12528
  name="color"
11912
12529
  onBlur={[Function]}
11913
12530
  onChange={[Function]}
@@ -11915,7 +12532,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
11915
12532
  value="red"
11916
12533
  />
11917
12534
  <label
11918
- htmlFor="color-red"
12535
+ htmlFor="colors-red"
11919
12536
  >
11920
12537
  Color Red
11921
12538
  </label>
@@ -11924,9 +12541,8 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
11924
12541
  className="base choice"
11925
12542
  >
11926
12543
  <input
11927
- checked={false}
11928
- disabled={true}
11929
- id="color-blue"
12544
+ disabled={false}
12545
+ id="colors-blue"
11930
12546
  name="color"
11931
12547
  onBlur={[Function]}
11932
12548
  onChange={[Function]}
@@ -11934,7 +12550,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
11934
12550
  value="blue"
11935
12551
  />
11936
12552
  <label
11937
- htmlFor="color-blue"
12553
+ htmlFor="colors-blue"
11938
12554
  >
11939
12555
  Color Blue
11940
12556
  </label>
@@ -11943,9 +12559,8 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
11943
12559
  className="base choice"
11944
12560
  >
11945
12561
  <input
11946
- checked={false}
11947
- disabled={true}
11948
- id="color-green"
12562
+ disabled={false}
12563
+ id="colors-green"
11949
12564
  name="color"
11950
12565
  onBlur={[Function]}
11951
12566
  onChange={[Function]}
@@ -11953,7 +12568,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
11953
12568
  value="green"
11954
12569
  />
11955
12570
  <label
11956
- htmlFor="color-green"
12571
+ htmlFor="colors-green"
11957
12572
  >
11958
12573
  Color Green
11959
12574
  </label>
@@ -11962,9 +12577,8 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
11962
12577
  className="base choice"
11963
12578
  >
11964
12579
  <input
11965
- checked={false}
11966
- disabled={true}
11967
- id="color-yellow"
12580
+ disabled={false}
12581
+ id="colors-yellow"
11968
12582
  name="color"
11969
12583
  onBlur={[Function]}
11970
12584
  onChange={[Function]}
@@ -11972,7 +12586,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
11972
12586
  value="yellow"
11973
12587
  />
11974
12588
  <label
11975
- htmlFor="color-yellow"
12589
+ htmlFor="colors-yellow"
11976
12590
  >
11977
12591
  Color Yellow
11978
12592
  </label>
@@ -11981,9 +12595,8 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
11981
12595
  className="base choice"
11982
12596
  >
11983
12597
  <input
11984
- checked={false}
11985
- disabled={true}
11986
- id="color-oarnge"
12598
+ disabled={false}
12599
+ id="colors-oarnge"
11987
12600
  name="color"
11988
12601
  onBlur={[Function]}
11989
12602
  onChange={[Function]}
@@ -11991,7 +12604,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
11991
12604
  value="oarnge"
11992
12605
  />
11993
12606
  <label
11994
- htmlFor="color-oarnge"
12607
+ htmlFor="colors-oarnge"
11995
12608
  >
11996
12609
  Color Orange
11997
12610
  </label>
@@ -12000,9 +12613,8 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12000
12613
  className="base choice"
12001
12614
  >
12002
12615
  <input
12003
- checked={false}
12004
- disabled={true}
12005
- id="color-violet"
12616
+ disabled={false}
12617
+ id="colors-violet"
12006
12618
  name="color"
12007
12619
  onBlur={[Function]}
12008
12620
  onChange={[Function]}
@@ -12010,7 +12622,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12010
12622
  value="violet"
12011
12623
  />
12012
12624
  <label
12013
- htmlFor="color-violet"
12625
+ htmlFor="colors-violet"
12014
12626
  >
12015
12627
  Color Violet
12016
12628
  </label>
@@ -12019,9 +12631,8 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12019
12631
  className="base choice"
12020
12632
  >
12021
12633
  <input
12022
- checked={false}
12023
- disabled={true}
12024
- id="color-brown"
12634
+ disabled={false}
12635
+ id="colors-brown"
12025
12636
  name="color"
12026
12637
  onBlur={[Function]}
12027
12638
  onChange={[Function]}
@@ -12029,7 +12640,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12029
12640
  value="brown"
12030
12641
  />
12031
12642
  <label
12032
- htmlFor="color-brown"
12643
+ htmlFor="colors-brown"
12033
12644
  >
12034
12645
  Color Brown
12035
12646
  </label>
@@ -12038,9 +12649,8 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12038
12649
  className="base choice"
12039
12650
  >
12040
12651
  <input
12041
- checked={false}
12042
- disabled={true}
12043
- id="color-black"
12652
+ disabled={false}
12653
+ id="colors-black"
12044
12654
  name="color"
12045
12655
  onBlur={[Function]}
12046
12656
  onChange={[Function]}
@@ -12048,7 +12658,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12048
12658
  value="black"
12049
12659
  />
12050
12660
  <label
12051
- htmlFor="color-black"
12661
+ htmlFor="colors-black"
12052
12662
  >
12053
12663
  Color Black
12054
12664
  </label>
@@ -12069,14 +12679,14 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12069
12679
  </form>
12070
12680
  `;
12071
12681
 
12072
- exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
12682
+ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12073
12683
  <form
12074
12684
  action="#"
12075
12685
  onReset={[Function]}
12076
12686
  onSubmit={[Function]}
12077
12687
  >
12078
12688
  <div
12079
- className="base choices-input multiple x-background2 y-main2"
12689
+ className="base choices-input x-background2 y-main2"
12080
12690
  id="colors"
12081
12691
  style={
12082
12692
  Object {
@@ -12085,6 +12695,11 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
12085
12695
  }
12086
12696
  }
12087
12697
  >
12698
+ <p
12699
+ className="base label x-main2"
12700
+ >
12701
+ Select color
12702
+ </p>
12088
12703
  <div
12089
12704
  className="choices"
12090
12705
  >
@@ -12092,17 +12707,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
12092
12707
  className="base choice"
12093
12708
  >
12094
12709
  <input
12095
- checked={false}
12096
12710
  disabled={false}
12097
- id="color-red"
12711
+ id="colors-red"
12098
12712
  name="color"
12099
12713
  onBlur={[Function]}
12100
12714
  onChange={[Function]}
12101
- type="checkbox"
12715
+ type="radio"
12102
12716
  value="red"
12103
12717
  />
12104
12718
  <label
12105
- htmlFor="color-red"
12719
+ htmlFor="colors-red"
12106
12720
  >
12107
12721
  Color Red
12108
12722
  </label>
@@ -12111,17 +12725,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
12111
12725
  className="base choice"
12112
12726
  >
12113
12727
  <input
12114
- checked={false}
12115
12728
  disabled={false}
12116
- id="color-blue"
12729
+ id="colors-blue"
12117
12730
  name="color"
12118
12731
  onBlur={[Function]}
12119
12732
  onChange={[Function]}
12120
- type="checkbox"
12733
+ type="radio"
12121
12734
  value="blue"
12122
12735
  />
12123
12736
  <label
12124
- htmlFor="color-blue"
12737
+ htmlFor="colors-blue"
12125
12738
  >
12126
12739
  Color Blue
12127
12740
  </label>
@@ -12130,17 +12743,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
12130
12743
  className="base choice"
12131
12744
  >
12132
12745
  <input
12133
- checked={false}
12134
12746
  disabled={false}
12135
- id="color-green"
12747
+ id="colors-green"
12136
12748
  name="color"
12137
12749
  onBlur={[Function]}
12138
12750
  onChange={[Function]}
12139
- type="checkbox"
12751
+ type="radio"
12140
12752
  value="green"
12141
12753
  />
12142
12754
  <label
12143
- htmlFor="color-green"
12755
+ htmlFor="colors-green"
12144
12756
  >
12145
12757
  Color Green
12146
12758
  </label>
@@ -12149,17 +12761,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
12149
12761
  className="base choice"
12150
12762
  >
12151
12763
  <input
12152
- checked={false}
12153
12764
  disabled={false}
12154
- id="color-yellow"
12765
+ id="colors-yellow"
12155
12766
  name="color"
12156
12767
  onBlur={[Function]}
12157
12768
  onChange={[Function]}
12158
- type="checkbox"
12769
+ type="radio"
12159
12770
  value="yellow"
12160
12771
  />
12161
12772
  <label
12162
- htmlFor="color-yellow"
12773
+ htmlFor="colors-yellow"
12163
12774
  >
12164
12775
  Color Yellow
12165
12776
  </label>
@@ -12168,17 +12779,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
12168
12779
  className="base choice"
12169
12780
  >
12170
12781
  <input
12171
- checked={false}
12172
12782
  disabled={false}
12173
- id="color-oarnge"
12783
+ id="colors-oarnge"
12174
12784
  name="color"
12175
12785
  onBlur={[Function]}
12176
12786
  onChange={[Function]}
12177
- type="checkbox"
12787
+ type="radio"
12178
12788
  value="oarnge"
12179
12789
  />
12180
12790
  <label
12181
- htmlFor="color-oarnge"
12791
+ htmlFor="colors-oarnge"
12182
12792
  >
12183
12793
  Color Orange
12184
12794
  </label>
@@ -12187,17 +12797,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
12187
12797
  className="base choice"
12188
12798
  >
12189
12799
  <input
12190
- checked={false}
12191
12800
  disabled={false}
12192
- id="color-violet"
12801
+ id="colors-violet"
12193
12802
  name="color"
12194
12803
  onBlur={[Function]}
12195
12804
  onChange={[Function]}
12196
- type="checkbox"
12805
+ type="radio"
12197
12806
  value="violet"
12198
12807
  />
12199
12808
  <label
12200
- htmlFor="color-violet"
12809
+ htmlFor="colors-violet"
12201
12810
  >
12202
12811
  Color Violet
12203
12812
  </label>
@@ -12206,17 +12815,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
12206
12815
  className="base choice"
12207
12816
  >
12208
12817
  <input
12209
- checked={false}
12210
12818
  disabled={false}
12211
- id="color-brown"
12819
+ id="colors-brown"
12212
12820
  name="color"
12213
12821
  onBlur={[Function]}
12214
12822
  onChange={[Function]}
12215
- type="checkbox"
12823
+ type="radio"
12216
12824
  value="brown"
12217
12825
  />
12218
12826
  <label
12219
- htmlFor="color-brown"
12827
+ htmlFor="colors-brown"
12220
12828
  >
12221
12829
  Color Brown
12222
12830
  </label>
@@ -12225,17 +12833,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
12225
12833
  className="base choice"
12226
12834
  >
12227
12835
  <input
12228
- checked={false}
12229
12836
  disabled={false}
12230
- id="color-black"
12837
+ id="colors-black"
12231
12838
  name="color"
12232
12839
  onBlur={[Function]}
12233
12840
  onChange={[Function]}
12234
- type="checkbox"
12841
+ type="radio"
12235
12842
  value="black"
12236
12843
  />
12237
12844
  <label
12238
- htmlFor="color-black"
12845
+ htmlFor="colors-black"
12239
12846
  >
12240
12847
  Color Black
12241
12848
  </label>
@@ -12256,14 +12863,14 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
12256
12863
  </form>
12257
12864
  `;
12258
12865
 
12259
- exports[`Storyshots f/fields/ChoicesInput Multiple With Default Formik Value 1`] = `
12866
+ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12260
12867
  <form
12261
12868
  action="#"
12262
12869
  onReset={[Function]}
12263
12870
  onSubmit={[Function]}
12264
12871
  >
12265
12872
  <div
12266
- className="base choices-input multiple x-background2 y-main2"
12873
+ className="base choices-input x-background2 y-main2"
12267
12874
  id="colors"
12268
12875
  style={
12269
12876
  Object {
@@ -12272,6 +12879,11 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Default Formik Value 1`]
12272
12879
  }
12273
12880
  }
12274
12881
  >
12882
+ <p
12883
+ className="base label x-main2"
12884
+ >
12885
+ Select color
12886
+ </p>
12275
12887
  <div
12276
12888
  className="choices"
12277
12889
  >
@@ -12279,17 +12891,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Default Formik Value 1`]
12279
12891
  className="base choice"
12280
12892
  >
12281
12893
  <input
12282
- checked={false}
12283
- disabled={false}
12284
- id="color-red"
12894
+ disabled={true}
12895
+ id="colors-red"
12285
12896
  name="color"
12286
12897
  onBlur={[Function]}
12287
12898
  onChange={[Function]}
12288
- type="checkbox"
12899
+ type="radio"
12289
12900
  value="red"
12290
12901
  />
12291
12902
  <label
12292
- htmlFor="color-red"
12903
+ htmlFor="colors-red"
12293
12904
  >
12294
12905
  Color Red
12295
12906
  </label>
@@ -12298,17 +12909,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Default Formik Value 1`]
12298
12909
  className="base choice"
12299
12910
  >
12300
12911
  <input
12301
- checked={false}
12302
- disabled={false}
12303
- id="color-blue"
12912
+ disabled={true}
12913
+ id="colors-blue"
12304
12914
  name="color"
12305
12915
  onBlur={[Function]}
12306
12916
  onChange={[Function]}
12307
- type="checkbox"
12917
+ type="radio"
12308
12918
  value="blue"
12309
12919
  />
12310
12920
  <label
12311
- htmlFor="color-blue"
12921
+ htmlFor="colors-blue"
12312
12922
  >
12313
12923
  Color Blue
12314
12924
  </label>
@@ -12317,17 +12927,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Default Formik Value 1`]
12317
12927
  className="base choice"
12318
12928
  >
12319
12929
  <input
12320
- checked={false}
12321
- disabled={false}
12322
- id="color-green"
12930
+ disabled={true}
12931
+ id="colors-green"
12323
12932
  name="color"
12324
12933
  onBlur={[Function]}
12325
12934
  onChange={[Function]}
12326
- type="checkbox"
12935
+ type="radio"
12327
12936
  value="green"
12328
12937
  />
12329
12938
  <label
12330
- htmlFor="color-green"
12939
+ htmlFor="colors-green"
12331
12940
  >
12332
12941
  Color Green
12333
12942
  </label>
@@ -12336,17 +12945,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Default Formik Value 1`]
12336
12945
  className="base choice"
12337
12946
  >
12338
12947
  <input
12339
- checked={false}
12340
- disabled={false}
12341
- id="color-yellow"
12948
+ disabled={true}
12949
+ id="colors-yellow"
12342
12950
  name="color"
12343
12951
  onBlur={[Function]}
12344
12952
  onChange={[Function]}
12345
- type="checkbox"
12953
+ type="radio"
12346
12954
  value="yellow"
12347
12955
  />
12348
12956
  <label
12349
- htmlFor="color-yellow"
12957
+ htmlFor="colors-yellow"
12350
12958
  >
12351
12959
  Color Yellow
12352
12960
  </label>
@@ -12355,17 +12963,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Default Formik Value 1`]
12355
12963
  className="base choice"
12356
12964
  >
12357
12965
  <input
12358
- checked={false}
12359
- disabled={false}
12360
- id="color-oarnge"
12966
+ disabled={true}
12967
+ id="colors-oarnge"
12361
12968
  name="color"
12362
12969
  onBlur={[Function]}
12363
12970
  onChange={[Function]}
12364
- type="checkbox"
12971
+ type="radio"
12365
12972
  value="oarnge"
12366
12973
  />
12367
12974
  <label
12368
- htmlFor="color-oarnge"
12975
+ htmlFor="colors-oarnge"
12369
12976
  >
12370
12977
  Color Orange
12371
12978
  </label>
@@ -12374,17 +12981,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Default Formik Value 1`]
12374
12981
  className="base choice"
12375
12982
  >
12376
12983
  <input
12377
- checked={false}
12378
- disabled={false}
12379
- id="color-violet"
12984
+ disabled={true}
12985
+ id="colors-violet"
12380
12986
  name="color"
12381
12987
  onBlur={[Function]}
12382
12988
  onChange={[Function]}
12383
- type="checkbox"
12989
+ type="radio"
12384
12990
  value="violet"
12385
12991
  />
12386
12992
  <label
12387
- htmlFor="color-violet"
12993
+ htmlFor="colors-violet"
12388
12994
  >
12389
12995
  Color Violet
12390
12996
  </label>
@@ -12393,17 +12999,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Default Formik Value 1`]
12393
12999
  className="base choice"
12394
13000
  >
12395
13001
  <input
12396
- checked={false}
12397
- disabled={false}
12398
- id="color-brown"
13002
+ disabled={true}
13003
+ id="colors-brown"
12399
13004
  name="color"
12400
13005
  onBlur={[Function]}
12401
13006
  onChange={[Function]}
12402
- type="checkbox"
13007
+ type="radio"
12403
13008
  value="brown"
12404
13009
  />
12405
13010
  <label
12406
- htmlFor="color-brown"
13011
+ htmlFor="colors-brown"
12407
13012
  >
12408
13013
  Color Brown
12409
13014
  </label>
@@ -12412,17 +13017,16 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Default Formik Value 1`]
12412
13017
  className="base choice"
12413
13018
  >
12414
13019
  <input
12415
- checked={false}
12416
- disabled={false}
12417
- id="color-black"
13020
+ disabled={true}
13021
+ id="colors-black"
12418
13022
  name="color"
12419
13023
  onBlur={[Function]}
12420
13024
  onChange={[Function]}
12421
- type="checkbox"
13025
+ type="radio"
12422
13026
  value="black"
12423
13027
  />
12424
13028
  <label
12425
- htmlFor="color-black"
13029
+ htmlFor="colors-black"
12426
13030
  >
12427
13031
  Color Black
12428
13032
  </label>
@@ -12443,7 +13047,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Default Formik Value 1`]
12443
13047
  </form>
12444
13048
  `;
12445
13049
 
12446
- exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13050
+ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
12447
13051
  <form
12448
13052
  action="#"
12449
13053
  onReset={[Function]}
@@ -12454,7 +13058,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12454
13058
  id="colors"
12455
13059
  style={
12456
13060
  Object {
12457
- "--grid-columns-desktop": 2,
13061
+ "--grid-columns-desktop": 3,
12458
13062
  "--grid-columns-mobile": 2,
12459
13063
  }
12460
13064
  }
@@ -12466,9 +13070,8 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12466
13070
  className="base choice"
12467
13071
  >
12468
13072
  <input
12469
- checked={false}
12470
13073
  disabled={false}
12471
- id="color-red"
13074
+ id="colors-red"
12472
13075
  name="color"
12473
13076
  onBlur={[Function]}
12474
13077
  onChange={[Function]}
@@ -12476,7 +13079,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12476
13079
  value="red"
12477
13080
  />
12478
13081
  <label
12479
- htmlFor="color-red"
13082
+ htmlFor="colors-red"
12480
13083
  >
12481
13084
  Color Red
12482
13085
  </label>
@@ -12485,9 +13088,8 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12485
13088
  className="base choice"
12486
13089
  >
12487
13090
  <input
12488
- checked={false}
12489
13091
  disabled={false}
12490
- id="color-blue"
13092
+ id="colors-blue"
12491
13093
  name="color"
12492
13094
  onBlur={[Function]}
12493
13095
  onChange={[Function]}
@@ -12495,7 +13097,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12495
13097
  value="blue"
12496
13098
  />
12497
13099
  <label
12498
- htmlFor="color-blue"
13100
+ htmlFor="colors-blue"
12499
13101
  >
12500
13102
  Color Blue
12501
13103
  </label>
@@ -12504,9 +13106,8 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12504
13106
  className="base choice"
12505
13107
  >
12506
13108
  <input
12507
- checked={false}
12508
13109
  disabled={false}
12509
- id="color-green"
13110
+ id="colors-green"
12510
13111
  name="color"
12511
13112
  onBlur={[Function]}
12512
13113
  onChange={[Function]}
@@ -12514,7 +13115,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12514
13115
  value="green"
12515
13116
  />
12516
13117
  <label
12517
- htmlFor="color-green"
13118
+ htmlFor="colors-green"
12518
13119
  >
12519
13120
  Color Green
12520
13121
  </label>
@@ -12523,9 +13124,8 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12523
13124
  className="base choice"
12524
13125
  >
12525
13126
  <input
12526
- checked={false}
12527
13127
  disabled={false}
12528
- id="color-yellow"
13128
+ id="colors-yellow"
12529
13129
  name="color"
12530
13130
  onBlur={[Function]}
12531
13131
  onChange={[Function]}
@@ -12533,7 +13133,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12533
13133
  value="yellow"
12534
13134
  />
12535
13135
  <label
12536
- htmlFor="color-yellow"
13136
+ htmlFor="colors-yellow"
12537
13137
  >
12538
13138
  Color Yellow
12539
13139
  </label>
@@ -12542,9 +13142,8 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12542
13142
  className="base choice"
12543
13143
  >
12544
13144
  <input
12545
- checked={false}
12546
13145
  disabled={false}
12547
- id="color-oarnge"
13146
+ id="colors-oarnge"
12548
13147
  name="color"
12549
13148
  onBlur={[Function]}
12550
13149
  onChange={[Function]}
@@ -12552,7 +13151,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12552
13151
  value="oarnge"
12553
13152
  />
12554
13153
  <label
12555
- htmlFor="color-oarnge"
13154
+ htmlFor="colors-oarnge"
12556
13155
  >
12557
13156
  Color Orange
12558
13157
  </label>
@@ -12561,9 +13160,8 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12561
13160
  className="base choice"
12562
13161
  >
12563
13162
  <input
12564
- checked={false}
12565
13163
  disabled={false}
12566
- id="color-violet"
13164
+ id="colors-violet"
12567
13165
  name="color"
12568
13166
  onBlur={[Function]}
12569
13167
  onChange={[Function]}
@@ -12571,7 +13169,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12571
13169
  value="violet"
12572
13170
  />
12573
13171
  <label
12574
- htmlFor="color-violet"
13172
+ htmlFor="colors-violet"
12575
13173
  >
12576
13174
  Color Violet
12577
13175
  </label>
@@ -12580,9 +13178,8 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12580
13178
  className="base choice"
12581
13179
  >
12582
13180
  <input
12583
- checked={false}
12584
13181
  disabled={false}
12585
- id="color-brown"
13182
+ id="colors-brown"
12586
13183
  name="color"
12587
13184
  onBlur={[Function]}
12588
13185
  onChange={[Function]}
@@ -12590,7 +13187,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12590
13187
  value="brown"
12591
13188
  />
12592
13189
  <label
12593
- htmlFor="color-brown"
13190
+ htmlFor="colors-brown"
12594
13191
  >
12595
13192
  Color Brown
12596
13193
  </label>
@@ -12599,9 +13196,8 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12599
13196
  className="base choice"
12600
13197
  >
12601
13198
  <input
12602
- checked={false}
12603
13199
  disabled={false}
12604
- id="color-black"
13200
+ id="colors-black"
12605
13201
  name="color"
12606
13202
  onBlur={[Function]}
12607
13203
  onChange={[Function]}
@@ -12609,7 +13205,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12609
13205
  value="black"
12610
13206
  />
12611
13207
  <label
12612
- htmlFor="color-black"
13208
+ htmlFor="colors-black"
12613
13209
  >
12614
13210
  Color Black
12615
13211
  </label>
@@ -12630,18 +13226,18 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12630
13226
  </form>
12631
13227
  `;
12632
13228
 
12633
- exports[`Storyshots f/fields/ChoicesInput With Default Formik Value 1`] = `
13229
+ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
12634
13230
  <form
12635
13231
  action="#"
12636
13232
  onReset={[Function]}
12637
13233
  onSubmit={[Function]}
12638
13234
  >
12639
13235
  <div
12640
- className="base choices-input x-background2 y-main2"
13236
+ className="base choices-input multiple x-background2 y-main2"
12641
13237
  id="colors"
12642
13238
  style={
12643
13239
  Object {
12644
- "--grid-columns-desktop": 3,
13240
+ "--grid-columns-desktop": 2,
12645
13241
  "--grid-columns-mobile": 2,
12646
13242
  }
12647
13243
  }
@@ -12653,17 +13249,16 @@ exports[`Storyshots f/fields/ChoicesInput With Default Formik Value 1`] = `
12653
13249
  className="base choice"
12654
13250
  >
12655
13251
  <input
12656
- checked={false}
12657
13252
  disabled={false}
12658
- id="color-red"
13253
+ id="colors-red"
12659
13254
  name="color"
12660
13255
  onBlur={[Function]}
12661
13256
  onChange={[Function]}
12662
- type="radio"
13257
+ type="checkbox"
12663
13258
  value="red"
12664
13259
  />
12665
13260
  <label
12666
- htmlFor="color-red"
13261
+ htmlFor="colors-red"
12667
13262
  >
12668
13263
  Color Red
12669
13264
  </label>
@@ -12672,17 +13267,16 @@ exports[`Storyshots f/fields/ChoicesInput With Default Formik Value 1`] = `
12672
13267
  className="base choice"
12673
13268
  >
12674
13269
  <input
12675
- checked={false}
12676
13270
  disabled={false}
12677
- id="color-blue"
13271
+ id="colors-blue"
12678
13272
  name="color"
12679
13273
  onBlur={[Function]}
12680
13274
  onChange={[Function]}
12681
- type="radio"
13275
+ type="checkbox"
12682
13276
  value="blue"
12683
13277
  />
12684
13278
  <label
12685
- htmlFor="color-blue"
13279
+ htmlFor="colors-blue"
12686
13280
  >
12687
13281
  Color Blue
12688
13282
  </label>
@@ -12691,17 +13285,16 @@ exports[`Storyshots f/fields/ChoicesInput With Default Formik Value 1`] = `
12691
13285
  className="base choice"
12692
13286
  >
12693
13287
  <input
12694
- checked={false}
12695
13288
  disabled={false}
12696
- id="color-green"
13289
+ id="colors-green"
12697
13290
  name="color"
12698
13291
  onBlur={[Function]}
12699
13292
  onChange={[Function]}
12700
- type="radio"
13293
+ type="checkbox"
12701
13294
  value="green"
12702
13295
  />
12703
13296
  <label
12704
- htmlFor="color-green"
13297
+ htmlFor="colors-green"
12705
13298
  >
12706
13299
  Color Green
12707
13300
  </label>
@@ -12710,17 +13303,16 @@ exports[`Storyshots f/fields/ChoicesInput With Default Formik Value 1`] = `
12710
13303
  className="base choice"
12711
13304
  >
12712
13305
  <input
12713
- checked={false}
12714
13306
  disabled={false}
12715
- id="color-yellow"
13307
+ id="colors-yellow"
12716
13308
  name="color"
12717
13309
  onBlur={[Function]}
12718
13310
  onChange={[Function]}
12719
- type="radio"
13311
+ type="checkbox"
12720
13312
  value="yellow"
12721
13313
  />
12722
13314
  <label
12723
- htmlFor="color-yellow"
13315
+ htmlFor="colors-yellow"
12724
13316
  >
12725
13317
  Color Yellow
12726
13318
  </label>
@@ -12729,17 +13321,16 @@ exports[`Storyshots f/fields/ChoicesInput With Default Formik Value 1`] = `
12729
13321
  className="base choice"
12730
13322
  >
12731
13323
  <input
12732
- checked={false}
12733
13324
  disabled={false}
12734
- id="color-oarnge"
13325
+ id="colors-oarnge"
12735
13326
  name="color"
12736
13327
  onBlur={[Function]}
12737
13328
  onChange={[Function]}
12738
- type="radio"
13329
+ type="checkbox"
12739
13330
  value="oarnge"
12740
13331
  />
12741
13332
  <label
12742
- htmlFor="color-oarnge"
13333
+ htmlFor="colors-oarnge"
12743
13334
  >
12744
13335
  Color Orange
12745
13336
  </label>
@@ -12748,17 +13339,16 @@ exports[`Storyshots f/fields/ChoicesInput With Default Formik Value 1`] = `
12748
13339
  className="base choice"
12749
13340
  >
12750
13341
  <input
12751
- checked={false}
12752
13342
  disabled={false}
12753
- id="color-violet"
13343
+ id="colors-violet"
12754
13344
  name="color"
12755
13345
  onBlur={[Function]}
12756
13346
  onChange={[Function]}
12757
- type="radio"
13347
+ type="checkbox"
12758
13348
  value="violet"
12759
13349
  />
12760
13350
  <label
12761
- htmlFor="color-violet"
13351
+ htmlFor="colors-violet"
12762
13352
  >
12763
13353
  Color Violet
12764
13354
  </label>
@@ -12767,17 +13357,16 @@ exports[`Storyshots f/fields/ChoicesInput With Default Formik Value 1`] = `
12767
13357
  className="base choice"
12768
13358
  >
12769
13359
  <input
12770
- checked={false}
12771
13360
  disabled={false}
12772
- id="color-brown"
13361
+ id="colors-brown"
12773
13362
  name="color"
12774
13363
  onBlur={[Function]}
12775
13364
  onChange={[Function]}
12776
- type="radio"
13365
+ type="checkbox"
12777
13366
  value="brown"
12778
13367
  />
12779
13368
  <label
12780
- htmlFor="color-brown"
13369
+ htmlFor="colors-brown"
12781
13370
  >
12782
13371
  Color Brown
12783
13372
  </label>
@@ -12786,17 +13375,16 @@ exports[`Storyshots f/fields/ChoicesInput With Default Formik Value 1`] = `
12786
13375
  className="base choice"
12787
13376
  >
12788
13377
  <input
12789
- checked={false}
12790
13378
  disabled={false}
12791
- id="color-black"
13379
+ id="colors-black"
12792
13380
  name="color"
12793
13381
  onBlur={[Function]}
12794
13382
  onChange={[Function]}
12795
- type="radio"
13383
+ type="checkbox"
12796
13384
  value="black"
12797
13385
  />
12798
13386
  <label
12799
- htmlFor="color-black"
13387
+ htmlFor="colors-black"
12800
13388
  >
12801
13389
  Color Black
12802
13390
  </label>