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

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 (30) hide show
  1. package/dist/cjs/a/Label/styles.scss +3 -3
  2. package/dist/cjs/f/FormInput/FormInput.js +2 -1
  3. package/dist/cjs/f/common/Label/Label.js +1 -1
  4. package/dist/cjs/f/common/Label/styles.scss +1 -4
  5. package/dist/cjs/f/fields/ChoicesInput/ChoicesInput.js +1 -1
  6. package/dist/cjs/f/fields/ChoicesInput/common/Choice/Choice.js +5 -2
  7. package/dist/cjs/f/fields/QueryCombobox/QueryCombobox.js +12 -3
  8. package/dist/cjs/f/fields/QuerySelect/QuerySelect.js +12 -3
  9. package/dist/cjs/f/fields/RatingsInput/common/Rating/Rating.js +11 -2
  10. package/dist/es/a/Label/styles.scss +3 -3
  11. package/dist/es/f/FormInput/FormInput.js +2 -1
  12. package/dist/es/f/common/Label/Label.js +1 -1
  13. package/dist/es/f/common/Label/styles.scss +1 -4
  14. package/dist/es/f/fields/ChoicesInput/ChoicesInput.js +1 -1
  15. package/dist/es/f/fields/ChoicesInput/common/Choice/Choice.js +5 -2
  16. package/dist/es/f/fields/QueryCombobox/QueryCombobox.js +12 -3
  17. package/dist/es/f/fields/QuerySelect/QuerySelect.js +12 -3
  18. package/dist/es/f/fields/RatingsInput/common/Rating/Rating.js +11 -2
  19. package/package.json +1 -1
  20. package/src/__snapshots__/Storyshots.test.js.snap +584 -158
  21. package/src/stories/f/ChoicesInput.stories.jsx +38 -10
  22. package/src/ui/a/Label/styles.scss +3 -3
  23. package/src/ui/f/FormInput/FormInput.jsx +1 -0
  24. package/src/ui/f/common/Label/Label.jsx +1 -1
  25. package/src/ui/f/common/Label/styles.scss +1 -4
  26. package/src/ui/f/fields/ChoicesInput/ChoicesInput.jsx +1 -1
  27. package/src/ui/f/fields/ChoicesInput/common/Choice/Choice.jsx +10 -2
  28. package/src/ui/f/fields/QueryCombobox/QueryCombobox.jsx +7 -1
  29. package/src/ui/f/fields/QuerySelect/QuerySelect.jsx +7 -1
  30. package/src/ui/f/fields/RatingsInput/common/Rating/Rating.jsx +7 -1
@@ -3729,7 +3729,7 @@ exports[`Storyshots a/Timestamp Distance Format 1`] = `
3729
3729
  className="base timestamp"
3730
3730
  onClick={[Function]}
3731
3731
  >
3732
- 23 days ago
3732
+ 24 days ago
3733
3733
  </p>
3734
3734
  `;
3735
3735
 
@@ -11315,7 +11315,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
11315
11315
  className="base text-input form-input y-background2"
11316
11316
  >
11317
11317
  <label
11318
- className="base label v50 mb-v x-main2"
11318
+ className="base form-label v50 mb-v x-main2"
11319
11319
  htmlFor="firstName"
11320
11320
  >
11321
11321
  What's your first name ?
@@ -11335,7 +11335,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
11335
11335
  className="base text-input form-input y-background2"
11336
11336
  >
11337
11337
  <label
11338
- className="base label v50 mb-v x-main2"
11338
+ className="base form-label v50 mb-v x-main2"
11339
11339
  htmlFor="lastName"
11340
11340
  >
11341
11341
  What's your last name ?
@@ -11354,7 +11354,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
11354
11354
  className="base text-area-input form-input y-background2"
11355
11355
  >
11356
11356
  <label
11357
- className="base label v50 mb-v x-main2"
11357
+ className="base form-label v50 mb-v x-main2"
11358
11358
  htmlFor="description"
11359
11359
  >
11360
11360
  Describe yourself in a few sentences
@@ -11377,7 +11377,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
11377
11377
  className="base checkbox form-input"
11378
11378
  >
11379
11379
  <label
11380
- className="base label x-main2"
11380
+ className="base form-label x-main2"
11381
11381
  htmlFor="urgent"
11382
11382
  >
11383
11383
  Urgent
@@ -11403,7 +11403,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
11403
11403
  }
11404
11404
  >
11405
11405
  <p
11406
- className="base label x-main2"
11406
+ className="base form-label x-main2"
11407
11407
  >
11408
11408
  What are your favourite colors ?
11409
11409
  </p>
@@ -11414,8 +11414,9 @@ exports[`Storyshots f/FormInput Base 1`] = `
11414
11414
  className="base choice"
11415
11415
  >
11416
11416
  <input
11417
+ checked={false}
11417
11418
  disabled={false}
11418
- id="undefined-red"
11419
+ id="colors-red"
11419
11420
  name="colors"
11420
11421
  onBlur={[Function]}
11421
11422
  onChange={[Function]}
@@ -11423,7 +11424,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
11423
11424
  value="red"
11424
11425
  />
11425
11426
  <label
11426
- htmlFor="undefined-red"
11427
+ htmlFor="colors-red"
11427
11428
  >
11428
11429
  Color Red
11429
11430
  </label>
@@ -11432,8 +11433,9 @@ exports[`Storyshots f/FormInput Base 1`] = `
11432
11433
  className="base choice"
11433
11434
  >
11434
11435
  <input
11436
+ checked={false}
11435
11437
  disabled={false}
11436
- id="undefined-blue"
11438
+ id="colors-blue"
11437
11439
  name="colors"
11438
11440
  onBlur={[Function]}
11439
11441
  onChange={[Function]}
@@ -11441,7 +11443,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
11441
11443
  value="blue"
11442
11444
  />
11443
11445
  <label
11444
- htmlFor="undefined-blue"
11446
+ htmlFor="colors-blue"
11445
11447
  >
11446
11448
  Color Blue
11447
11449
  </label>
@@ -11450,8 +11452,9 @@ exports[`Storyshots f/FormInput Base 1`] = `
11450
11452
  className="base choice"
11451
11453
  >
11452
11454
  <input
11455
+ checked={false}
11453
11456
  disabled={false}
11454
- id="undefined-green"
11457
+ id="colors-green"
11455
11458
  name="colors"
11456
11459
  onBlur={[Function]}
11457
11460
  onChange={[Function]}
@@ -11459,7 +11462,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
11459
11462
  value="green"
11460
11463
  />
11461
11464
  <label
11462
- htmlFor="undefined-green"
11465
+ htmlFor="colors-green"
11463
11466
  >
11464
11467
  Color Green
11465
11468
  </label>
@@ -11470,7 +11473,7 @@ exports[`Storyshots f/FormInput Base 1`] = `
11470
11473
  className="base select-input form-input y-background2"
11471
11474
  >
11472
11475
  <label
11473
- className="base label x-main2"
11476
+ className="base form-label x-main2"
11474
11477
  htmlFor="food"
11475
11478
  >
11476
11479
  What do you want for dinner ?
@@ -11532,7 +11535,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
11532
11535
  className="base text-input form-input y-background2"
11533
11536
  >
11534
11537
  <label
11535
- className="base label v50 mb-v x-main2"
11538
+ className="base form-label v50 mb-v x-main2"
11536
11539
  htmlFor="firstName"
11537
11540
  >
11538
11541
  What's your first name ?
@@ -11552,7 +11555,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
11552
11555
  className="base text-input form-input y-background2"
11553
11556
  >
11554
11557
  <label
11555
- className="base label v50 mb-v x-main2"
11558
+ className="base form-label v50 mb-v x-main2"
11556
11559
  htmlFor="lastName"
11557
11560
  >
11558
11561
  What's your last name ?
@@ -11571,7 +11574,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
11571
11574
  className="base text-area-input form-input y-background2"
11572
11575
  >
11573
11576
  <label
11574
- className="base label v50 mb-v x-main2"
11577
+ className="base form-label v50 mb-v x-main2"
11575
11578
  htmlFor="description"
11576
11579
  >
11577
11580
  Describe yourself in a few sentences
@@ -11600,7 +11603,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
11600
11603
  }
11601
11604
  >
11602
11605
  <p
11603
- className="base label x-main2"
11606
+ className="base form-label x-main2"
11604
11607
  >
11605
11608
  What are your favourite colors ?
11606
11609
  </p>
@@ -11611,8 +11614,9 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
11611
11614
  className="base choice"
11612
11615
  >
