@comicrelief/component-library 8.74.1 → 8.75.0

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 (60) hide show
  1. package/README.md +12 -0
  2. package/dist/index.cjs.js +578 -572
  3. package/dist/index.es.js +5423 -5367
  4. package/dist/style.css +1 -1
  5. package/package.json +1 -1
  6. package/src/components/Atoms/AmbientVideo/AmbientVideo.js +4 -3
  7. package/src/components/Atoms/Button/Button.js +1 -1
  8. package/src/components/Atoms/Button/Button.test.js +1 -0
  9. package/src/components/Atoms/ButtonWithStates/ButtonWithStates.js +2 -2
  10. package/src/components/Atoms/Confetti/Confetti.js +1 -1
  11. package/src/components/Atoms/Icons/IconsExample.jsx +2 -1
  12. package/src/components/Atoms/Icons/Post.js +37 -0
  13. package/src/components/Atoms/Icons/index.js +1 -0
  14. package/src/components/Atoms/Icons/post.svg +3 -0
  15. package/src/components/Atoms/Pagination/Pagination.js +1 -0
  16. package/src/components/Atoms/Pagination/__snapshots__/Pagination.test.js.snap +110 -0
  17. package/src/components/Atoms/Picture/Picture.js +4 -0
  18. package/src/components/Atoms/Picture/Picture.test.js +4 -0
  19. package/src/components/Atoms/SocialIcons/SocialIcons.js +2 -2
  20. package/src/components/Atoms/SocialIcons/__snapshots__/SocialIcons.test.js.snap +15 -0
  21. package/src/components/Atoms/TextInputWithDropdown/TextInputWithDropdown.js +6 -1
  22. package/src/components/Atoms/TextInputWithDropdown/__snapshots__/TextInputWithDropdown.test.js.snap +12 -0
  23. package/src/components/Molecules/ArticleTeaser/ArticleTeaser.test.js +4 -0
  24. package/src/components/Molecules/Box/__snapshots__/Box.test.js.snap +2 -0
  25. package/src/components/Molecules/CTA/CTAMultiCard/CTAMultiCard.js +4 -2
  26. package/src/components/Molecules/CTA/CTAMultiCard/__snapshots__/CTAMultiCard.test.js.snap +40 -0
  27. package/src/components/Molecules/CTA/CTASingleCard/CTASingleCard.js +2 -1
  28. package/src/components/Molecules/CTA/CTASingleCard/__snapshots__/CTASingleCard.test.js.snap +6 -0
  29. package/src/components/Molecules/Card/Card.js +3 -1
  30. package/src/components/Molecules/Card/__snapshots__/Card.test.js.snap +8 -0
  31. package/src/components/Molecules/CardDs/__snapshots__/CardDs.test.js.snap +4 -0
  32. package/src/components/Molecules/Countdown/Countdown.js +5 -5
  33. package/src/components/Molecules/Descriptor/Descriptor.test.js +221 -221
  34. package/src/components/Molecules/DoubleCopy/DoubleCopy.js +3 -3
  35. package/src/components/Molecules/DoubleCopy/DoubleCopy.test.js +3 -0
  36. package/src/components/Molecules/EmailSignUp/EmailSignUp.js +8 -7
  37. package/src/components/Molecules/HeroBanner/__snapshots__/HeroBanner.test.js.snap +8 -0
  38. package/src/components/Molecules/PartnerLink/PartnerLink.test.js +2 -0
  39. package/src/components/Molecules/PictureOrVideo/__snapshots__/PictureOrVideo.test.js.snap +10 -0
  40. package/src/components/Molecules/Promo/__snapshots__/Promo.test.js.snap +4 -0
  41. package/src/components/Molecules/SchoolLookup/__snapshots__/SchoolLookup.test.js.snap +2 -0
  42. package/src/components/Molecules/SearchResult/__snapshots__/SearchResult.test.js.snap +8 -0
  43. package/src/components/Molecules/SingleMessage/__snapshots__/SingleMessage.test.js.snap +12 -0
  44. package/src/components/Molecules/SingleMessageDS/__snapshots__/SingleMessageDs.test.js.snap +2 -0
  45. package/src/components/Molecules/StatsSlice/StatsSlice.js +2 -1
  46. package/src/components/Molecules/StatsSlice/_StatNode.js +7 -6
  47. package/src/components/Molecules/StatsSlice/__snapshots__/StatsSlice.test.js.snap +28 -0
  48. package/src/components/Molecules/Typeahead/__snapshots__/Typeahead.test.js.snap +2 -0
  49. package/src/components/Organisms/DynamicGallery/DynamicGallery.js +4 -3
  50. package/src/components/Organisms/DynamicGallery/_DynamicGalleryColumn.js +4 -2
  51. package/src/components/Organisms/DynamicGallery/_Lightbox.js +11 -8
  52. package/src/components/Organisms/DynamicGallery/__snapshots__/DynamicGallery.test.js.snap +56 -10
  53. package/src/components/Organisms/EmailBanner/__snapshots__/EmailBanner.test.js.snap +8 -0
  54. package/src/components/Organisms/EmailSignUp/__snapshots__/EmailSignUp.test.js.snap +2 -0
  55. package/src/components/Organisms/Footer/__snapshots__/Footer.test.js.snap +5 -0
  56. package/src/components/Organisms/FooterNew/__snapshots__/FooterNew.test.js.snap +62 -22
  57. package/src/components/Organisms/Membership/Membership.test.js +2 -0
  58. package/src/docs/InstallationDoc.jsx +3 -0
  59. package/src/index.js +2 -0
  60. package/src/theme/shared/global.css +0 -1