11613
11616
  <input
11617
+ checked={false}
11614
11618
  disabled={true}
11615
- id="undefined-red"
11619
+ id="colors-red"
11616
11620
  name="colors"
11617
11621
  onBlur={[Function]}
11618
11622
  onChange={[Function]}
@@ -11620,7 +11624,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
11620
11624
  value="red"
11621
11625
  />
11622
11626
  <label
11623
- htmlFor="undefined-red"
11627
+ htmlFor="colors-red"
11624
11628
  >
11625
11629
  Color Red
11626
11630
  </label>
@@ -11629,8 +11633,9 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
11629
11633
  className="base choice"
11630
11634
  >
11631
11635
  <input
11636
+ checked={false}
11632
11637
  disabled={true}
11633
- id="undefined-blue"
11638
+ id="colors-blue"
11634
11639
  name="colors"
11635
11640
  onBlur={[Function]}
11636
11641
  onChange={[Function]}
@@ -11638,7 +11643,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
11638
11643
  value="blue"
11639
11644
  />
11640
11645
  <label
11641
- htmlFor="undefined-blue"
11646
+ htmlFor="colors-blue"
11642
11647
  >
11643
11648
  Color Blue
11644
11649
  </label>
@@ -11647,8 +11652,9 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
11647
11652
  className="base choice"
11648
11653
  >
11649
11654
  <input
11655
+ checked={false}
11650
11656
  disabled={true}
11651
- id="undefined-green"
11657
+ id="colors-green"
11652
11658
  name="colors"
11653
11659
  onBlur={[Function]}
11654
11660
  onChange={[Function]}
@@ -11656,7 +11662,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
11656
11662
  value="green"
11657
11663
  />
11658
11664
  <label
11659
- htmlFor="undefined-green"
11665
+ htmlFor="colors-green"
11660
11666
  >
11661
11667
  Color Green
11662
11668
  </label>
@@ -11667,7 +11673,7 @@ exports[`Storyshots f/FormInput Disabled Form Input 1`] = `
11667
11673
  className="base select-input form-input y-background2"
11668
11674
  >
11669
11675
  <label
11670
- className="base label x-main2"
11676
+ className="base form-label x-main2"
11671
11677
  htmlFor="food"
11672
11678
  >
11673
11679
  What do you want for dinner ?
@@ -11729,7 +11735,7 @@ exports[`Storyshots f/FormInput Extensible Form Input 1`] = `
11729
11735
  className="base text-input form-input y-background2"
11730
11736
  >
11731
11737
  <label
11732
- className="base label v50 mb-v x-main2"
11738
+ className="base form-label v50 mb-v x-main2"
11733
11739
  htmlFor="extended"
11734
11740
  >
11735
11741
  Extended type input
@@ -11768,7 +11774,7 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11768
11774
  className="base text-input form-input y-background2"
11769
11775
  >
11770
11776
  <label
11771
- className="base label v50 mb-v x-main2"
11777
+ className="base form-label v50 mb-v x-main2"
11772
11778
  htmlFor="firstName"
11773
11779
  >
11774
11780
  What's your first name ?
@@ -11794,7 +11800,7 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11794
11800
  }
11795
11801
  >
11796
11802
  <p
11797
- className="base label x-main2"
11803
+ className="base form-label x-main2"
11798
11804
  >
11799
11805
  What are your favourite colors ?
11800
11806
  </p>
@@ -11805,8 +11811,9 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11805
11811
  className="base choice"
11806
11812
  >
11807
11813
  <input
11814
+ checked={false}
11808
11815
  disabled={false}
11809
- id="undefined-red"
11816
+ id="colors-red"
11810
11817
  name="colors"
11811
11818
  onBlur={[Function]}
11812
11819
  onChange={[Function]}
@@ -11814,7 +11821,7 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11814
11821
  value="red"
11815
11822
  />
11816
11823
  <label
11817
- htmlFor="undefined-red"
11824
+ htmlFor="colors-red"
11818
11825
  >
11819
11826
  Color Red
11820
11827
  </label>
@@ -11823,8 +11830,9 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11823
11830
  className="base choice"
11824
11831
  >
11825
11832
  <input
11833
+ checked={false}
11826
11834
  disabled={false}
11827
- id="undefined-blue"
11835
+ id="colors-blue"
11828
11836
  name="colors"
11829
11837
  onBlur={[Function]}
11830
11838
  onChange={[Function]}
@@ -11832,7 +11840,7 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11832
11840
  value="blue"
11833
11841
  />
11834
11842
  <label
11835
- htmlFor="undefined-blue"
11843
+ htmlFor="colors-blue"
11836
11844
  >
11837
11845
  Color Blue
11838
11846
  </label>
@@ -11841,8 +11849,9 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11841
11849
  className="base choice"
11842
11850
  >
11843
11851
  <input
11852
+ checked={false}
11844
11853
  disabled={false}
11845
- id="undefined-green"
11854
+ id="colors-green"
11846
11855
  name="colors"
11847
11856
  onBlur={[Function]}
11848
11857
  onChange={[Function]}
@@ -11850,7 +11859,7 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11850
11859
  value="green"
11851
11860
  />
11852
11861
  <label
11853
- htmlFor="undefined-green"
11862
+ htmlFor="colors-green"
11854
11863
  >
11855
11864
  Color Green
11856
11865
  </label>
@@ -11861,7 +11870,7 @@ exports[`Storyshots f/FormInput With Prefetched Query Select 1`] = `
11861
11870
  className="base select-input form-input y-background2"
11862
11871
  >
11863
11872
  <label
11864
- className="base label x-main2"
11873
+ className="base form-label x-main2"
11865
11874
  htmlFor="status"
11866
11875
  >
11867
11876
  Select Task Status
@@ -11904,7 +11913,7 @@ exports[`Storyshots f/FormInput With Query Combobox 1`] = `
11904
11913
  className="base text-input form-input y-background2"
11905
11914
  >
11906
11915
  <label
11907
- className="base label v50 mb-v x-main2"
11916
+ className="base form-label v50 mb-v x-main2"
11908
11917
  htmlFor="firstName"
11909
11918
  >
11910
11919
  What's your first name ?
@@ -11930,7 +11939,7 @@ exports[`Storyshots f/FormInput With Query Combobox 1`] = `
11930
11939
  }
11931
11940
  >
11932
11941
  <p
11933
- className="base label x-main2"
11942
+ className="base form-label x-main2"
11934
11943
  >
11935
11944
  What are your favourite colors ?
11936
11945
  </p>
@@ -11941,8 +11950,9 @@ exports[`Storyshots f/FormInput With Query Combobox 1`] = `
11941
11950
  className="base choice"
11942
11951
  >
11943
11952
  <input
11953
+ checked={false}
11944
11954
  disabled={false}
11945
- id="undefined-red"
11955
+ id="colors-red"
11946
11956
  name="colors"
11947
11957
  onBlur={[Function]}
11948
11958
  onChange={[Function]}
@@ -11950,7 +11960,7 @@ exports[`Storyshots f/FormInput With Query Combobox 1`] = `
11950
11960
  value="red"
11951
11961
  />
11952
11962
  <label
11953
- htmlFor="undefined-red"
11963
+ htmlFor="colors-red"
11954
11964
  >
11955
11965
  Color Red
11956
11966
  </label>
@@ -11959,8 +11969,9 @@ exports[`Storyshots f/FormInput With Query Combobox 1`] = `
11959
11969
  className="base choice"
11960
11970
  >
11961
11971
  <input
11972
+ checked={false}
11962
11973
  disabled={false}
11963
- id="undefined-blue"
11974
+ id="colors-blue"
11964
11975
  name="colors"
11965
11976
  onBlur={[Function]}
11966
11977
  onChange={[Function]}
@@ -11968,7 +11979,7 @@ exports[`Storyshots f/FormInput With Query Combobox 1`] = `
11968
11979
  value="blue"
11969
11980
  />
11970
11981
  <label
11971
- htmlFor="undefined-blue"
11982
+ htmlFor="colors-blue"
11972
11983
  >
11973
11984
  Color Blue
11974
11985
  </label>
@@ -11977,8 +11988,9 @@ exports[`Storyshots f/FormInput With Query Combobox 1`] = `
11977
11988
  className="base choice"
11978
11989
  >
11979
11990
  <input
11991
+ checked={false}
11980
11992
  disabled={false}
11981
- id="undefined-green"
11993
+ id="colors-green"
11982
11994
  name="colors"
11983
11995
  onBlur={[Function]}
11984
11996
  onChange={[Function]}
@@ -11986,7 +11998,7 @@ exports[`Storyshots f/FormInput With Query Combobox 1`] = `
11986
11998
  value="green"
11987
11999
  />
11988
12000
  <label
11989
- htmlFor="undefined-green"
12001
+ htmlFor="colors-green"
11990
12002
  >
11991
12003
  Color Green
11992
12004
  </label>
@@ -11997,7 +12009,7 @@ exports[`Storyshots f/FormInput With Query Combobox 1`] = `
11997
12009
  className="base combobox form-input y-background2"
11998
12010
  >
11999
12011
  <label
12000
- className="base label x-main2"
12012
+ className="base form-label x-main2"
12001
12013
  htmlFor="team"
12002
12014
  id="downshift-0-label"
12003
12015
  >
@@ -12040,7 +12052,7 @@ exports[`Storyshots f/FormInput With Query Combobox 1`] = `
12040
12052
  className="base multiple-combobox form-input y-background2"
12041
12053
  >
12042
12054
  <label
12043
- className="base label x-main2"
12055
+ className="base form-label x-main2"
12044
12056
  htmlFor="teams"
12045
12057
  id="downshift-1-label"
12046
12058
  >
@@ -12104,7 +12116,7 @@ exports[`Storyshots f/FormInput With Ratings Input 1`] = `
12104
12116
  className="base text-input form-input y-background2"
12105
12117
  >
12106
12118
  <label
12107
- className="base label v50 mb-v x-main2"
12119
+ className="base form-label v50 mb-v x-main2"
12108
12120
  htmlFor="firstName"
12109
12121
  >
12110
12122
  What's your first name ?
@@ -12124,7 +12136,7 @@ exports[`Storyshots f/FormInput With Ratings Input 1`] = `
12124
12136
  className="base ratings-input form-input"
12125
12137
  >
12126
12138
  <label
12127
- className="base label input-label v50 mb-v x-main2"
12139
+ className="base form-label input-label v50 mb-v x-main2"
12128
12140
  htmlFor="ratings"
12129
12141
  >
12130
12142
  Your Rating
@@ -12279,7 +12291,7 @@ exports[`Storyshots f/common/Description Base 1`] = `
12279
12291
 
12280
12292
  exports[`Storyshots f/common/Label Base 1`] = `
12281
12293
  <label
12282
- className="base label x-main2"
12294
+ className="base form-label x-main2"
12283
12295
  >
12284
12296
  Sample Label
12285
12297
  </label>
@@ -12470,7 +12482,7 @@ exports[`Storyshots f/fields/Checkbox With Label 1`] = `
12470
12482
  className="base checkbox"
12471
12483
  >
12472
12484
  <label
12473
- className="base label x-main2"
12485
+ className="base form-label x-main2"
12474
12486
  htmlFor="urgent"
12475
12487
  >
12476
12488
  Urgent
@@ -12523,8 +12535,9 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12523
12535
  className="base choice"
12524
12536
  >
12525
12537
  <input
12538
+ checked={false}
12526
12539
  disabled={false}
12527
- id="colors-red"
12540
+ id="color-red"
12528
12541
  name="color"
12529
12542
  onBlur={[Function]}
12530
12543
  onChange={[Function]}
@@ -12532,7 +12545,7 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12532
12545
  value="red"
12533
12546
  />
12534
12547
  <label
12535
- htmlFor="colors-red"
12548
+ htmlFor="color-red"
12536
12549
  >
12537
12550
  Color Red
12538
12551
  </label>
@@ -12541,8 +12554,9 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12541
12554
  className="base choice"
12542
12555
  >
12543
12556
  <input
12557
+ checked={false}
12544
12558
  disabled={false}
12545
- id="colors-blue"
12559
+ id="color-blue"
12546
12560
  name="color"
12547
12561
  onBlur={[Function]}
12548
12562
  onChange={[Function]}
@@ -12550,7 +12564,7 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12550
12564
  value="blue"
12551
12565
  />
12552
12566
  <label
12553
- htmlFor="colors-blue"
12567
+ htmlFor="color-blue"
12554
12568
  >
12555
12569
  Color Blue
12556
12570
  </label>
@@ -12559,8 +12573,9 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12559
12573
  className="base choice"
12560
12574
  >
12561
12575
  <input
12576
+ checked={false}
12562
12577
  disabled={false}
12563
- id="colors-green"
12578
+ id="color-green"
12564
12579
  name="color"
12565
12580
  onBlur={[Function]}
12566
12581
  onChange={[Function]}
@@ -12568,7 +12583,7 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12568
12583
  value="green"
12569
12584
  />
12570
12585
  <label
12571
- htmlFor="colors-green"
12586
+ htmlFor="color-green"
12572
12587
  >
12573
12588
  Color Green
12574
12589
  </label>
@@ -12577,8 +12592,9 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12577
12592
  className="base choice"
12578
12593
  >
12579
12594
  <input
12595
+ checked={false}
12580
12596
  disabled={false}
12581
- id="colors-yellow"
12597
+ id="color-yellow"
12582
12598
  name="color"
12583
12599
  onBlur={[Function]}
12584
12600
  onChange={[Function]}
@@ -12586,7 +12602,7 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12586
12602
  value="yellow"
12587
12603
  />
12588
12604
  <label
12589
- htmlFor="colors-yellow"
12605
+ htmlFor="color-yellow"
12590
12606
  >
12591
12607
  Color Yellow
12592
12608
  </label>
@@ -12595,8 +12611,9 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12595
12611
  className="base choice"
12596
12612
  >
12597
12613
  <input
12614
+ checked={false}
12598
12615
  disabled={false}
12599
- id="colors-oarnge"
12616
+ id="color-oarnge"
12600
12617
  name="color"
12601
12618
  onBlur={[Function]}
12602
12619
  onChange={[Function]}
@@ -12604,7 +12621,7 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12604
12621
  value="oarnge"
12605
12622
  />
12606
12623
  <label
12607
- htmlFor="colors-oarnge"
12624
+ htmlFor="color-oarnge"
12608
12625
  >
12609
12626
  Color Orange
12610
12627
  </label>
@@ -12613,8 +12630,9 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12613
12630
  className="base choice"
12614
12631
  >
12615
12632
  <input
12633
+ checked={false}
12616
12634
  disabled={false}
12617
- id="colors-violet"
12635
+ id="color-violet"
12618
12636
  name="color"
12619
12637
  onBlur={[Function]}
12620
12638
  onChange={[Function]}
@@ -12622,7 +12640,7 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12622
12640
  value="violet"
12623
12641
  />
12624
12642
  <label
12625
- htmlFor="colors-violet"
12643
+ htmlFor="color-violet"
12626
12644
  >
12627
12645
  Color Violet
12628
12646
  </label>
@@ -12631,8 +12649,9 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12631
12649
  className="base choice"
12632
12650
  >
12633
12651
  <input
12652
+ checked={false}
12634
12653
  disabled={false}
12635
- id="colors-brown"
12654
+ id="color-brown"
12636
12655
  name="color"
12637
12656
  onBlur={[Function]}
12638
12657
  onChange={[Function]}
@@ -12640,7 +12659,7 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12640
12659
  value="brown"
12641
12660
  />
12642
12661
  <label
12643
- htmlFor="colors-brown"
12662
+ htmlFor="color-brown"
12644
12663
  >
12645
12664
  Color Brown
12646
12665
  </label>
@@ -12649,8 +12668,9 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12649
12668
  className="base choice"
12650
12669
  >
12651
12670
  <input
12671
+ checked={false}
12652
12672
  disabled={false}
12653
- id="colors-black"
12673
+ id="color-black"
12654
12674
  name="color"
12655
12675
  onBlur={[Function]}
12656
12676
  onChange={[Function]}