@@ -60,6 +60,7 @@ exports[`renders correctly in full size with first page selected 1`] = `
60
60
  <a
61
61
  aria-label="First page"
62
62
  className="c2"
63
+ data-testid="Pagination"
63
64
  href={null}
64
65
  onClick={[Function]}
65
66
  target="_self"
@@ -73,6 +74,7 @@ exports[`renders correctly in full size with first page selected 1`] = `
73
74
  <a
74
75
  aria-label="Previous page"
75
76
  className="c2"
77
+ data-testid="Pagination"
76
78
  href={null}
77
79
  onClick={[Function]}
78
80
  target="_self"
@@ -86,6 +88,7 @@ exports[`renders correctly in full size with first page selected 1`] = `
86
88
  <a
87
89
  aria-label="Page 1"
88
90
  className="c3"
91
+ data-testid="Pagination"
89
92
  href={null}
90
93
  onClick={[Function]}
91
94
  target="_self"
@@ -99,6 +102,7 @@ exports[`renders correctly in full size with first page selected 1`] = `
99
102
  <a
100
103
  aria-label="Page 2"
101
104
  className="c4"
105
+ data-testid="Pagination"
102
106
  href="example.com/page/2"
103
107
  onClick={[Function]}
104
108
  target="_self"
@@ -112,6 +116,7 @@ exports[`renders correctly in full size with first page selected 1`] = `
112
116
  <a
113
117
  aria-label="Page 3"
114
118
  className="c4"
119
+ data-testid="Pagination"
115
120
  href="example.com/page/3"
116
121
  onClick={[Function]}
117
122
  target="_self"
@@ -125,6 +130,7 @@ exports[`renders correctly in full size with first page selected 1`] = `
125
130
  <a
126
131
  aria-label="Page 4"
127
132
  className="c4"
133
+ data-testid="Pagination"
128
134
  href="example.com/page/4"
129
135
  onClick={[Function]}
130
136
  target="_self"
@@ -138,6 +144,7 @@ exports[`renders correctly in full size with first page selected 1`] = `
138
144
  <a
139
145
  aria-label="Page 5"
140
146
  className="c4"
147
+ data-testid="Pagination"
141
148
  href="example.com/page/5"
142
149
  onClick={[Function]}
143
150
  target="_self"
@@ -151,6 +158,7 @@ exports[`renders correctly in full size with first page selected 1`] = `
151
158
  <a
152
159
  aria-label="Next page"
153
160
  className="c4"
161
+ data-testid="Pagination"
154
162
  href="example.com/page/2"
155
163
  onClick={[Function]}
156
164
  target="_self"
@@ -164,6 +172,7 @@ exports[`renders correctly in full size with first page selected 1`] = `
164
172
  <a
165
173
  aria-label="Last page"
166
174
  className="c4"
175
+ data-testid="Pagination"
167
176
  href="example.com/page/5"
168
177
  onClick={[Function]}
169
178
  target="_self"
@@ -234,6 +243,7 @@ exports[`renders correctly in full size with last page selected 1`] = `
234
243
  <a
235
244
  aria-label="First page"
236
245
  className="c2"
246
+ data-testid="Pagination"
237
247
  href="example.com/page/1"
238
248
  onClick={[Function]}
239
249
  target="_self"
@@ -247,6 +257,7 @@ exports[`renders correctly in full size with last page selected 1`] = `
247
257
  <a
248
258
  aria-label="Previous page"
249
259
  className="c2"
260
+ data-testid="Pagination"
250
261
  href="example.com/page/4"
251
262
  onClick={[Function]}
252
263
  target="_self"
@@ -260,6 +271,7 @@ exports[`renders correctly in full size with last page selected 1`] = `
260
271
  <a
261
272
  aria-label="Page 1"
262
273
  className="c2"
274
+ data-testid="Pagination"
263
275
  href="example.com/page/1"
264
276
  onClick={[Function]}
265
277
  target="_self"
@@ -273,6 +285,7 @@ exports[`renders correctly in full size with last page selected 1`] = `
273
285
  <a
274
286
  aria-label="Page 2"
275
287
  className="c2"
288
+ data-testid="Pagination"
276
289
  href="example.com/page/2"
277
290
  onClick={[Function]}
278
291
  target="_self"
@@ -286,6 +299,7 @@ exports[`renders correctly in full size with last page selected 1`] = `
286
299
  <a
287
300
  aria-label="Page 3"
288
301
  className="c2"
302
+ data-testid="Pagination"
289
303
  href="example.com/page/3"
290
304
  onClick={[Function]}
291
305
  target="_self"
@@ -299,6 +313,7 @@ exports[`renders correctly in full size with last page selected 1`] = `
299
313
  <a
300
314
  aria-label="Page 4"
301
315
  className="c2"
316
+ data-testid="Pagination"
302
317
  href="example.com/page/4"
303
318
  onClick={[Function]}
304
319
  target="_self"
@@ -312,6 +327,7 @@ exports[`renders correctly in full size with last page selected 1`] = `
312
327
  <a
313
328
  aria-label="Page 5"
314
329
  className="c3"
330
+ data-testid="Pagination"
315
331
  href={null}
316
332
  onClick={[Function]}
317
333
  target="_self"