@@ -12658,7 +12678,7 @@ exports[`Storyshots f/fields/ChoicesInput Base 1`] = `
12658
12678
  value="black"
12659
12679
  />
12660
12680
  <label
12661
- htmlFor="colors-black"
12681
+ htmlFor="color-black"
12662
12682
  >
12663
12683
  Color Black
12664
12684
  </label>
@@ -12696,7 +12716,7 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12696
12716
  }
12697
12717
  >
12698
12718
  <p
12699
- className="base label x-main2"
12719
+ className="base form-label x-main2"
12700
12720
  >
12701
12721
  Select color
12702
12722
  </p>
@@ -12707,8 +12727,9 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12707
12727
  className="base choice"
12708
12728
  >
12709
12729
  <input
12730
+ checked={false}
12710
12731
  disabled={false}
12711
- id="colors-red"
12732
+ id="color-red"
12712
12733
  name="color"
12713
12734
  onBlur={[Function]}
12714
12735
  onChange={[Function]}
@@ -12716,7 +12737,7 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12716
12737
  value="red"
12717
12738
  />
12718
12739
  <label
12719
- htmlFor="colors-red"
12740
+ htmlFor="color-red"
12720
12741
  >
12721
12742
  Color Red
12722
12743
  </label>
@@ -12725,8 +12746,9 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12725
12746
  className="base choice"
12726
12747
  >
12727
12748
  <input
12749
+ checked={false}
12728
12750
  disabled={false}
12729
- id="colors-blue"
12751
+ id="color-blue"
12730
12752
  name="color"
12731
12753
  onBlur={[Function]}
12732
12754
  onChange={[Function]}
@@ -12734,7 +12756,7 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12734
12756
  value="blue"
12735
12757
  />
12736
12758
  <label
12737
- htmlFor="colors-blue"
12759
+ htmlFor="color-blue"
12738
12760
  >
12739
12761
  Color Blue
12740
12762
  </label>
@@ -12743,8 +12765,9 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12743
12765
  className="base choice"
12744
12766
  >
12745
12767
  <input
12768
+ checked={false}
12746
12769
  disabled={false}
12747
- id="colors-green"
12770
+ id="color-green"
12748
12771
  name="color"
12749
12772
  onBlur={[Function]}
12750
12773
  onChange={[Function]}
@@ -12752,7 +12775,7 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12752
12775
  value="green"
12753
12776
  />
12754
12777
  <label
12755
- htmlFor="colors-green"
12778
+ htmlFor="color-green"
12756
12779
  >
12757
12780
  Color Green
12758
12781
  </label>
@@ -12761,8 +12784,9 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12761
12784
  className="base choice"
12762
12785
  >
12763
12786
  <input
12787
+ checked={false}
12764
12788
  disabled={false}
12765
- id="colors-yellow"
12789
+ id="color-yellow"
12766
12790
  name="color"
12767
12791
  onBlur={[Function]}
12768
12792
  onChange={[Function]}
@@ -12770,7 +12794,7 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12770
12794
  value="yellow"
12771
12795
  />
12772
12796
  <label
12773
- htmlFor="colors-yellow"
12797
+ htmlFor="color-yellow"
12774
12798
  >
12775
12799
  Color Yellow
12776
12800
  </label>
@@ -12779,8 +12803,9 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12779
12803
  className="base choice"
12780
12804
  >
12781
12805
  <input
12806
+ checked={false}
12782
12807
  disabled={false}
12783
- id="colors-oarnge"
12808
+ id="color-oarnge"
12784
12809
  name="color"
12785
12810
  onBlur={[Function]}
12786
12811
  onChange={[Function]}
@@ -12788,7 +12813,7 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12788
12813
  value="oarnge"
12789
12814
  />
12790
12815
  <label
12791
- htmlFor="colors-oarnge"
12816
+ htmlFor="color-oarnge"
12792
12817
  >
12793
12818
  Color Orange
12794
12819
  </label>
@@ -12797,8 +12822,9 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12797
12822
  className="base choice"
12798
12823
  >
12799
12824
  <input
12825
+ checked={false}
12800
12826
  disabled={false}
12801
- id="colors-violet"
12827
+ id="color-violet"
12802
12828
  name="color"
12803
12829
  onBlur={[Function]}
12804
12830
  onChange={[Function]}
@@ -12806,7 +12832,7 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12806
12832
  value="violet"
12807
12833
  />
12808
12834
  <label
12809
- htmlFor="colors-violet"
12835
+ htmlFor="color-violet"
12810
12836
  >
12811
12837
  Color Violet
12812
12838
  </label>
@@ -12815,8 +12841,9 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12815
12841
  className="base choice"
12816
12842
  >
12817
12843
  <input
12844
+ checked={false}
12818
12845
  disabled={false}
12819
- id="colors-brown"
12846
+ id="color-brown"
12820
12847
  name="color"
12821
12848
  onBlur={[Function]}
12822
12849
  onChange={[Function]}
@@ -12824,7 +12851,7 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12824
12851
  value="brown"
12825
12852
  />
12826
12853
  <label
12827
- htmlFor="colors-brown"
12854
+ htmlFor="color-brown"
12828
12855
  >
12829
12856
  Color Brown
12830
12857
  </label>
@@ -12833,8 +12860,9 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12833
12860
  className="base choice"
12834
12861
  >
12835
12862
  <input
12863
+ checked={false}
12836
12864
  disabled={false}
12837
- id="colors-black"
12865
+ id="color-black"
12838
12866
  name="color"
12839
12867
  onBlur={[Function]}
12840
12868
  onChange={[Function]}
@@ -12842,7 +12870,7 @@ exports[`Storyshots f/fields/ChoicesInput Choices With Label 1`] = `
12842
12870
  value="black"
12843
12871
  />
12844
12872
  <label
12845
- htmlFor="colors-black"
12873
+ htmlFor="color-black"
12846
12874
  >
12847
12875
  Color Black
12848
12876
  </label>
@@ -12880,7 +12908,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12880
12908
  }
12881
12909
  >
12882
12910
  <p
12883
- className="base label x-main2"
12911
+ className="base form-label x-main2"
12884
12912
  >
12885
12913
  Select color
12886
12914
  </p>
@@ -12891,8 +12919,9 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12891
12919
  className="base choice"
12892
12920
  >
12893
12921
  <input
12922
+ checked={false}
12894
12923
  disabled={true}
12895
- id="colors-red"
12924
+ id="color-red"
12896
12925
  name="color"
12897
12926
  onBlur={[Function]}
12898
12927
  onChange={[Function]}
@@ -12900,7 +12929,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12900
12929
  value="red"
12901
12930
  />
12902
12931
  <label
12903
- htmlFor="colors-red"
12932
+ htmlFor="color-red"
12904
12933
  >
12905
12934
  Color Red
12906
12935
  </label>
@@ -12909,8 +12938,9 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12909
12938
  className="base choice"
12910
12939
  >
12911
12940
  <input
12941
+ checked={false}
12912
12942
  disabled={true}
12913
- id="colors-blue"
12943
+ id="color-blue"
12914
12944
  name="color"
12915
12945
  onBlur={[Function]}
12916
12946
  onChange={[Function]}
@@ -12918,7 +12948,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12918
12948
  value="blue"
12919
12949
  />
12920
12950
  <label
12921
- htmlFor="colors-blue"
12951
+ htmlFor="color-blue"
12922
12952
  >
12923
12953
  Color Blue
12924
12954
  </label>
@@ -12927,8 +12957,9 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12927
12957
  className="base choice"
12928
12958
  >
12929
12959
  <input
12960
+ checked={false}
12930
12961
  disabled={true}
12931
- id="colors-green"
12962
+ id="color-green"
12932
12963
  name="color"
12933
12964
  onBlur={[Function]}
12934
12965
  onChange={[Function]}
@@ -12936,7 +12967,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12936
12967
  value="green"
12937
12968
  />
12938
12969
  <label
12939
- htmlFor="colors-green"
12970
+ htmlFor="color-green"
12940
12971
  >
12941
12972
  Color Green
12942
12973
  </label>
@@ -12945,8 +12976,9 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12945
12976
  className="base choice"
12946
12977
  >
12947
12978
  <input
12979
+ checked={false}
12948
12980
  disabled={true}
12949
- id="colors-yellow"
12981
+ id="color-yellow"
12950
12982
  name="color"
12951
12983
  onBlur={[Function]}
12952
12984
  onChange={[Function]}
@@ -12954,7 +12986,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12954
12986
  value="yellow"
12955
12987
  />
12956
12988
  <label
12957
- htmlFor="colors-yellow"
12989
+ htmlFor="color-yellow"
12958
12990
  >
12959
12991
  Color Yellow
12960
12992
  </label>
@@ -12963,8 +12995,9 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12963
12995
  className="base choice"
12964
12996
  >
12965
12997
  <input
12998
+ checked={false}
12966
12999
  disabled={true}
12967
- id="colors-oarnge"
13000
+ id="color-oarnge"
12968
13001
  name="color"
12969
13002
  onBlur={[Function]}
12970
13003
  onChange={[Function]}
@@ -12972,7 +13005,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12972
13005
  value="oarnge"
12973
13006
  />
12974
13007
  <label
12975
- htmlFor="colors-oarnge"
13008
+ htmlFor="color-oarnge"
12976
13009
  >
12977
13010
  Color Orange
12978
13011
  </label>
@@ -12981,8 +13014,9 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12981
13014
  className="base choice"
12982
13015
  >
12983
13016
  <input
13017
+ checked={false}
12984
13018
  disabled={true}
12985
- id="colors-violet"
13019
+ id="color-violet"
12986
13020
  name="color"
12987
13021
  onBlur={[Function]}
12988
13022
  onChange={[Function]}
@@ -12990,7 +13024,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12990
13024
  value="violet"
12991
13025
  />
12992
13026
  <label
12993
- htmlFor="colors-violet"
13027
+ htmlFor="color-violet"
12994
13028
  >
12995
13029
  Color Violet
12996
13030
  </label>
@@ -12999,8 +13033,9 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
12999
13033
  className="base choice"
13000
13034
  >
13001
13035
  <input
13036
+ checked={false}
13002
13037
  disabled={true}
13003
- id="colors-brown"
13038
+ id="color-brown"
13004
13039
  name="color"
13005
13040
  onBlur={[Function]}
13006
13041
  onChange={[Function]}
@@ -13008,7 +13043,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
13008
13043
  value="brown"
13009
13044
  />
13010
13045
  <label
13011
- htmlFor="colors-brown"
13046
+ htmlFor="color-brown"
13012
13047
  >
13013
13048
  Color Brown
13014
13049
  </label>
@@ -13017,8 +13052,9 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
13017
13052
  className="base choice"
13018
13053
  >
13019
13054
  <input
13055
+ checked={false}
13020
13056
  disabled={true}
13021
- id="colors-black"
13057
+ id="color-black"
13022
13058
  name="color"
13023
13059
  onBlur={[Function]}
13024
13060
  onChange={[Function]}