@@ -325,6 +341,7 @@ exports[`renders correctly in full size with last page selected 1`] = `
325
341
  <a
326
342
  aria-label="Next page"
327
343
  className="c4"
344
+ data-testid="Pagination"
328
345
  href={null}
329
346
  onClick={[Function]}
330
347
  target="_self"
@@ -338,6 +355,7 @@ exports[`renders correctly in full size with last page selected 1`] = `
338
355
  <a
339
356
  aria-label="Last page"
340
357
  className="c4"
358
+ data-testid="Pagination"
341
359
  href={null}
342
360
  onClick={[Function]}
343
361
  target="_self"
@@ -408,6 +426,7 @@ exports[`renders correctly in full size with max pages less than current page 1`
408
426
  <a
409
427
  aria-label="First page"
410
428
  className="c2"
429
+ data-testid="Pagination"
411
430
  href="example.com/page/1"
412
431
  onClick={[Function]}
413
432
  target="_self"
@@ -421,6 +440,7 @@ exports[`renders correctly in full size with max pages less than current page 1`
421
440
  <a
422
441
  aria-label="Previous page"
423
442
  className="c2"
443
+ data-testid="Pagination"
424
444
  href="example.com/page/18"
425
445
  onClick={[Function]}
426
446
  target="_self"
@@ -434,6 +454,7 @@ exports[`renders correctly in full size with max pages less than current page 1`
434
454
  <a
435
455
  aria-label="More pages"
436
456
  className="c3"
457
+ data-testid="Pagination"
437
458
  href={null}
438
459
  onClick={[Function]}
439
460
  target="_self"
@@ -447,6 +468,7 @@ exports[`renders correctly in full size with max pages less than current page 1`
447
468
  <a
448
469
  aria-label="Page 16"
449
470
  className="c2"
471
+ data-testid="Pagination"
450
472
  href="example.com/page/16"
451
473
  onClick={[Function]}
452
474
  target="_self"
@@ -460,6 +482,7 @@ exports[`renders correctly in full size with max pages less than current page 1`
460
482
  <a
461
483
  aria-label="Page 17"
462
484
  className="c2"
485
+ data-testid="Pagination"
463
486
  href="example.com/page/17"
464
487
  onClick={[Function]}
465
488
  target="_self"
@@ -473,6 +496,7 @@ exports[`renders correctly in full size with max pages less than current page 1`
473
496
  <a
474
497
  aria-label="Page 18"
475
498
  className="c2"
499
+ data-testid="Pagination"
476
500
  href="example.com/page/18"
477
501
  onClick={[Function]}
478
502
  target="_self"
@@ -486,6 +510,7 @@ exports[`renders correctly in full size with max pages less than current page 1`
486
510
  <a
487
511
  aria-label="Page 19"
488
512
  className="c4"
513
+ data-testid="Pagination"
489
514
  href={null}
490
515
  onClick={[Function]}
491
516
  target="_self"
@@ -499,6 +524,7 @@ exports[`renders correctly in full size with max pages less than current page 1`
499
524
  <a
500
525
  aria-label="Page 20"
501
526
  className="c2"
527
+ data-testid="Pagination"
502
528
  href="example.com/page/20"
503
529
  onClick={[Function]}
504
530
  target="_self"
@@ -512,6 +538,7 @@ exports[`renders correctly in full size with max pages less than current page 1`
512
538
  <a
513
539
  aria-label="Next page"
514
540
  className="c2"
541
+ data-testid="Pagination"
515
542
  href="example.com/page/20"
516
543
  onClick={[Function]}
517
544
  target="_self"
@@ -525,6 +552,7 @@ exports[`renders correctly in full size with max pages less than current page 1`
525
552
  <a
526
553
  aria-label="Last page"
527
554
  className="c2"
555
+ data-testid="Pagination"
528
556
  href="example.com/page/20"
529
557
  onClick={[Function]}
530
558
  target="_self"
@@ -595,6 +623,7 @@ exports[`renders correctly in full size with max pages less than total pages 1`]
595
623
  <a
596
624
  aria-label="First page"
597
625
  className="c2"
626
+ data-testid="Pagination"
598
627
  href="example.com/page/1"
599
628
  onClick={[Function]}
600
629
  target="_self"
@@ -608,6 +637,7 @@ exports[`renders correctly in full size with max pages less than total pages 1`]
608
637
  <a
609
638
  aria-label="Previous page"
610
639
  className="c2"
640
+ data-testid="Pagination"
611
641
  href="example.com/page/1"
612
642
  onClick={[Function]}
613
643
  target="_self"
@@ -621,6 +651,7 @@ exports[`renders correctly in full size with max pages less than total pages 1`]
621
651
  <a
622
652
  aria-label="Page 1"
623
653
  className="c2"
654
+ data-testid="Pagination"
624
655
  href="example.com/page/1"
625
656
  onClick={[Function]}
626
657
  target="_self"
@@ -634,6 +665,7 @@ exports[`renders correctly in full size with max pages less than total pages 1`]
634
665
  <a
635
666
  aria-label="Page 2"
636
667
  className="c3"
668
+ data-testid="Pagination"
637
669
  href={null}
638
670
  onClick={[Function]}
639
671
  target="_self"
@@ -647,6 +679,7 @@ exports[`renders correctly in full size with max pages less than total pages 1`]
647
679
  <a
648
680
  aria-label="Page 3"
649
681
  className="c2"
682
+ data-testid="Pagination"
650
683
  href="example.com/page/3"
651
684
  onClick={[Function]}
652
685
  target="_self"
@@ -660,6 +693,7 @@ exports[`renders correctly in full size with max pages less than total pages 1`]
660
693
  <a
661
694
  aria-label="Page 4"
662
695
  className="c2"
696
+ data-testid="Pagination"
663
697
  href="example.com/page/4"
664
698
  onClick={[Function]}
665
699
  target="_self"
@@ -673,6 +707,7 @@ exports[`renders correctly in full size with max pages less than total pages 1`]
673
707
  <a
674
708
  aria-label="Page 5"
675
709
  className="c2"
710
+ data-testid="Pagination"
676
711
  href="example.com/page/5"
677
712
  onClick={[Function]}
678
713
  target="_self"
@@ -686,6 +721,7 @@ exports[`renders correctly in full size with max pages less than total pages 1`]
686
721
  <a
687
722
  aria-label="Page 6"
688
723
  className="c2"
724
+ data-testid="Pagination"
689
725
  href="example.com/page/6"
690
726
  onClick={[Function]}
691
727
  target="_self"
@@ -699,6 +735,7 @@ exports[`renders correctly in full size with max pages less than total pages 1`]
699
735
  <a
700
736
  aria-label="More pages"
701
737
  className="c4"
738
+ data-testid="Pagination"
702
739
  href={null}
703
740
  onClick={[Function]}
704
741
  target="_self"
@@ -712,6 +749,7 @@ exports[`renders correctly in full size with max pages less than total pages 1`]
712
749
  <a
713
750
  aria-label="Next page"
714
751
  className="c2"
752
+ data-testid="Pagination"
715
753
  href="example.com/page/3"
716
754
  onClick={[Function]}
717
755
  target="_self"
@@ -725,6 +763,7 @@ exports[`renders correctly in full size with max pages less than total pages 1`]
725
763
  <a
726
764
  aria-label="Last page"
727
765
  className="c2"
766
+ data-testid="Pagination"
728
767
  href="example.com/page/10"
729
768
  onClick={[Function]}
730
769
  target="_self"
@@ -784,6 +823,7 @@ exports[`renders correctly in full size with max pages more than total pages 1`]
784
823
  <a
785
824
  aria-label="First page"
786
825
  className="c2"
826
+ data-testid="Pagination"
787
827
  href="example.com/page/1"
788
828
  onClick={[Function]}
789
829
  target="_self"
@@ -797,6 +837,7 @@ exports[`renders correctly in full size with max pages more than total pages 1`]
797
837
  <a
798
838
  aria-label="Previous page"
799
839
  className="c2"
840
+ data-testid="Pagination"
800
841
  href="example.com/page/3"
801
842
  onClick={[Function]}
802
843
  target="_self"
@@ -810,6 +851,7 @@ exports[`renders correctly in full size with max pages more than total pages 1`]
810
851
  <a
811
852
  aria-label="Page 1"
812
853
  className="c2"
854
+ data-testid="Pagination"
813
855
  href="example.com/page/1"
814
856
  onClick={[Function]}
815
857
  target="_self"
@@ -823,6 +865,7 @@ exports[`renders correctly in full size with max pages more than total pages 1`]
823
865
  <a
824
866
  aria-label="Page 2"
825
867
  className="c2"
868
+ data-testid="Pagination"
826
869
  href="example.com/page/2"
827
870
  onClick={[Function]}
828
871
  target="_self"
@@ -836,6 +879,7 @@ exports[`renders correctly in full size with max pages more than total pages 1`]
836
879
  <a
837
880
  aria-label="Page 3"
838
881
  className="c2"
882
+ data-testid="Pagination"
839
883
  href="example.com/page/3"
840
884
  onClick={[Function]}
841
885
  target="_self"
@@ -849,6 +893,7 @@ exports[`renders correctly in full size with max pages more than total pages 1`]
849
893
  <a
850
894
  aria-label="Page 4"
851
895
  className="c3"
896
+ data-testid="Pagination"
852
897
  href={null}
853
898
  onClick={[Function]}
854
899
  target="_self"
@@ -862,6 +907,7 @@ exports[`renders correctly in full size with max pages more than total pages 1`]
862
907
  <a
863
908
  aria-label="Page 5"
864
909
  className="c2"
910
+ data-testid="Pagination"
865
911
  href="example.com/page/5"
866
912
  onClick={[Function]}
867
913
  target="_self"
@@ -875,6 +921,7 @@ exports[`renders correctly in full size with max pages more than total pages 1`]
875
921
  <a
876
922
  aria-label="Page 6"
877
923
  className="c2"
924
+ data-testid="Pagination"
878
925
  href="example.com/page/6"
879
926
  onClick={[Function]}
880
927
  target="_self"
@@ -888,6 +935,7 @@ exports[`renders correctly in full size with max pages more than total pages 1`]
888
935
  <a
889
936
  aria-label="Next page"
890
937
  className="c2"
938
+ data-testid="Pagination"
891
939
  href="example.com/page/5"
892
940
  onClick={[Function]}
893
941
  target="_self"
@@ -901,6 +949,7 @@ exports[`renders correctly in full size with max pages more than total pages 1`]
901
949
  <a
902
950
  aria-label="Last page"
903
951
  className="c2"
952
+ data-testid="Pagination"
904
953
  href="example.com/page/6"
905
954
  onClick={[Function]}
906
955
  target="_self"
@@ -971,6 +1020,7 @@ exports[`renders correctly in full size with more on both sides 1`] = `
971
1020
  <a
972
1021
  aria-label="First page"
973
1022
  className="c2"
1023
+ data-testid="Pagination"
974
1024
  href="example.com/page/1"
975
1025
  onClick={[Function]}
976
1026
  target="_self"
@@ -984,6 +1034,7 @@ exports[`renders correctly in full size with more on both sides 1`] = `
984
1034
  <a
985
1035
  aria-label="Previous page"
986
1036
  className="c2"
1037
+ data-testid="Pagination"
987
1038
  href="example.com/page/3"
988
1039
  onClick={[Function]}
989
1040
  target="_self"
@@ -997,6 +1048,7 @@ exports[`renders correctly in full size with more on both sides 1`] = `
997
1048
  <a
998
1049
  aria-label="More pages"
999
1050
  className="c3"
1051
+ data-testid="Pagination"
1000
1052
  href={null}
1001
1053
  onClick={[Function]}
1002
1054
  target="_self"
@@ -1010,6 +1062,7 @@ exports[`renders correctly in full size with more on both sides 1`] = `
1010
1062
  <a
1011
1063
  aria-label="Page 2"
1012
1064
  className="c2"
1065
+ data-testid="Pagination"
1013
1066
  href="example.com/page/2"
1014
1067
  onClick={[Function]}
1015
1068
  target="_self"
@@ -1023,6 +1076,7 @@ exports[`renders correctly in full size with more on both sides 1`] = `
1023
1076
  <a
1024
1077
  aria-label="Page 3"
1025
1078
  className="c2"
1079
+ data-testid="Pagination"
1026
1080
  href="example.com/page/3"
1027
1081
  onClick={[Function]}
1028
1082
  target="_self"
@@ -1036,6 +1090,7 @@ exports[`renders correctly in full size with more on both sides 1`] = `
1036
1090
  <a
1037
1091
  aria-label="Page 4"
1038
1092
  className="c4"
1093
+ data-testid="Pagination"
1039
1094
  href={null}
1040
1095
  onClick={[Function]}
1041
1096
  target="_self"
@@ -1049,6 +1104,7 @@ exports[`renders correctly in full size with more on both sides 1`] = `
1049
1104
  <a
1050
1105
  aria-label="Page 5"
1051
1106
  className="c2"
1107
+ data-testid="Pagination"
1052
1108
  href="example.com/page/5"
1053
1109
  onClick={[Function]}
1054
1110
  target="_self"
@@ -1062,6 +1118,7 @@ exports[`renders correctly in full size with more on both sides 1`] = `
1062
1118
  <a
1063
1119
  aria-label="Page 6"
1064
1120
  className="c2"
1121
+ data-testid="Pagination"
1065
1122
  href="example.com/page/6"
1066
1123
  onClick={[Function]}
1067
1124
  target="_self"
@@ -1075,6 +1132,7 @@ exports[`renders correctly in full size with more on both sides 1`] = `
1075
1132
  <a
1076
1133
  aria-label="More pages"
1077
1134
  className="c3"
1135
+ data-testid="Pagination"
1078
1136
  href={null}
1079
1137
  onClick={[Function]}
1080
1138
  target="_self"
@@ -1088,6 +1146,7 @@ exports[`renders correctly in full size with more on both sides 1`] = `
1088
1146
  <a
1089
1147
  aria-label="Next page"
1090
1148
  className="c2"
1149
+ data-testid="Pagination"
1091
1150
  href="example.com/page/5"
1092
1151
  onClick={[Function]}
1093
1152
  target="_self"
@@ -1101,6 +1160,7 @@ exports[`renders correctly in full size with more on both sides 1`] = `
1101
1160
  <a
1102
1161
  aria-label="Last page"
1103
1162
  className="c2"
1163
+ data-testid="Pagination"
1104
1164
  href="example.com/page/7"
1105
1165
  onClick={[Function]}
1106
1166
  target="_self"
@@ -1171,6 +1231,7 @@ exports[`renders correctly in full size with more on left 1`] = `
1171
1231
  <a
1172
1232
  aria-label="First page"
1173
1233
  className="c2"
1234
+ data-testid="Pagination"
1174
1235
  href="example.com/page/1"
1175
1236
  onClick={[Function]}
1176
1237
  target="_self"
@@ -1184,6 +1245,7 @@ exports[`renders correctly in full size with more on left 1`] = `
1184
1245
  <a
1185
1246
  aria-label="Previous page"
1186
1247
  className="c2"
1248
+ data-testid="Pagination"
1187
1249
  href="example.com/page/3"
1188
1250
  onClick={[Function]}
1189
1251
  target="_self"
@@ -1197,6 +1259,7 @@ exports[`renders correctly in full size with more on left 1`] = `
1197
1259
  <a
1198
1260
  aria-label="More pages"
1199
1261
  className="c3"
1262
+ data-testid="Pagination"
1200
1263
  href={null}
1201
1264
  onClick={[Function]}
1202
1265
  target="_self"
@@ -1210,6 +1273,7 @@ exports[`renders correctly in full size with more on left 1`] = `
1210
1273
  <a
1211
1274
  aria-label="Page 2"
1212
1275
  className="c2"
1276
+ data-testid="Pagination"
1213
1277
  href="example.com/page/2"
1214
1278
  onClick={[Function]}
1215
1279
  target="_self"
@@ -1223,6 +1287,7 @@ exports[`renders correctly in full size with more on left 1`] = `
1223
1287
  <a
1224
1288
  aria-label="Page 3"
1225
1289
  className="c2"
1290
+ data-testid="Pagination"
1226
1291
  href="example.com/page/3"
1227
1292
  onClick={[Function]}
1228
1293
  target="_self"
@@ -1236,6 +1301,7 @@ exports[`renders correctly in full size with more on left 1`] = `
1236
1301
  <a
1237
1302
  aria-label="Page 4"
1238
1303
  className="c4"
1304
+ data-testid="Pagination"
1239
1305
  href={null}
1240
1306
  onClick={[Function]}
1241
1307
  target="_self"
@@ -1249,6 +1315,7 @@ exports[`renders correctly in full size with more on left 1`] = `
1249
1315
  <a
1250
1316
  aria-label="Page 5"
1251
1317
  className="c2"
1318
+ data-testid="Pagination"
1252
1319
  href="example.com/page/5"
1253
1320
  onClick={[Function]}
1254
1321
  target="_self"
@@ -1262,6 +1329,7 @@ exports[`renders correctly in full size with more on left 1`] = `
1262
1329
  <a
1263
1330
  aria-label="Page 6"
1264
1331
  className="c2"
1332
+ data-testid="Pagination"
1265
1333
  href="example.com/page/6"
1266
1334
  onClick={[Function]}
1267
1335
  target="_self"
@@ -1275,6 +1343,7 @@ exports[`renders correctly in full size with more on left 1`] = `
1275
1343
  <a
1276
1344
  aria-label="Next page"
1277
1345
  className="c2"
1346
+ data-testid="Pagination"
1278
1347
  href="example.com/page/5"
1279
1348
  onClick={[Function]}
1280
1349
  target="_self"
@@ -1288,6 +1357,7 @@ exports[`renders correctly in full size with more on left 1`] = `
1288
1357
  <a
1289
1358
  aria-label="Last page"
1290
1359
  className="c2"
1360
+ data-testid="Pagination"
1291
1361
  href="example.com/page/6"
1292
1362
  onClick={[Function]}
1293
1363
  target="_self"
@@ -1358,6 +1428,7 @@ exports[`renders correctly in full size with more on right 1`] = `
1358
1428
  <a
1359
1429
  aria-label="First page"
1360
1430
  className="c2"
1431
+ data-testid="Pagination"
1361
1432
  href="example.com/page/1"
1362
1433
  onClick={[Function]}
1363
1434
  target="_self"
@@ -1371,6 +1442,7 @@ exports[`renders correctly in full size with more on right 1`] = `
1371
1442
  <a
1372
1443
  aria-label="Previous page"
1373
1444
  className="c2"
1445
+ data-testid="Pagination"
1374
1446
  href="example.com/page/2"
1375
1447
  onClick={[Function]}
1376
1448
  target="_self"
@@ -1384,6 +1456,7 @@ exports[`renders correctly in full size with more on right 1`] = `
1384
1456
  <a
1385
1457
  aria-label="Page 1"
1386
1458
  className="c2"
1459
+ data-testid="Pagination"
1387
1460
  href="example.com/page/1"
1388
1461
  onClick={[Function]}
1389
1462
  target="_self"
@@ -1397,6 +1470,7 @@ exports[`renders correctly in full size with more on right 1`] = `
1397
1470
  <a
1398
1471
  aria-label="Page 2"
1399
1472
  className="c2"
1473
+ data-testid="Pagination"
1400
1474
  href="example.com/page/2"
1401
1475
  onClick={[Function]}
1402
1476
  target="_self"
@@ -1410,6 +1484,7 @@ exports[`renders correctly in full size with more on right 1`] = `
1410
1484
  <a
1411
1485
  aria-label="Page 3"
1412
1486
  className="c3"
1487
+ data-testid="Pagination"
1413
1488
  href={null}
1414
1489
  onClick={[Function]}
1415
1490
  target="_self"
@@ -1423,6 +1498,7 @@ exports[`renders correctly in full size with more on right 1`] = `
1423
1498
  <a
1424
1499
  aria-label="Page 4"
1425
1500
  className="c2"
1501
+ data-testid="Pagination"
1426
1502
  href="example.com/page/4"
1427
1503
  onClick={[Function]}
1428
1504
  target="_self"
@@ -1436,6 +1512,7 @@ exports[`renders correctly in full size with more on right 1`] = `
1436
1512
  <a
1437
1513
  aria-label="Page 5"
1438
1514
  className="c2"
1515
+ data-testid="Pagination"
1439
1516
  href="example.com/page/5"
1440
1517
  onClick={[Function]}
1441
1518
  target="_self"
@@ -1449,6 +1526,7 @@ exports[`renders correctly in full size with more on right 1`] = `
1449
1526
  <a
1450
1527
  aria-label="More pages"
1451
1528
  className="c4"
1529
+ data-testid="Pagination"
1452
1530
  href={null}
1453
1531
  onClick={[Function]}
1454
1532
  target="_self"
@@ -1462,6 +1540,7 @@ exports[`renders correctly in full size with more on right 1`] = `
1462
1540
  <a
1463
1541
  aria-label="Next page"
1464
1542
  className="c2"
1543
+ data-testid="Pagination"
1465
1544
  href="example.com/page/4"
1466
1545
  onClick={[Function]}
1467
1546
  target="_self"
@@ -1475,6 +1554,7 @@ exports[`renders correctly in full size with more on right 1`] = `
1475
1554
  <a
1476
1555
  aria-label="Last page"
1477
1556
  className="c2"
1557
+ data-testid="Pagination"
1478
1558
  href="example.com/page/6"
1479
1559
  onClick={[Function]}
1480
1560
  target="_self"
@@ -1534,6 +1614,7 @@ exports[`renders correctly in minimalist form 1`] = `
1534
1614
  <a
1535
1615
  aria-label="Page 1"
1536
1616
  className="c2"
1617
+ data-testid="Pagination"
1537
1618
  href="example.com/page/1"
1538
1619
  onClick={[Function]}
1539
1620
  target="_self"
@@ -1547,6 +1628,7 @@ exports[`renders correctly in minimalist form 1`] = `
1547
1628
  <a
1548
1629
  aria-label="Page 2"
1549
1630
  className="c2"
1631
+ data-testid="Pagination"
1550
1632
  href="example.com/page/2"
1551
1633
  onClick={[Function]}
1552
1634
  target="_self"
@@ -1560,6 +1642,7 @@ exports[`renders correctly in minimalist form 1`] = `
1560
1642
  <a
1561
1643
  aria-label="Page 3"
1562
1644
  className="c3"
1645
+ data-testid="Pagination"
1563
1646
  href={null}
1564
1647
  onClick={[Function]}
1565
1648
  target="_self"
@@ -1573,6 +1656,7 @@ exports[`renders correctly in minimalist form 1`] = `
1573
1656
  <a
1574
1657
  aria-label="Page 4"
1575
1658
  className="c2"
1659
+ data-testid="Pagination"
1576
1660
  href="example.com/page/4"
1577
1661
  onClick={[Function]}
1578
1662
  target="_self"
@@ -1586,6 +1670,7 @@ exports[`renders correctly in minimalist form 1`] = `
1586
1670
  <a
1587
1671
  aria-label="Page 5"
1588
1672
  className="c2"
1673
+ data-testid="Pagination"
1589
1674
  href="example.com/page/5"
1590
1675
  onClick={[Function]}
1591
1676
  target="_self"
@@ -1645,6 +1730,7 @@ exports[`renders correctly in minimalist form with non-default color 1`] = `
1645
1730
  <a
1646
1731
  aria-label="Page 1"
1647
1732
  className="c2"
1733
+ data-testid="Pagination"
1648
1734
  href="example.com/page/1"
1649
1735
  onClick={[Function]}
1650
1736
  target="_self"
@@ -1658,6 +1744,7 @@ exports[`renders correctly in minimalist form with non-default color 1`] = `
1658
1744
  <a
1659
1745
  aria-label="Page 2"
1660
1746
  className="c2"
1747
+ data-testid="Pagination"
1661
1748
  href="example.com/page/2"
1662
1749
  onClick={[Function]}
1663
1750
  target="_self"
@@ -1671,6 +1758,7 @@ exports[`renders correctly in minimalist form with non-default color 1`] = `
1671
1758
  <a
1672
1759
  aria-label="Page 3"
1673
1760
  className="c3"
1761
+ data-testid="Pagination"
1674
1762
  href={null}
1675
1763
  onClick={[Function]}
1676
1764
  target="_self"
@@ -1684,6 +1772,7 @@ exports[`renders correctly in minimalist form with non-default color 1`] = `
1684
1772
  <a
1685
1773
  aria-label="Page 4"
1686
1774
  className="c2"
1775
+ data-testid="Pagination"
1687
1776
  href="example.com/page/4"
1688
1777
  onClick={[Function]}
1689
1778
  target="_self"
@@ -1697,6 +1786,7 @@ exports[`renders correctly in minimalist form with non-default color 1`] = `
1697
1786
  <a
1698
1787
  aria-label="Page 5"
1699
1788
  className="c2"
1789
+ data-testid="Pagination"
1700
1790
  href="example.com/page/5"
1701
1791
  onClick={[Function]}
1702
1792
  target="_self"
@@ -1756,6 +1846,7 @@ exports[`renders correctly with custom labels 1`] = `
1756
1846
  <a
1757
1847
  aria-label="First page"
1758
1848
  className="c2"
1849
+ data-testid="Pagination"
1759
1850
  href="example.com/page/1"
1760
1851
  onClick={[Function]}
1761
1852
  target="_self"
@@ -1769,6 +1860,7 @@ exports[`renders correctly with custom labels 1`] = `
1769
1860
  <a
1770
1861
  aria-label="Previous page"
1771
1862
  className="c2"
1863
+ data-testid="Pagination"
1772
1864
  href="example.com/page/2"
1773
1865
  onClick={[Function]}
1774
1866
  target="_self"
@@ -1782,6 +1874,7 @@ exports[`renders correctly with custom labels 1`] = `
1782
1874
  <a
1783
1875
  aria-label="Page 1"
1784
1876
  className="c2"
1877
+ data-testid="Pagination"
1785
1878
  href="example.com/page/1"
1786
1879
  onClick={[Function]}
1787
1880
  target="_self"
@@ -1795,6 +1888,7 @@ exports[`renders correctly with custom labels 1`] = `
1795
1888
  <a
1796
1889
  aria-label="Page 2"
1797
1890
  className="c2"
1891
+ data-testid="Pagination"
1798
1892
  href="example.com/page/2"
1799
1893
  onClick={[Function]}
1800
1894
  target="_self"
@@ -1808,6 +1902,7 @@ exports[`renders correctly with custom labels 1`] = `
1808
1902
  <a
1809
1903
  aria-label="Page 3"
1810
1904
  className="c3"
1905
+ data-testid="Pagination"
1811
1906
  href={null}
1812
1907
  onClick={[Function]}
1813
1908
  target="_self"
@@ -1821,6 +1916,7 @@ exports[`renders correctly with custom labels 1`] = `
1821
1916
  <a
1822
1917
  aria-label="Page 4"
1823
1918
  className="c2"
1919
+ data-testid="Pagination"
1824
1920
  href="example.com/page/4"
1825
1921
  onClick={[Function]}
1826
1922
  target="_self"
@@ -1834,6 +1930,7 @@ exports[`renders correctly with custom labels 1`] = `
1834
1930
  <a
1835
1931
  aria-label="Page 5"
1836
1932
  className="c2"
1933
+ data-testid="Pagination"
1837
1934
  href="example.com/page/5"
1838
1935
  onClick={[Function]}
1839
1936
  target="_self"
@@ -1847,6 +1944,7 @@ exports[`renders correctly with custom labels 1`] = `
1847
1944
  <a
1848
1945
  aria-label="Next page"
1849
1946
  className="c2"
1947
+ data-testid="Pagination"
1850
1948
  href="example.com/page/4"
1851
1949
  onClick={[Function]}
1852
1950
  target="_self"
@@ -1860,6 +1958,7 @@ exports[`renders correctly with custom labels 1`] = `
1860
1958
  <a
1861
1959
  aria-label="Last page"
1862
1960
  className="c2"
1961
+ data-testid="Pagination"
1863
1962
  href="example.com/page/5"
1864
1963
  onClick={[Function]}
1865
1964
  target="_self"
@@ -1930,6 +2029,7 @@ exports[`renders correctly with custom style 1`] = `
1930
2029
  <a
1931
2030
  aria-label="First page"
1932
2031
  className="c2"
2032
+ data-testid="Pagination"
1933
2033
  href="example.com/page/1"
1934
2034
  onClick={[Function]}
1935
2035
  target="_self"
@@ -1943,6 +2043,7 @@ exports[`renders correctly with custom style 1`] = `
1943
2043
  <a
1944
2044
  aria-label="Previous page"
1945
2045
  className="c2"
2046
+ data-testid="Pagination"
1946
2047
  href="example.com/page/4"
1947
2048
  onClick={[Function]}
1948
2049
  target="_self"
@@ -1956,6 +2057,7 @@ exports[`renders correctly with custom style 1`] = `
1956
2057
  <a
1957
2058
  aria-label="More pages"
1958
2059
  className="c3"
2060
+ data-testid="Pagination"
1959
2061
  href={null}
1960
2062
  onClick={[Function]}
1961
2063
  target="_self"
@@ -1969,6 +2071,7 @@ exports[`renders correctly with custom style 1`] = `
1969
2071
  <a
1970
2072
  aria-label="Page 3"
1971
2073
  className="c2"
2074
+ data-testid="Pagination"
1972
2075
  href="example.com/page/3"
1973
2076
  onClick={[Function]}
1974
2077
  target="_self"
@@ -1982,6 +2085,7 @@ exports[`renders correctly with custom style 1`] = `
1982
2085
  <a
1983
2086
  aria-label="Page 4"
1984
2087
  className="c2"
2088
+ data-testid="Pagination"
1985
2089
  href="example.com/page/4"
1986
2090
  onClick={[Function]}
1987
2091
  target="_self"
@@ -1995,6 +2099,7 @@ exports[`renders correctly with custom style 1`] = `
1995
2099
  <a
1996
2100
  aria-label="Page 5"
1997
2101
  className="c4"
2102
+ data-testid="Pagination"
1998
2103
  href={null}
1999
2104
  onClick={[Function]}
2000
2105
  target="_self"
@@ -2008,6 +2113,7 @@ exports[`renders correctly with custom style 1`] = `
2008
2113
  <a
2009
2114
  aria-label="Page 6"
2010
2115
  className="c2"
2116
+ data-testid="Pagination"
2011
2117
  href="example.com/page/6"
2012
2118
  onClick={[Function]}
2013
2119
  target="_self"
@@ -2021,6 +2127,7 @@ exports[`renders correctly with custom style 1`] = `
2021
2127
  <a
2022
2128
  aria-label="Page 7"
2023
2129
  className="c2"
2130
+ data-testid="Pagination"
2024
2131
  href="example.com/page/7"
2025
2132
  onClick={[Function]}
2026
2133
  target="_self"
@@ -2034,6 +2141,7 @@ exports[`renders correctly with custom style 1`] = `
2034
2141
  <a
2035
2142
  aria-label="More pages"
2036
2143
  className="c3"
2144
+ data-testid="Pagination"
2037
2145
  href={null}
2038
2146
  onClick={[Function]}
2039
2147
  target="_self"
@@ -2047,6 +2155,7 @@ exports[`renders correctly with custom style 1`] = `
2047
2155
  <a
2048
2156
  aria-label="Next page"
2049
2157
  className="c2"
2158
+ data-testid="Pagination"
2050
2159
  href="example.com/page/6"
2051
2160
  onClick={[Function]}
2052
2161
  target="_self"
@@ -2060,6 +2169,7 @@ exports[`renders correctly with custom style 1`] = `
2060
2169
  <a
2061
2170
  aria-label="Last page"
2062
2171
  className="c2"
2172
+ data-testid="Pagination"
2063
2173
  href="example.com/page/10"
2064
2174
  onClick={[Function]}
2065
2175
  target="_self"