@@ -13026,7 +13062,7 @@ exports[`Storyshots f/fields/ChoicesInput Disabled Choices Input 1`] = `
13026
13062
  value="black"
13027
13063
  />
13028
13064
  <label
13029
- htmlFor="colors-black"
13065
+ htmlFor="color-black"
13030
13066
  >
13031
13067
  Color Black
13032
13068
  </label>
@@ -13070,8 +13106,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13070
13106
  className="base choice"
13071
13107
  >
13072
13108
  <input
13109
+ checked={false}
13073
13110
  disabled={false}
13074
- id="colors-red"
13111
+ id="color-red"
13075
13112
  name="color"
13076
13113
  onBlur={[Function]}
13077
13114
  onChange={[Function]}
@@ -13079,7 +13116,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13079
13116
  value="red"
13080
13117
  />
13081
13118
  <label
13082
- htmlFor="colors-red"
13119
+ htmlFor="color-red"
13083
13120
  >
13084
13121
  Color Red
13085
13122
  </label>
@@ -13088,8 +13125,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13088
13125
  className="base choice"
13089
13126
  >
13090
13127
  <input
13128
+ checked={false}
13091
13129
  disabled={false}
13092
- id="colors-blue"
13130
+ id="color-blue"
13093
13131
  name="color"
13094
13132
  onBlur={[Function]}
13095
13133
  onChange={[Function]}
@@ -13097,7 +13135,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13097
13135
  value="blue"
13098
13136
  />
13099
13137
  <label
13100
- htmlFor="colors-blue"
13138
+ htmlFor="color-blue"
13101
13139
  >
13102
13140
  Color Blue
13103
13141
  </label>
@@ -13106,8 +13144,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13106
13144
  className="base choice"
13107
13145
  >
13108
13146
  <input
13147
+ checked={false}
13109
13148
  disabled={false}
13110
- id="colors-green"
13149
+ id="color-green"
13111
13150
  name="color"
13112
13151
  onBlur={[Function]}
13113
13152
  onChange={[Function]}
@@ -13115,7 +13154,194 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13115
13154
  value="green"
13116
13155
  />
13117
13156
  <label
13118
- htmlFor="colors-green"
13157
+ htmlFor="color-green"
13158
+ >
13159
+ Color Green
13160
+ </label>
13161
+ </div>
13162
+ <div
13163
+ className="base choice"
13164
+ >
13165
+ <input
13166
+ checked={false}
13167
+ disabled={false}
13168
+ id="color-yellow"
13169
+ name="color"
13170
+ onBlur={[Function]}
13171
+ onChange={[Function]}
13172
+ type="checkbox"
13173
+ value="yellow"
13174
+ />
13175
+ <label
13176
+ htmlFor="color-yellow"
13177
+ >
13178
+ Color Yellow
13179
+ </label>
13180
+ </div>
13181
+ <div
13182
+ className="base choice"
13183
+ >
13184
+ <input
13185
+ checked={false}
13186
+ disabled={false}
13187
+ id="color-oarnge"
13188
+ name="color"
13189
+ onBlur={[Function]}
13190
+ onChange={[Function]}
13191
+ type="checkbox"
13192
+ value="oarnge"
13193
+ />
13194
+ <label
13195
+ htmlFor="color-oarnge"
13196
+ >
13197
+ Color Orange
13198
+ </label>
13199
+ </div>
13200
+ <div
13201
+ className="base choice"
13202
+ >
13203
+ <input
13204
+ checked={false}
13205
+ disabled={false}
13206
+ id="color-violet"
13207
+ name="color"
13208
+ onBlur={[Function]}
13209
+ onChange={[Function]}
13210
+ type="checkbox"
13211
+ value="violet"
13212
+ />
13213
+ <label
13214
+ htmlFor="color-violet"
13215
+ >
13216
+ Color Violet
13217
+ </label>
13218
+ </div>
13219
+ <div
13220
+ className="base choice"
13221
+ >
13222
+ <input
13223
+ checked={false}
13224
+ disabled={false}
13225
+ id="color-brown"
13226
+ name="color"
13227
+ onBlur={[Function]}
13228
+ onChange={[Function]}
13229
+ type="checkbox"
13230
+ value="brown"
13231
+ />
13232
+ <label
13233
+ htmlFor="color-brown"
13234
+ >
13235
+ Color Brown
13236
+ </label>
13237
+ </div>
13238
+ <div
13239
+ className="base choice"
13240
+ >
13241
+ <input
13242
+ checked={false}
13243
+ disabled={false}
13244
+ id="color-black"
13245
+ name="color"
13246
+ onBlur={[Function]}
13247
+ onChange={[Function]}
13248
+ type="checkbox"
13249
+ value="black"
13250
+ />
13251
+ <label
13252
+ htmlFor="color-black"
13253
+ >
13254
+ Color Black
13255
+ </label>
13256
+ </div>
13257
+ </div>
13258
+ </div>
13259
+ <div
13260
+ className="debugger"
13261
+ >
13262
+ <button
13263
+ className="base button x-main2"
13264
+ onClick={[Function]}
13265
+ type="button"
13266
+ >
13267
+ Open FormDebugger
13268
+ </button>
13269
+ </div>
13270
+ </form>
13271
+ `;
13272
+
13273
+ exports[`Storyshots f/fields/ChoicesInput Multiple With Default Formik Value 1`] = `
13274
+ <form
13275
+ action="#"
13276
+ onReset={[Function]}
13277
+ onSubmit={[Function]}
13278
+ >
13279
+ <div
13280
+ className="base choices-input multiple x-background2 y-main2"
13281
+ id="colors"
13282
+ style={
13283
+ Object {
13284
+ "--grid-columns-desktop": 3,
13285
+ "--grid-columns-mobile": 2,
13286
+ }
13287
+ }
13288
+ >
13289
+ <div
13290
+ className="choices"
13291
+ >
13292
+ <div
13293
+ className="base choice"
13294
+ >
13295
+ <input
13296
+ checked={false}
13297
+ disabled={false}
13298
+ id="color-red"
13299
+ name="color"
13300
+ onBlur={[Function]}
13301
+ onChange={[Function]}
13302
+ type="checkbox"
13303
+ value="red"
13304
+ />
13305
+ <label
13306
+ htmlFor="color-red"
13307
+ >
13308
+ Color Red
13309
+ </label>
13310
+ </div>
13311
+ <div
13312
+ className="base choice"
13313
+ >
13314
+ <input
13315
+ checked={false}
13316
+ disabled={false}
13317
+ id="color-blue"
13318
+ name="color"
13319
+ onBlur={[Function]}
13320
+ onChange={[Function]}
13321
+ type="checkbox"
13322
+ value="blue"
13323
+ />
13324
+ <label
13325
+ htmlFor="color-blue"
13326
+ >
13327
+ Color Blue
13328
+ </label>
13329
+ </div>
13330
+ <div
13331
+ className="base choice"
13332
+ >
13333
+ <input
13334
+ checked={false}
13335
+ disabled={false}
13336
+ id="color-green"
13337
+ name="color"
13338
+ onBlur={[Function]}
13339
+ onChange={[Function]}
13340
+ type="checkbox"
13341
+ value="green"
13342
+ />
13343
+ <label
13344
+ htmlFor="color-green"
13119
13345
  >
13120
13346
  Color Green
13121
13347
  </label>
@@ -13124,8 +13350,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13124
13350
  className="base choice"
13125
13351
  >
13126
13352
  <input
13353
+ checked={false}
13127
13354
  disabled={false}
13128
- id="colors-yellow"
13355
+ id="color-yellow"
13129
13356
  name="color"
13130
13357
  onBlur={[Function]}
13131
13358
  onChange={[Function]}
@@ -13133,7 +13360,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13133
13360
  value="yellow"
13134
13361
  />
13135
13362
  <label
13136
- htmlFor="colors-yellow"
13363
+ htmlFor="color-yellow"
13137
13364
  >
13138
13365
  Color Yellow
13139
13366
  </label>
@@ -13142,8 +13369,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13142
13369
  className="base choice"
13143
13370
  >
13144
13371
  <input
13372
+ checked={false}
13145
13373
  disabled={false}
13146
- id="colors-oarnge"
13374
+ id="color-oarnge"
13147
13375
  name="color"
13148
13376
  onBlur={[Function]}
13149
13377
  onChange={[Function]}
@@ -13151,7 +13379,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13151
13379
  value="oarnge"
13152
13380
  />
13153
13381
  <label
13154
- htmlFor="colors-oarnge"
13382
+ htmlFor="color-oarnge"
13155
13383
  >
13156
13384
  Color Orange
13157
13385
  </label>
@@ -13160,8 +13388,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13160
13388
  className="base choice"
13161
13389
  >
13162
13390
  <input
13391
+ checked={false}
13163
13392
  disabled={false}
13164
- id="colors-violet"
13393
+ id="color-violet"
13165
13394
  name="color"
13166
13395
  onBlur={[Function]}
13167
13396
  onChange={[Function]}
@@ -13169,7 +13398,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13169
13398
  value="violet"
13170
13399
  />
13171
13400
  <label
13172
- htmlFor="colors-violet"
13401
+ htmlFor="color-violet"
13173
13402
  >
13174
13403
  Color Violet
13175
13404
  </label>
@@ -13178,8 +13407,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13178
13407
  className="base choice"
13179
13408
  >
13180
13409
  <input
13410
+ checked={false}
13181
13411
  disabled={false}
13182
- id="colors-brown"
13412
+ id="color-brown"
13183
13413
  name="color"
13184
13414
  onBlur={[Function]}
13185
13415
  onChange={[Function]}
@@ -13187,7 +13417,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13187
13417
  value="brown"
13188
13418
  />
13189
13419
  <label
13190
- htmlFor="colors-brown"
13420
+ htmlFor="color-brown"
13191
13421
  >
13192
13422
  Color Brown
13193
13423
  </label>
@@ -13196,8 +13426,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13196
13426
  className="base choice"
13197
13427
  >
13198
13428
  <input
13429
+ checked={false}
13199
13430
  disabled={false}
13200
- id="colors-black"
13431
+ id="color-black"
13201
13432
  name="color"
13202
13433
  onBlur={[Function]}
13203
13434
  onChange={[Function]}
@@ -13205,7 +13436,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple 1`] = `
13205
13436
  value="black"
13206
13437
  />
13207
13438
  <label
13208
- htmlFor="colors-black"
13439
+ htmlFor="color-black"
13209
13440
  >
13210
13441
  Color Black
13211
13442
  </label>
@@ -13249,8 +13480,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13249
13480
  className="base choice"
13250
13481
  >
13251
13482
  <input
13483
+ checked={false}
13252
13484
  disabled={false}
13253
- id="colors-red"
13485
+ id="color-red"
13254
13486
  name="color"
13255
13487
  onBlur={[Function]}
13256
13488
  onChange={[Function]}
@@ -13258,7 +13490,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13258
13490
  value="red"
13259
13491
  />
13260
13492
  <label
13261
- htmlFor="colors-red"
13493
+ htmlFor="color-red"
13262
13494
  >
13263
13495
  Color Red
13264
13496
  </label>
@@ -13267,8 +13499,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13267
13499
  className="base choice"
13268
13500
  >
13269
13501
  <input
13502
+ checked={false}
13270
13503
  disabled={false}
13271
- id="colors-blue"
13504
+ id="color-blue"
13272
13505
  name="color"
13273
13506
  onBlur={[Function]}
13274
13507
  onChange={[Function]}
@@ -13276,7 +13509,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13276
13509
  value="blue"
13277
13510
  />
13278
13511
  <label
13279
- htmlFor="colors-blue"
13512
+ htmlFor="color-blue"
13280
13513
  >
13281
13514
  Color Blue
13282
13515
  </label>
@@ -13285,8 +13518,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13285
13518
  className="base choice"
13286
13519
  >
13287
13520
  <input
13521
+ checked={false}
13288
13522
  disabled={false}
13289
- id="colors-green"
13523
+ id="color-green"
13290
13524
  name="color"
13291
13525
  onBlur={[Function]}
13292
13526
  onChange={[Function]}
@@ -13294,7 +13528,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13294
13528
  value="green"
13295
13529
  />
13296
13530
  <label
13297
- htmlFor="colors-green"
13531
+ htmlFor="color-green"
13298
13532
  >
13299
13533
  Color Green
13300
13534
  </label>
@@ -13303,8 +13537,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13303
13537
  className="base choice"
13304
13538
  >
13305
13539
  <input
13540
+ checked={false}
13306
13541
  disabled={false}
13307
- id="colors-yellow"
13542
+ id="color-yellow"
13308
13543
  name="color"
13309
13544
  onBlur={[Function]}
13310
13545
  onChange={[Function]}
@@ -13312,7 +13547,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13312
13547
  value="yellow"
13313
13548
  />
13314
13549
  <label
13315
- htmlFor="colors-yellow"
13550
+ htmlFor="color-yellow"
13316
13551
  >
13317
13552
  Color Yellow
13318
13553
  </label>
@@ -13321,8 +13556,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13321
13556
  className="base choice"
13322
13557
  >
13323
13558
  <input
13559
+ checked={false}
13324
13560
  disabled={false}
13325
- id="colors-oarnge"
13561
+ id="color-oarnge"
13326
13562
  name="color"
13327
13563
  onBlur={[Function]}
13328
13564
  onChange={[Function]}
@@ -13330,7 +13566,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13330
13566
  value="oarnge"
13331
13567
  />
13332
13568
  <label
13333
- htmlFor="colors-oarnge"
13569
+ htmlFor="color-oarnge"
13334
13570
  >
13335
13571
  Color Orange
13336
13572
  </label>
@@ -13339,8 +13575,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13339
13575
  className="base choice"
13340
13576
  >
13341
13577
  <input
13578
+ checked={false}
13342
13579
  disabled={false}
13343
- id="colors-violet"
13580
+ id="color-violet"
13344
13581
  name="color"
13345
13582
  onBlur={[Function]}
13346
13583
  onChange={[Function]}
@@ -13348,7 +13585,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13348
13585
  value="violet"
13349
13586
  />
13350
13587
  <label
13351
- htmlFor="colors-violet"
13588
+ htmlFor="color-violet"
13352
13589
  >
13353
13590
  Color Violet
13354
13591
  </label>
@@ -13357,8 +13594,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13357
13594
  className="base choice"
13358
13595
  >
13359
13596
  <input
13597
+ checked={false}
13360
13598
  disabled={false}
13361
- id="colors-brown"
13599
+ id="color-brown"
13362
13600
  name="color"
13363
13601
  onBlur={[Function]}
13364
13602
  onChange={[Function]}
@@ -13366,7 +13604,7 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13366
13604
  value="brown"
13367
13605
  />
13368
13606
  <label
13369
- htmlFor="colors-brown"
13607
+ htmlFor="color-brown"
13370
13608
  >
13371
13609
  Color Brown
13372
13610
  </label>
@@ -13375,8 +13613,9 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13375
13613
  className="base choice"
13376
13614
  >
13377
13615
  <input
13616
+ checked={false}
13378
13617
  disabled={false}
13379
- id="colors-black"
13618
+ id="color-black"
13380
13619
  name="color"
13381
13620
  onBlur={[Function]}
13382
13621
  onChange={[Function]}
@@ -13384,7 +13623,194 @@ exports[`Storyshots f/fields/ChoicesInput Multiple With Grid 1`] = `
13384
13623
  value="black"
13385
13624
  />
13386
13625
  <label
13387
- htmlFor="colors-black"
13626
+ htmlFor="color-black"
13627
+ >
13628
+ Color Black
13629
+ </label>
13630
+ </div>
13631
+ </div>
13632
+ </div>
13633
+ <div
13634
+ className="debugger"
13635
+ >
13636
+ <button
13637
+ className="base button x-main2"
13638
+ onClick={[Function]}
13639
+ type="button"
13640
+ >
13641
+ Open FormDebugger
13642
+ </button>
13643
+ </div>
13644
+ </form>
13645
+ `;
13646
+
13647
+ exports[`Storyshots f/fields/ChoicesInput With Default Formik Value 1`] = `
13648
+ <form
13649
+ action="#"
13650
+ onReset={[Function]}
13651
+ onSubmit={[Function]}
13652
+ >
13653
+ <div
13654
+ className="base choices-input x-background2 y-main2"
13655
+ id="colors"
13656
+ style={
13657
+ Object {
13658
+ "--grid-columns-desktop": 3,
13659
+ "--grid-columns-mobile": 2,
13660
+ }
13661
+ }
13662
+ >
13663
+ <div
13664
+ className="choices"
13665
+ >
13666
+ <div
13667
+ className="base choice"
13668
+ >
13669
+ <input
13670
+ checked={false}
13671
+ disabled={false}
13672
+ id="color-red"
13673
+ name="color"
13674
+ onBlur={[Function]}
13675
+ onChange={[Function]}
13676
+ type="radio"
13677
+ value="red"
13678
+ />
13679
+ <label
13680
+ htmlFor="color-red"
13681
+ >
13682
+ Color Red
13683
+ </label>
13684
+ </div>
13685
+ <div
13686
+ className="base choice"
13687
+ >
13688
+ <input
13689
+ checked={false}
13690
+ disabled={false}
13691
+ id="color-blue"
13692
+ name="color"
13693
+ onBlur={[Function]}
13694
+ onChange={[Function]}
13695
+ type="radio"
13696
+ value="blue"
13697
+ />
13698
+ <label
13699
+ htmlFor="color-blue"
13700
+ >
13701
+ Color Blue
13702
+ </label>
13703
+ </div>
13704
+ <div
13705
+ className="base choice"
13706
+ >
13707
+ <input
13708
+ checked={false}
13709
+ disabled={false}
13710
+ id="color-green"
13711
+ name="color"
13712
+ onBlur={[Function]}
13713
+ onChange={[Function]}
13714
+ type="radio"
13715
+ value="green"
13716
+ />
13717
+ <label
13718
+ htmlFor="color-green"
13719
+ >
13720
+ Color Green
13721
+ </label>
13722
+ </div>
13723
+ <div
13724
+ className="base choice"
13725
+ >
13726
+ <input
13727
+ checked={false}
13728
+ disabled={false}
13729
+ id="color-yellow"
13730
+ name="color"
13731
+ onBlur={[Function]}
13732
+ onChange={[Function]}
13733
+ type="radio"
13734
+ value="yellow"
13735
+ />
13736
+ <label
13737
+ htmlFor="color-yellow"
13738
+ >
13739
+ Color Yellow
13740
+ </label>
13741
+ </div>
13742
+ <div
13743
+ className="base choice"
13744
+ >
13745
+ <input
13746
+ checked={false}
13747
+ disabled={false}
13748
+ id="color-oarnge"
13749
+ name="color"
13750
+ onBlur={[Function]}
13751
+ onChange={[Function]}
13752
+ type="radio"
13753
+ value="oarnge"
13754
+ />
13755
+ <label
13756
+ htmlFor="color-oarnge"
13757
+ >
13758
+ Color Orange
13759
+ </label>
13760
+ </div>
13761
+ <div
13762
+ className="base choice"
13763
+ >
13764
+ <input
13765
+ checked={false}
13766
+ disabled={false}
13767
+ id="color-violet"
13768
+ name="color"
13769
+ onBlur={[Function]}
13770
+ onChange={[Function]}
13771
+ type="radio"
13772
+ value="violet"
13773
+ />
13774
+ <label
13775
+ htmlFor="color-violet"
13776
+ >
13777
+ Color Violet
13778
+ </label>
13779
+ </div>
13780
+ <div
13781
+ className="base choice"
13782
+ >
13783
+ <input
13784
+ checked={false}
13785
+ disabled={false}
13786
+ id="color-brown"
13787
+ name="color"
13788
+ onBlur={[Function]}
13789
+ onChange={[Function]}
13790
+ type="radio"
13791
+ value="brown"
13792
+ />
13793
+ <label
13794
+ htmlFor="color-brown"
13795
+ >
13796
+ Color Brown
13797
+ </label>
13798
+ </div>
13799
+ <div
13800
+ className="base choice"
13801
+ >
13802
+ <input
13803
+ checked={false}
13804
+ disabled={false}
13805
+ id="color-black"
13806
+ name="color"
13807
+ onBlur={[Function]}
13808
+ onChange={[Function]}
13809
+ type="radio"
13810
+ value="black"
13811
+ />
13812
+ <label
13813
+ htmlFor="color-black"
13388
13814
  >
13389
13815
  Color Black
13390
13816
  </label>
@@ -13415,7 +13841,7 @@ exports[`Storyshots f/fields/QueryCombobox Multiple Select 1`] = `
13415
13841
  className="base multiple-combobox y-background2"
13416
13842
  >
13417
13843
  <label
13418
- className="base label x-main2"
13844
+ className="base form-label x-main2"
13419
13845
  htmlFor="teams"
13420
13846
  id="downshift-4-label"
13421
13847
  >
@@ -13496,7 +13922,7 @@ exports[`Storyshots f/fields/QueryCombobox Multiple Select With Default Formik S
13496
13922
  className="base multiple-combobox y-background2"
13497
13923
  >
13498
13924
  <label
13499
- className="base label x-main2"
13925
+ className="base form-label x-main2"
13500
13926
  htmlFor="teams"
13501
13927
  id="downshift-5-label"
13502
13928
  >
@@ -13627,7 +14053,7 @@ exports[`Storyshots f/fields/QueryCombobox Single Select 1`] = `
13627
14053
  className="base combobox y-background2"
13628
14054
  >
13629
14055
  <label
13630
- className="base label x-main2"
14056
+ className="base form-label x-main2"
13631
14057
  htmlFor="team"
13632
14058
  id="downshift-2-label"
13633
14059
  >
@@ -13707,7 +14133,7 @@ exports[`Storyshots f/fields/QueryCombobox Single Select With Default Formik Sta
13707
14133
  className="base combobox y-background2"
13708
14134
  >
13709
14135
  <label
13710
- className="base label x-main2"
14136
+ className="base form-label x-main2"
13711
14137
  htmlFor="team"
13712
14138
  id="downshift-3-label"
13713
14139
  >
@@ -13787,7 +14213,7 @@ exports[`Storyshots f/fields/QuerySelect Base 1`] = `
13787
14213
  className="base select-input y-background2"
13788
14214
  >
13789
14215
  <label
13790
- className="base label x-main2"
14216
+ className="base form-label x-main2"
13791
14217
  htmlFor="status"
13792
14218
  >
13793
14219
  Select Task Status
@@ -13830,7 +14256,7 @@ exports[`Storyshots f/fields/QuerySelect Loading Options 1`] = `
13830
14256
  className="base select-input y-background2"
13831
14257
  >
13832
14258
  <label
13833
- className="base label x-main2"
14259
+ className="base form-label x-main2"
13834
14260
  htmlFor="status"
13835
14261
  >
13836
14262
  Select Task Status
@@ -13873,7 +14299,7 @@ exports[`Storyshots f/fields/QuerySelect With Default Value 1`] = `
13873
14299
  className="base select-input y-background2"
13874
14300
  >
13875
14301
  <label
13876
- className="base label x-main2"
14302
+ className="base form-label x-main2"
13877
14303
  htmlFor="status"
13878
14304
  >
13879
14305
  Select Task Status
@@ -13916,7 +14342,7 @@ exports[`Storyshots f/fields/RatingsInput Base 1`] = `
13916
14342
  className="base ratings-input"
13917
14343
  >
13918
14344
  <label
13919
- className="base label input-label v50 mb-v x-main2"
14345
+ className="base form-label input-label v50 mb-v x-main2"
13920
14346
  htmlFor="ratings"
13921
14347
  >
13922
14348
  Your Rating
@@ -14065,7 +14491,7 @@ exports[`Storyshots f/fields/RatingsInput Labels 1`] = `
14065
14491
  className="base ratings-input"
14066
14492
  >
14067
14493
  <label
14068
- className="base label input-label v50 mb-v x-main2"
14494
+ className="base form-label input-label v50 mb-v x-main2"
14069
14495
  htmlFor="ratings"
14070
14496
  >
14071
14497
  Your Rating
@@ -14249,7 +14675,7 @@ exports[`Storyshots f/fields/RatingsInput Numbers 1`] = `
14249
14675
  className="base ratings-input"
14250
14676
  >
14251
14677
  <label
14252
- className="base label input-label v50 mb-v x-main2"
14678
+ className="base form-label input-label v50 mb-v x-main2"
14253
14679
  htmlFor="ratings"
14254
14680
  >
14255
14681
  Your Rating
@@ -14423,7 +14849,7 @@ exports[`Storyshots f/fields/SelectInput Base 1`] = `
14423
14849
  className="base select-input y-background2"
14424
14850
  >
14425
14851
  <label
14426
- className="base label x-main2"
14852
+ className="base form-label x-main2"
14427
14853
  htmlFor="workType"
14428
14854
  >
14429
14855
  Work Type
@@ -14491,7 +14917,7 @@ exports[`Storyshots f/fields/SelectInput Disabled Select Input 1`] = `
14491
14917
  className="base select-input y-background2"
14492
14918
  >
14493
14919
  <label
14494
- className="base label x-main2"
14920
+ className="base form-label x-main2"
14495
14921
  htmlFor="workType"
14496
14922
  >
14497
14923
  Work Type
@@ -14559,7 +14985,7 @@ exports[`Storyshots f/fields/SelectInput Required 1`] = `
14559
14985
  className="base select-input y-background2"
14560
14986
  >
14561
14987
  <label
14562
- className="base label x-main2"
14988
+ className="base form-label x-main2"
14563
14989
  htmlFor="workType"
14564
14990
  >
14565
14991
  Work Type
@@ -14627,7 +15053,7 @@ exports[`Storyshots f/fields/SelectInput String And Objects 1`] = `
14627
15053
  className="base select-input y-background2"
14628
15054
  >
14629
15055
  <label
14630
- className="base label x-main2"
15056
+ className="base form-label x-main2"
14631
15057
  htmlFor="workType"
14632
15058
  >
14633
15059
  Work Type
@@ -14716,7 +15142,7 @@ exports[`Storyshots f/fields/TextInput Base 1`] = `
14716
15142
  className="base text-input y-background2"
14717
15143
  >
14718
15144
  <label
14719
- className="base label v50 mb-v x-main2"
15145
+ className="base form-label v50 mb-v x-main2"
14720
15146
  htmlFor="firstName"
14721
15147
  >
14722
15148
  What's your first name ?
@@ -14760,7 +15186,7 @@ exports[`Storyshots f/fields/TextInput Date 1`] = `
14760
15186
  className="base text-input y-background2"
14761
15187
  >
14762
15188
  <label
14763
- className="base label v50 mb-v x-main2"
15189
+ className="base form-label v50 mb-v x-main2"
14764
15190
  htmlFor="date"
14765
15191
  >
14766
15192
  Select date
@@ -14804,7 +15230,7 @@ exports[`Storyshots f/fields/TextInput Time 1`] = `
14804
15230
  className="base text-input y-background2"
14805
15231
  >
14806
15232
  <label
14807
- className="base label v50 mb-v x-main2"
15233
+ className="base form-label v50 mb-v x-main2"
14808
15234
  htmlFor="time"
14809
15235
  >
14810
15236
  Select time
@@ -14848,7 +15274,7 @@ exports[`Storyshots f/fields/TextInput With Auto Complete Off 1`] = `
14848
15274
  className="base text-input y-background2"
14849
15275
  >
14850
15276
  <label
14851
- className="base label v50 mb-v x-main2"
15277
+ className="base form-label v50 mb-v x-main2"
14852
15278
  htmlFor="firstName"
14853
15279
  >
14854
15280
  What's your first name ?
@@ -14893,7 +15319,7 @@ exports[`Storyshots f/fields/TextInput With Disabled 1`] = `
14893
15319
  className="base text-input y-background2"
14894
15320
  >
14895
15321
  <label
14896
- className="base label v50 mb-v x-main2"
15322
+ className="base form-label v50 mb-v x-main2"
14897
15323
  htmlFor="firstName"
14898
15324
  >
14899
15325
  What's your first name ?
@@ -14937,7 +15363,7 @@ exports[`Storyshots f/fields/TextInput With Placeholder 1`] = `
14937
15363
  className="base text-input y-background2"
14938
15364
  >
14939
15365
  <label
14940
- className="base label v50 mb-v x-main2"
15366
+ className="base form-label v50 mb-v x-main2"
14941
15367
  htmlFor="firstName"
14942
15368
  >
14943
15369
  What's your first name ?
@@ -14982,7 +15408,7 @@ exports[`Storyshots f/fields/TextInput With Validation 1`] = `
14982
15408
  className="base text-input y-background2"
14983
15409
  >
14984
15410
  <label
14985
- className="base label v50 mb-v x-main2"
15411
+ className="base form-label v50 mb-v x-main2"
14986
15412
  htmlFor="firstName"
14987
15413
  >
14988
15414
  What's your first name ?
@@ -15023,7 +15449,7 @@ exports[`Storyshots f/fields/TextareaInput Base 1`] = `
15023
15449
  className="base text-area-input y-background2"
15024
15450
  >
15025
15451
  <label
15026
- className="base label v50 mb-v x-main2"
15452
+ className="base form-label v50 mb-v x-main2"
15027
15453
  htmlFor="feedback"
15028
15454
  >
15029
15455
  What can we improve on?
@@ -15067,7 +15493,7 @@ exports[`Storyshots f/fields/TextareaInput Disable Resize 1`] = `
15067
15493
  className="base text-area-input y-background2"
15068
15494
  >
15069
15495
  <label
15070
- className="base label v50 mb-v x-main2"
15496
+ className="base form-label v50 mb-v x-main2"
15071
15497
  htmlFor="feedback"
15072
15498
  >
15073
15499
  What can we improve on?
@@ -15111,7 +15537,7 @@ exports[`Storyshots f/fields/TextareaInput Disabled 1`] = `
15111
15537
  className="base text-area-input y-background2"
15112
15538
  >
15113
15539
  <label
15114
- className="base label v50 mb-v x-main2"
15540
+ className="base form-label v50 mb-v x-main2"
15115
15541
  htmlFor="feedback"
15116
15542
  >
15117
15543
  What can we improve on?
@@ -15155,7 +15581,7 @@ exports[`Storyshots f/fields/TextareaInput Horizontal Resize 1`] = `
15155
15581
  className="base text-area-input y-background2"
15156
15582
  >
15157
15583
  <label
15158
- className="base label v50 mb-v x-main2"
15584
+ className="base form-label v50 mb-v x-main2"
15159
15585
  htmlFor="feedback"
15160
15586
  >
15161
15587
  What can we improve on?
@@ -15199,7 +15625,7 @@ exports[`Storyshots f/fields/TextareaInput Placeholder 1`] = `
15199
15625
  className="base text-area-input y-background2"
15200
15626
  >
15201
15627
  <label
15202
- className="base label v50 mb-v x-main2"
15628
+ className="base form-label v50 mb-v x-main2"
15203
15629
  htmlFor="feedback"
15204
15630
  >
15205
15631
  What can we improve on?
@@ -15244,7 +15670,7 @@ exports[`Storyshots f/fields/TextareaInput Validation 1`] = `
15244
15670
  className="base text-area-input y-background2"
15245
15671
  >
15246
15672
  <label
15247
- className="base label v50 mb-v x-main2"
15673
+ className="base form-label v50 mb-v x-main2"
15248
15674
  htmlFor="feedback"
15249
15675
  >
15250
15676
  What can we improve on?
@@ -15288,7 +15714,7 @@ exports[`Storyshots f/fields/TextareaInput Vertical Resize 1`] = `
15288
15714
  className="base text-area-input y-background2"
15289
15715
  >
15290
15716
  <label
15291
- className="base label v50 mb-v x-main2"
15717
+ className="base form-label v50 mb-v x-main2"
15292
15718
  htmlFor="feedback"
15293
15719
  >
15294
15720
  What can we improve on?