carbon-react 110.6.0 → 110.7.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 (83) hide show
  1. package/esm/__internal__/checkable-input/checkable-input.component.js +1 -0
  2. package/esm/__internal__/input/input.component.js +1 -0
  3. package/esm/components/accordion/accordion-group/accordion-group.component.js +1 -0
  4. package/esm/components/alert/alert.component.d.ts +1 -1
  5. package/esm/components/alert/alert.component.js +9 -4
  6. package/esm/components/alert/index.d.ts +1 -1
  7. package/esm/components/button/button.component.d.ts +3 -3
  8. package/esm/components/button/button.component.js +1 -1
  9. package/esm/components/dialog/dialog.component.d.ts +59 -0
  10. package/esm/components/dialog/dialog.component.js +52 -84
  11. package/esm/components/dialog/dialog.config.d.ts +5 -0
  12. package/esm/components/dialog/dialog.style.d.ts +25 -0
  13. package/esm/components/dialog/index.d.ts +2 -1
  14. package/esm/components/dialog/index.js +1 -1
  15. package/esm/components/dismissible-box/dismissible-box.component.js +40 -0
  16. package/esm/components/form/__internal__/form-summary.component.js +16 -9
  17. package/esm/components/form/__internal__/form-summary.d.ts +2 -0
  18. package/esm/components/form/__internal__/form-summary.style.js +11 -2
  19. package/esm/components/form/form.component.js +23 -4
  20. package/esm/components/form/form.config.d.ts +1 -0
  21. package/esm/components/form/form.d.ts +2 -0
  22. package/esm/components/form/form.style.d.ts +6 -0
  23. package/esm/components/form/form.style.js +17 -3
  24. package/esm/components/global-header/global-header.component.js +16 -0
  25. package/esm/components/grid/grid-container/grid-container.component.js +25 -0
  26. package/esm/components/grid/grid-item/grid-item.component.js +13 -0
  27. package/esm/components/image/image.component.d.ts +8 -0
  28. package/esm/components/image/image.component.js +1694 -60
  29. package/esm/components/image/image.style.d.ts +16 -0
  30. package/esm/components/image/image.style.js +28 -0
  31. package/esm/components/image/index.d.ts +2 -1
  32. package/esm/components/modal/modal.component.d.ts +2 -0
  33. package/esm/components/modal/modal.component.js +1 -0
  34. package/esm/components/multi-action-button/multi-action-button.component.js +1 -0
  35. package/esm/components/navigation-bar/navigation-bar.component.js +16 -0
  36. package/esm/components/search/search.style.d.ts +4 -0
  37. package/esm/components/split-button/split-button.component.js +1 -0
  38. package/esm/components/textarea/textarea.style.d.ts +3 -0
  39. package/esm/components/textbox/textbox.component.js +1 -0
  40. package/lib/__internal__/checkable-input/checkable-input.component.js +1 -0
  41. package/lib/__internal__/input/input.component.js +1 -0
  42. package/lib/components/accordion/accordion-group/accordion-group.component.js +1 -0
  43. package/lib/components/alert/alert.component.d.ts +1 -1
  44. package/lib/components/alert/alert.component.js +9 -4
  45. package/lib/components/alert/index.d.ts +1 -1
  46. package/lib/components/button/button.component.d.ts +3 -3
  47. package/lib/components/button/button.component.js +1 -1
  48. package/lib/components/dialog/dialog.component.d.ts +59 -0
  49. package/lib/components/dialog/dialog.component.js +53 -85
  50. package/lib/components/dialog/dialog.config.d.ts +5 -0
  51. package/lib/components/dialog/dialog.style.d.ts +25 -0
  52. package/lib/components/dialog/index.d.ts +2 -1
  53. package/lib/components/dialog/index.js +2 -2
  54. package/lib/components/dismissible-box/dismissible-box.component.js +40 -0
  55. package/lib/components/form/__internal__/form-summary.component.js +16 -9
  56. package/lib/components/form/__internal__/form-summary.d.ts +2 -0
  57. package/lib/components/form/__internal__/form-summary.style.js +11 -2
  58. package/lib/components/form/form.component.js +22 -3
  59. package/lib/components/form/form.config.d.ts +1 -0
  60. package/lib/components/form/form.d.ts +2 -0
  61. package/lib/components/form/form.style.d.ts +6 -0
  62. package/lib/components/form/form.style.js +19 -4
  63. package/lib/components/global-header/global-header.component.js +16 -0
  64. package/lib/components/grid/grid-container/grid-container.component.js +25 -0
  65. package/lib/components/grid/grid-item/grid-item.component.js +13 -0
  66. package/lib/components/image/image.component.d.ts +8 -0
  67. package/lib/components/image/image.component.js +1695 -68
  68. package/lib/components/image/image.style.d.ts +16 -0
  69. package/lib/components/image/image.style.js +42 -0
  70. package/lib/components/image/index.d.ts +2 -1
  71. package/lib/components/modal/modal.component.d.ts +2 -0
  72. package/lib/components/modal/modal.component.js +1 -0
  73. package/lib/components/multi-action-button/multi-action-button.component.js +1 -0
  74. package/lib/components/navigation-bar/navigation-bar.component.js +16 -0
  75. package/lib/components/search/search.style.d.ts +4 -0
  76. package/lib/components/split-button/split-button.component.js +1 -0
  77. package/lib/components/textarea/textarea.style.d.ts +3 -0
  78. package/lib/components/textbox/textbox.component.js +1 -0
  79. package/package.json +4 -9
  80. package/esm/components/dialog/dialog.d.ts +0 -68
  81. package/esm/components/image/image.d.ts +0 -18
  82. package/lib/components/dialog/dialog.d.ts +0 -68
  83. package/lib/components/image/image.d.ts +0 -18
@@ -28,6 +28,7 @@ DismissibleBox.propTypes = {
28
28
  "alignContent": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "normal", "revert", "space-around", "space-between", "space-evenly", "start", "stretch", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "normal", "revert", "space-around", "space-between", "space-evenly", "start", "stretch", "unset", null]), PropTypes.shape({
29
29
  "__@iterator": PropTypes.func.isRequired,
30
30
  "anchor": PropTypes.func.isRequired,
31
+ "at": PropTypes.func.isRequired,
31
32
  "big": PropTypes.func.isRequired,
32
33
  "blink": PropTypes.func.isRequired,
33
34
  "bold": PropTypes.func.isRequired,
@@ -77,6 +78,7 @@ DismissibleBox.propTypes = {
77
78
  })])), PropTypes.object, PropTypes.shape({
78
79
  "__@iterator": PropTypes.func.isRequired,
79
80
  "anchor": PropTypes.func.isRequired,
81
+ "at": PropTypes.func.isRequired,
80
82
  "big": PropTypes.func.isRequired,
81
83
  "blink": PropTypes.func.isRequired,
82
84
  "bold": PropTypes.func.isRequired,
@@ -127,6 +129,7 @@ DismissibleBox.propTypes = {
127
129
  "alignItems": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "normal", "revert", "self-end", "self-start", "start", "stretch", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "normal", "revert", "self-end", "self-start", "start", "stretch", "unset", null]), PropTypes.shape({
128
130
  "__@iterator": PropTypes.func.isRequired,
129
131
  "anchor": PropTypes.func.isRequired,
132
+ "at": PropTypes.func.isRequired,
130
133
  "big": PropTypes.func.isRequired,
131
134
  "blink": PropTypes.func.isRequired,
132
135
  "bold": PropTypes.func.isRequired,
@@ -176,6 +179,7 @@ DismissibleBox.propTypes = {
176
179
  })])), PropTypes.object, PropTypes.shape({
177
180
  "__@iterator": PropTypes.func.isRequired,
178
181
  "anchor": PropTypes.func.isRequired,
182
+ "at": PropTypes.func.isRequired,
179
183
  "big": PropTypes.func.isRequired,
180
184
  "blink": PropTypes.func.isRequired,
181
185
  "bold": PropTypes.func.isRequired,
@@ -226,6 +230,7 @@ DismissibleBox.propTypes = {
226
230
  "alignSelf": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "normal", "revert", "self-end", "self-start", "start", "stretch", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "normal", "revert", "self-end", "self-start", "start", "stretch", "unset", null]), PropTypes.shape({
227
231
  "__@iterator": PropTypes.func.isRequired,
228
232
  "anchor": PropTypes.func.isRequired,
233
+ "at": PropTypes.func.isRequired,
229
234
  "big": PropTypes.func.isRequired,
230
235
  "blink": PropTypes.func.isRequired,
231
236
  "bold": PropTypes.func.isRequired,
@@ -275,6 +280,7 @@ DismissibleBox.propTypes = {
275
280
  })])), PropTypes.object, PropTypes.shape({
276
281
  "__@iterator": PropTypes.func.isRequired,
277
282
  "anchor": PropTypes.func.isRequired,
283
+ "at": PropTypes.func.isRequired,
278
284
  "big": PropTypes.func.isRequired,
279
285
  "blink": PropTypes.func.isRequired,
280
286
  "bold": PropTypes.func.isRequired,
@@ -361,6 +367,7 @@ DismissibleBox.propTypes = {
361
367
  "bottom": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
362
368
  "__@iterator": PropTypes.func.isRequired,
363
369
  "anchor": PropTypes.func.isRequired,
370
+ "at": PropTypes.func.isRequired,
364
371
  "big": PropTypes.func.isRequired,
365
372
  "blink": PropTypes.func.isRequired,
366
373
  "bold": PropTypes.func.isRequired,
@@ -410,6 +417,7 @@ DismissibleBox.propTypes = {
410
417
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
411
418
  "__@iterator": PropTypes.func.isRequired,
412
419
  "anchor": PropTypes.func.isRequired,
420
+ "at": PropTypes.func.isRequired,
413
421
  "big": PropTypes.func.isRequired,
414
422
  "blink": PropTypes.func.isRequired,
415
423
  "bold": PropTypes.func.isRequired,
@@ -473,6 +481,7 @@ DismissibleBox.propTypes = {
473
481
  "flex": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
474
482
  "__@iterator": PropTypes.func.isRequired,
475
483
  "anchor": PropTypes.func.isRequired,
484
+ "at": PropTypes.func.isRequired,
476
485
  "big": PropTypes.func.isRequired,
477
486
  "blink": PropTypes.func.isRequired,
478
487
  "bold": PropTypes.func.isRequired,
@@ -522,6 +531,7 @@ DismissibleBox.propTypes = {
522
531
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
523
532
  "__@iterator": PropTypes.func.isRequired,
524
533
  "anchor": PropTypes.func.isRequired,
534
+ "at": PropTypes.func.isRequired,
525
535
  "big": PropTypes.func.isRequired,
526
536
  "blink": PropTypes.func.isRequired,
527
537
  "bold": PropTypes.func.isRequired,
@@ -572,6 +582,7 @@ DismissibleBox.propTypes = {
572
582
  "flexBasis": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
573
583
  "__@iterator": PropTypes.func.isRequired,
574
584
  "anchor": PropTypes.func.isRequired,
585
+ "at": PropTypes.func.isRequired,
575
586
  "big": PropTypes.func.isRequired,
576
587
  "blink": PropTypes.func.isRequired,
577
588
  "bold": PropTypes.func.isRequired,
@@ -621,6 +632,7 @@ DismissibleBox.propTypes = {
621
632
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
622
633
  "__@iterator": PropTypes.func.isRequired,
623
634
  "anchor": PropTypes.func.isRequired,
635
+ "at": PropTypes.func.isRequired,
624
636
  "big": PropTypes.func.isRequired,
625
637
  "blink": PropTypes.func.isRequired,
626
638
  "bold": PropTypes.func.isRequired,
@@ -704,6 +716,7 @@ DismissibleBox.propTypes = {
704
716
  "height": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
705
717
  "__@iterator": PropTypes.func.isRequired,
706
718
  "anchor": PropTypes.func.isRequired,
719
+ "at": PropTypes.func.isRequired,
707
720
  "big": PropTypes.func.isRequired,
708
721
  "blink": PropTypes.func.isRequired,
709
722
  "bold": PropTypes.func.isRequired,
@@ -753,6 +766,7 @@ DismissibleBox.propTypes = {
753
766
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
754
767
  "__@iterator": PropTypes.func.isRequired,
755
768
  "anchor": PropTypes.func.isRequired,
769
+ "at": PropTypes.func.isRequired,
756
770
  "big": PropTypes.func.isRequired,
757
771
  "blink": PropTypes.func.isRequired,
758
772
  "bold": PropTypes.func.isRequired,
@@ -803,6 +817,7 @@ DismissibleBox.propTypes = {
803
817
  "justifyItems": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "left", "legacy", "normal", "revert", "right", "self-end", "self-start", "start", "stretch", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "left", "legacy", "normal", "revert", "right", "self-end", "self-start", "start", "stretch", "unset", null]), PropTypes.shape({
804
818
  "__@iterator": PropTypes.func.isRequired,
805
819
  "anchor": PropTypes.func.isRequired,
820
+ "at": PropTypes.func.isRequired,
806
821
  "big": PropTypes.func.isRequired,
807
822
  "blink": PropTypes.func.isRequired,
808
823
  "bold": PropTypes.func.isRequired,
@@ -852,6 +867,7 @@ DismissibleBox.propTypes = {
852
867
  })])), PropTypes.object, PropTypes.shape({
853
868
  "__@iterator": PropTypes.func.isRequired,
854
869
  "anchor": PropTypes.func.isRequired,
870
+ "at": PropTypes.func.isRequired,
855
871
  "big": PropTypes.func.isRequired,
856
872
  "blink": PropTypes.func.isRequired,
857
873
  "bold": PropTypes.func.isRequired,
@@ -902,6 +918,7 @@ DismissibleBox.propTypes = {
902
918
  "justifySelf": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "left", "normal", "revert", "right", "self-end", "self-start", "start", "stretch", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "left", "normal", "revert", "right", "self-end", "self-start", "start", "stretch", "unset", null]), PropTypes.shape({
903
919
  "__@iterator": PropTypes.func.isRequired,
904
920
  "anchor": PropTypes.func.isRequired,
921
+ "at": PropTypes.func.isRequired,
905
922
  "big": PropTypes.func.isRequired,
906
923
  "blink": PropTypes.func.isRequired,
907
924
  "bold": PropTypes.func.isRequired,
@@ -951,6 +968,7 @@ DismissibleBox.propTypes = {
951
968
  })])), PropTypes.object, PropTypes.shape({
952
969
  "__@iterator": PropTypes.func.isRequired,
953
970
  "anchor": PropTypes.func.isRequired,
971
+ "at": PropTypes.func.isRequired,
954
972
  "big": PropTypes.func.isRequired,
955
973
  "blink": PropTypes.func.isRequired,
956
974
  "bold": PropTypes.func.isRequired,
@@ -1001,6 +1019,7 @@ DismissibleBox.propTypes = {
1001
1019
  "left": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1002
1020
  "__@iterator": PropTypes.func.isRequired,
1003
1021
  "anchor": PropTypes.func.isRequired,
1022
+ "at": PropTypes.func.isRequired,
1004
1023
  "big": PropTypes.func.isRequired,
1005
1024
  "blink": PropTypes.func.isRequired,
1006
1025
  "bold": PropTypes.func.isRequired,
@@ -1050,6 +1069,7 @@ DismissibleBox.propTypes = {
1050
1069
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1051
1070
  "__@iterator": PropTypes.func.isRequired,
1052
1071
  "anchor": PropTypes.func.isRequired,
1072
+ "at": PropTypes.func.isRequired,
1053
1073
  "big": PropTypes.func.isRequired,
1054
1074
  "blink": PropTypes.func.isRequired,
1055
1075
  "bold": PropTypes.func.isRequired,
@@ -1188,6 +1208,7 @@ DismissibleBox.propTypes = {
1188
1208
  "maxHeight": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1189
1209
  "__@iterator": PropTypes.func.isRequired,
1190
1210
  "anchor": PropTypes.func.isRequired,
1211
+ "at": PropTypes.func.isRequired,
1191
1212
  "big": PropTypes.func.isRequired,
1192
1213
  "blink": PropTypes.func.isRequired,
1193
1214
  "bold": PropTypes.func.isRequired,
@@ -1237,6 +1258,7 @@ DismissibleBox.propTypes = {
1237
1258
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1238
1259
  "__@iterator": PropTypes.func.isRequired,
1239
1260
  "anchor": PropTypes.func.isRequired,
1261
+ "at": PropTypes.func.isRequired,
1240
1262
  "big": PropTypes.func.isRequired,
1241
1263
  "blink": PropTypes.func.isRequired,
1242
1264
  "bold": PropTypes.func.isRequired,
@@ -1287,6 +1309,7 @@ DismissibleBox.propTypes = {
1287
1309
  "maxWidth": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1288
1310
  "__@iterator": PropTypes.func.isRequired,
1289
1311
  "anchor": PropTypes.func.isRequired,
1312
+ "at": PropTypes.func.isRequired,
1290
1313
  "big": PropTypes.func.isRequired,
1291
1314
  "blink": PropTypes.func.isRequired,
1292
1315
  "bold": PropTypes.func.isRequired,
@@ -1336,6 +1359,7 @@ DismissibleBox.propTypes = {
1336
1359
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1337
1360
  "__@iterator": PropTypes.func.isRequired,
1338
1361
  "anchor": PropTypes.func.isRequired,
1362
+ "at": PropTypes.func.isRequired,
1339
1363
  "big": PropTypes.func.isRequired,
1340
1364
  "blink": PropTypes.func.isRequired,
1341
1365
  "bold": PropTypes.func.isRequired,
@@ -1397,6 +1421,7 @@ DismissibleBox.propTypes = {
1397
1421
  "minHeight": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1398
1422
  "__@iterator": PropTypes.func.isRequired,
1399
1423
  "anchor": PropTypes.func.isRequired,
1424
+ "at": PropTypes.func.isRequired,
1400
1425
  "big": PropTypes.func.isRequired,
1401
1426
  "blink": PropTypes.func.isRequired,
1402
1427
  "bold": PropTypes.func.isRequired,
@@ -1446,6 +1471,7 @@ DismissibleBox.propTypes = {
1446
1471
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1447
1472
  "__@iterator": PropTypes.func.isRequired,
1448
1473
  "anchor": PropTypes.func.isRequired,
1474
+ "at": PropTypes.func.isRequired,
1449
1475
  "big": PropTypes.func.isRequired,
1450
1476
  "blink": PropTypes.func.isRequired,
1451
1477
  "bold": PropTypes.func.isRequired,
@@ -1496,6 +1522,7 @@ DismissibleBox.propTypes = {
1496
1522
  "minWidth": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1497
1523
  "__@iterator": PropTypes.func.isRequired,
1498
1524
  "anchor": PropTypes.func.isRequired,
1525
+ "at": PropTypes.func.isRequired,
1499
1526
  "big": PropTypes.func.isRequired,
1500
1527
  "blink": PropTypes.func.isRequired,
1501
1528
  "bold": PropTypes.func.isRequired,
@@ -1545,6 +1572,7 @@ DismissibleBox.propTypes = {
1545
1572
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1546
1573
  "__@iterator": PropTypes.func.isRequired,
1547
1574
  "anchor": PropTypes.func.isRequired,
1575
+ "at": PropTypes.func.isRequired,
1548
1576
  "big": PropTypes.func.isRequired,
1549
1577
  "blink": PropTypes.func.isRequired,
1550
1578
  "bold": PropTypes.func.isRequired,
@@ -1651,6 +1679,7 @@ DismissibleBox.propTypes = {
1651
1679
  "opacity": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "inherit", "initial", "revert", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "inherit", "initial", "revert", "unset", null]), PropTypes.shape({
1652
1680
  "__@iterator": PropTypes.func.isRequired,
1653
1681
  "anchor": PropTypes.func.isRequired,
1682
+ "at": PropTypes.func.isRequired,
1654
1683
  "big": PropTypes.func.isRequired,
1655
1684
  "blink": PropTypes.func.isRequired,
1656
1685
  "bold": PropTypes.func.isRequired,
@@ -1700,6 +1729,7 @@ DismissibleBox.propTypes = {
1700
1729
  })])), PropTypes.object, PropTypes.shape({
1701
1730
  "__@iterator": PropTypes.func.isRequired,
1702
1731
  "anchor": PropTypes.func.isRequired,
1732
+ "at": PropTypes.func.isRequired,
1703
1733
  "big": PropTypes.func.isRequired,
1704
1734
  "blink": PropTypes.func.isRequired,
1705
1735
  "bold": PropTypes.func.isRequired,
@@ -1765,6 +1795,7 @@ DismissibleBox.propTypes = {
1765
1795
  "overflow": PropTypes.oneOfType([PropTypes.oneOf(["-moz-hidden-unscrollable", "-moz-initial", "auto", "clip", "hidden", "inherit", "initial", "revert", "scroll", "unset", "visible"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-hidden-unscrollable", "-moz-initial", "auto", "clip", "hidden", "inherit", "initial", "revert", "scroll", "unset", "visible", null]), PropTypes.shape({
1766
1796
  "__@iterator": PropTypes.func.isRequired,
1767
1797
  "anchor": PropTypes.func.isRequired,
1798
+ "at": PropTypes.func.isRequired,
1768
1799
  "big": PropTypes.func.isRequired,
1769
1800
  "blink": PropTypes.func.isRequired,
1770
1801
  "bold": PropTypes.func.isRequired,
@@ -1814,6 +1845,7 @@ DismissibleBox.propTypes = {
1814
1845
  })])), PropTypes.object, PropTypes.shape({
1815
1846
  "__@iterator": PropTypes.func.isRequired,
1816
1847
  "anchor": PropTypes.func.isRequired,
1848
+ "at": PropTypes.func.isRequired,
1817
1849
  "big": PropTypes.func.isRequired,
1818
1850
  "blink": PropTypes.func.isRequired,
1819
1851
  "bold": PropTypes.func.isRequired,
@@ -2022,6 +2054,7 @@ DismissibleBox.propTypes = {
2022
2054
  "right": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
2023
2055
  "__@iterator": PropTypes.func.isRequired,
2024
2056
  "anchor": PropTypes.func.isRequired,
2057
+ "at": PropTypes.func.isRequired,
2025
2058
  "big": PropTypes.func.isRequired,
2026
2059
  "blink": PropTypes.func.isRequired,
2027
2060
  "bold": PropTypes.func.isRequired,
@@ -2071,6 +2104,7 @@ DismissibleBox.propTypes = {
2071
2104
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
2072
2105
  "__@iterator": PropTypes.func.isRequired,
2073
2106
  "anchor": PropTypes.func.isRequired,
2107
+ "at": PropTypes.func.isRequired,
2074
2108
  "big": PropTypes.func.isRequired,
2075
2109
  "blink": PropTypes.func.isRequired,
2076
2110
  "bold": PropTypes.func.isRequired,
@@ -2122,6 +2156,7 @@ DismissibleBox.propTypes = {
2122
2156
  "size": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
2123
2157
  "__@iterator": PropTypes.func.isRequired,
2124
2158
  "anchor": PropTypes.func.isRequired,
2159
+ "at": PropTypes.func.isRequired,
2125
2160
  "big": PropTypes.func.isRequired,
2126
2161
  "blink": PropTypes.func.isRequired,
2127
2162
  "bold": PropTypes.func.isRequired,
@@ -2171,6 +2206,7 @@ DismissibleBox.propTypes = {
2171
2206
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
2172
2207
  "__@iterator": PropTypes.func.isRequired,
2173
2208
  "anchor": PropTypes.func.isRequired,
2209
+ "at": PropTypes.func.isRequired,
2174
2210
  "big": PropTypes.func.isRequired,
2175
2211
  "blink": PropTypes.func.isRequired,
2176
2212
  "bold": PropTypes.func.isRequired,
@@ -2222,6 +2258,7 @@ DismissibleBox.propTypes = {
2222
2258
  "top": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
2223
2259
  "__@iterator": PropTypes.func.isRequired,
2224
2260
  "anchor": PropTypes.func.isRequired,
2261
+ "at": PropTypes.func.isRequired,
2225
2262
  "big": PropTypes.func.isRequired,
2226
2263
  "blink": PropTypes.func.isRequired,
2227
2264
  "bold": PropTypes.func.isRequired,
@@ -2271,6 +2308,7 @@ DismissibleBox.propTypes = {
2271
2308
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
2272
2309
  "__@iterator": PropTypes.func.isRequired,
2273
2310
  "anchor": PropTypes.func.isRequired,
2311
+ "at": PropTypes.func.isRequired,
2274
2312
  "big": PropTypes.func.isRequired,
2275
2313
  "blink": PropTypes.func.isRequired,
2276
2314
  "bold": PropTypes.func.isRequired,
@@ -2322,6 +2360,7 @@ DismissibleBox.propTypes = {
2322
2360
  "verticalAlign": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
2323
2361
  "__@iterator": PropTypes.func.isRequired,
2324
2362
  "anchor": PropTypes.func.isRequired,
2363
+ "at": PropTypes.func.isRequired,
2325
2364
  "big": PropTypes.func.isRequired,
2326
2365
  "blink": PropTypes.func.isRequired,
2327
2366
  "bold": PropTypes.func.isRequired,
@@ -2371,6 +2410,7 @@ DismissibleBox.propTypes = {
2371
2410
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
2372
2411
  "__@iterator": PropTypes.func.isRequired,
2373
2412
  "anchor": PropTypes.func.isRequired,
2413
+ "at": PropTypes.func.isRequired,
2374
2414
  "big": PropTypes.func.isRequired,
2375
2415
  "blink": PropTypes.func.isRequired,
2376
2416
  "bold": PropTypes.func.isRequired,
@@ -36,18 +36,25 @@ Summary.propTypes = {
36
36
  warnings: PropTypes.number
37
37
  };
38
38
 
39
- const FormSummary = props => /*#__PURE__*/React.createElement(StyledFormSummary, {
40
- showSummary: props.errors > 0 || props.warnings > 0,
41
- "data-element": "form-summary"
42
- }, /*#__PURE__*/React.createElement(Summary, _extends({
43
- type: "errors"
44
- }, props)), /*#__PURE__*/React.createElement(Summary, _extends({
45
- type: "warnings"
46
- }, props)), props.children);
39
+ const FormSummary = ({
40
+ fullWidth,
41
+ ...props
42
+ }) => {
43
+ return /*#__PURE__*/React.createElement(StyledFormSummary, {
44
+ showSummary: props.errors || props.warnings,
45
+ "data-element": "form-summary",
46
+ fullWidth: fullWidth
47
+ }, /*#__PURE__*/React.createElement(Summary, _extends({
48
+ type: "errors"
49
+ }, props)), /*#__PURE__*/React.createElement(Summary, _extends({
50
+ type: "warnings"
51
+ }, props)), props.children);
52
+ };
47
53
 
48
54
  FormSummary.propTypes = {
49
55
  children: PropTypes.node,
50
56
  errors: PropTypes.number,
51
- warnings: PropTypes.number
57
+ warnings: PropTypes.number,
58
+ fullWidth: PropTypes.bool
52
59
  };
53
60
  export default FormSummary;
@@ -7,6 +7,8 @@ export interface FormSummaryProps {
7
7
  errors?: number;
8
8
  /** The total number of warnings present in the form */
9
9
  warnings?: number;
10
+ /** Applies full width styling */
11
+ fullWidth?: boolean;
10
12
  }
11
13
 
12
14
  declare function FormSummary(props: FormSummaryProps): JSX.Element;
@@ -11,12 +11,20 @@ export const StyledFormSummary = styled.div`
11
11
  padding: 8px;
12
12
  white-space: nowrap;
13
13
 
14
+ ${({
15
+ fullWidth
16
+ }) => fullWidth && css`
17
+ display: flex;
18
+ flex-wrap: wrap;
19
+ width: 100%;
20
+ justify-content: flex-start;
21
+ `}
22
+
14
23
  ${({
15
24
  showSummary
16
25
  }) => showSummary && css`
17
26
  background-color: var(--colorsUtilityMajor025);
18
27
  `}
19
-
20
28
  ${StyledButton} {
21
29
  margin-right: 0;
22
30
  }
@@ -60,7 +68,8 @@ export const StyledInternalSummary = styled.div`
60
68
  }
61
69
  `;
62
70
  StyledFormSummary.propTypes = {
63
- showSummary: PropTypes.bool
71
+ showSummary: PropTypes.bool,
72
+ fullWidth: PropTypes.bool
64
73
  };
65
74
  StyledInternalSummary.propTypes = {
66
75
  type: PropTypes.oneOf(["errors", "warnings"])
@@ -6,7 +6,7 @@ import styledSystemPropTypes from "@styled-system/prop-types";
6
6
  import { ModalContext } from "../modal/modal.component";
7
7
  import { SidebarContext } from "../sidebar/sidebar.component";
8
8
  import FormSummary from "./__internal__/form-summary.component";
9
- import { StyledForm, StyledFormContent, StyledFormFooter, StyledLeftButtons, StyledRightButtons } from "./form.style";
9
+ import { StyledForm, StyledFormContent, StyledFormFooter, StyledLeftButtons, StyledRightButtons, StyledFullWidthButtons } from "./form.style";
10
10
 
11
11
  const Form = ({
12
12
  children,
@@ -21,6 +21,7 @@ const Form = ({
21
21
  fieldSpacing = 3,
22
22
  noValidate = true,
23
23
  height,
24
+ fullWidthButtons = false,
24
25
  ...rest
25
26
  }) => {
26
27
  const {
@@ -46,7 +47,7 @@ const Form = ({
46
47
  className: stickyFooter ? "sticky" : "",
47
48
  stickyFooter: stickyFooter,
48
49
  isInModal: isInModal
49
- }, children), renderFooter && /*#__PURE__*/React.createElement(StyledFormFooter, {
50
+ }, children), !fullWidthButtons && renderFooter && /*#__PURE__*/React.createElement(StyledFormFooter, {
50
51
  "data-element": "form-footer",
51
52
  className: stickyFooter ? "sticky" : "",
52
53
  ref: formFooterRef,
@@ -59,7 +60,22 @@ const Form = ({
59
60
  warnings: warningCount
60
61
  }, saveButton), rightSideButtons && /*#__PURE__*/React.createElement(StyledRightButtons, {
61
62
  buttonAlignment: buttonAlignment
62
- }, rightSideButtons)));
63
+ }, rightSideButtons)), fullWidthButtons && renderFooter && /*#__PURE__*/React.createElement(StyledFormFooter, {
64
+ "data-element": "form-footer",
65
+ className: stickyFooter ? "sticky" : "",
66
+ ref: formFooterRef,
67
+ stickyFooter: stickyFooter,
68
+ buttonAlignment: buttonAlignment,
69
+ fullWidthButtons: fullWidthButtons
70
+ }, leftSideButtons && /*#__PURE__*/React.createElement(StyledLeftButtons, {
71
+ fullWidthButtons: fullWidthButtons
72
+ }, leftSideButtons), rightSideButtons && /*#__PURE__*/React.createElement(StyledRightButtons, {
73
+ fullWidthButtons: fullWidthButtons
74
+ }, rightSideButtons), /*#__PURE__*/React.createElement(StyledFullWidthButtons, null, /*#__PURE__*/React.createElement(FormSummary, {
75
+ fullWidth: fullWidthButtons,
76
+ errors: errorCount,
77
+ warnings: warningCount
78
+ }, saveButton))));
63
79
  };
64
80
 
65
81
  Form.propTypes = { ...styledSystemPropTypes.space,
@@ -98,6 +114,9 @@ Form.propTypes = { ...styledSystemPropTypes.space,
98
114
  noValidate: PropTypes.bool,
99
115
 
100
116
  /** Height of the form (any valid CSS value) */
101
- height: PropTypes.string
117
+ height: PropTypes.string,
118
+
119
+ /** Applies styling for full width buttons. Please note that you will still need to pass the `fullWidth` prop to the button you compose */
120
+ fullWidthButtons: PropTypes.bool
102
121
  };
103
122
  export default Form;
@@ -0,0 +1 @@
1
+ export const FORM_BUTTON_ALIGNMENTS: string[];
@@ -26,6 +26,8 @@ export interface FormProps extends SpaceProps {
26
26
  warningCount?: number;
27
27
  /** Height of the form (any valid CSS value) */
28
28
  height?: string;
29
+ /** Applies styling for full width buttons. Please note that you will still need to pass the `fullWidth` prop to the button you compose */
30
+ fullWidthButtons?: boolean;
29
31
  }
30
32
 
31
33
  declare function Form(props: FormProps): JSX.Element;
@@ -0,0 +1,6 @@
1
+ export const StyledFormContent: import("styled-components").StyledComponent<"div", any, {}, never>;
2
+ export const StyledFormFooter: import("styled-components").StyledComponent<"div", any, {}, never>;
3
+ export const StyledForm: import("styled-components").StyledComponent<"form", any, {}, never>;
4
+ export const StyledRightButtons: import("styled-components").StyledComponent<"div", any, {}, never>;
5
+ export const StyledFullWidthButtons: import("styled-components").StyledComponent<"div", any, {}, never>;
6
+ export const StyledLeftButtons: import("styled-components").StyledComponent<"div", any, {}, never>;
@@ -32,7 +32,8 @@ export const StyledFormFooter = styled.div`
32
32
  `}
33
33
 
34
34
  ${({
35
- stickyFooter
35
+ stickyFooter,
36
+ fullWidthButtons
36
37
  }) => css`
37
38
  ${!stickyFooter && css`
38
39
  margin-top: 48px;
@@ -48,6 +49,11 @@ export const StyledFormFooter = styled.div`
48
49
  position: sticky;
49
50
  bottom: 0;
50
51
  `}
52
+
53
+ ${fullWidthButtons && css`
54
+ flex-direction: column;
55
+ align-items: stretch;
56
+ `}
51
57
  `}
52
58
  `;
53
59
 
@@ -133,7 +139,9 @@ export const StyledForm = styled.form`
133
139
  `;
134
140
  export const StyledRightButtons = styled.div`
135
141
  display: flex;
136
- margin-left: 16px;
142
+ ${({
143
+ fullWidthButtons
144
+ }) => fullWidthButtons ? `margin-left: 0px;` : `margin-left: 16px;`}
137
145
  ${({
138
146
  buttonAlignment
139
147
  }) => buttonAlignment === "left" && "flex-grow: 1"};
@@ -142,10 +150,16 @@ export const StyledRightButtons = styled.div`
142
150
  margin-right: 0;
143
151
  }
144
152
  `;
153
+ export const StyledFullWidthButtons = styled.div`
154
+ width: 100%;
155
+ display: flex;
156
+ `;
145
157
  export const StyledLeftButtons = styled.div`
146
158
  display: flex;
147
159
  justify-content: flex-end;
148
- margin-right: 16px;
160
+ ${({
161
+ fullWidthButtons
162
+ }) => fullWidthButtons ? `margin-right: 0px;` : `margin-right: 16px;`}
149
163
  ${({
150
164
  buttonAlignment
151
165
  }) => buttonAlignment === "right" && "flex-grow: 1"};
@@ -61,6 +61,7 @@ GlobalHeader.propTypes = {
61
61
  "alignContent": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "normal", "revert", "space-around", "space-between", "space-evenly", "start", "stretch", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "normal", "revert", "space-around", "space-between", "space-evenly", "start", "stretch", "unset", null]), PropTypes.shape({
62
62
  "__@iterator": PropTypes.func.isRequired,
63
63
  "anchor": PropTypes.func.isRequired,
64
+ "at": PropTypes.func.isRequired,
64
65
  "big": PropTypes.func.isRequired,
65
66
  "blink": PropTypes.func.isRequired,
66
67
  "bold": PropTypes.func.isRequired,
@@ -110,6 +111,7 @@ GlobalHeader.propTypes = {
110
111
  })])), PropTypes.object, PropTypes.shape({
111
112
  "__@iterator": PropTypes.func.isRequired,
112
113
  "anchor": PropTypes.func.isRequired,
114
+ "at": PropTypes.func.isRequired,
113
115
  "big": PropTypes.func.isRequired,
114
116
  "blink": PropTypes.func.isRequired,
115
117
  "bold": PropTypes.func.isRequired,
@@ -160,6 +162,7 @@ GlobalHeader.propTypes = {
160
162
  "alignItems": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "normal", "revert", "self-end", "self-start", "start", "stretch", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "normal", "revert", "self-end", "self-start", "start", "stretch", "unset", null]), PropTypes.shape({
161
163
  "__@iterator": PropTypes.func.isRequired,
162
164
  "anchor": PropTypes.func.isRequired,
165
+ "at": PropTypes.func.isRequired,
163
166
  "big": PropTypes.func.isRequired,
164
167
  "blink": PropTypes.func.isRequired,
165
168
  "bold": PropTypes.func.isRequired,
@@ -209,6 +212,7 @@ GlobalHeader.propTypes = {
209
212
  })])), PropTypes.object, PropTypes.shape({
210
213
  "__@iterator": PropTypes.func.isRequired,
211
214
  "anchor": PropTypes.func.isRequired,
215
+ "at": PropTypes.func.isRequired,
212
216
  "big": PropTypes.func.isRequired,
213
217
  "blink": PropTypes.func.isRequired,
214
218
  "bold": PropTypes.func.isRequired,
@@ -259,6 +263,7 @@ GlobalHeader.propTypes = {
259
263
  "alignSelf": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "normal", "revert", "self-end", "self-start", "start", "stretch", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "normal", "revert", "self-end", "self-start", "start", "stretch", "unset", null]), PropTypes.shape({
260
264
  "__@iterator": PropTypes.func.isRequired,
261
265
  "anchor": PropTypes.func.isRequired,
266
+ "at": PropTypes.func.isRequired,
262
267
  "big": PropTypes.func.isRequired,
263
268
  "blink": PropTypes.func.isRequired,
264
269
  "bold": PropTypes.func.isRequired,
@@ -308,6 +313,7 @@ GlobalHeader.propTypes = {
308
313
  })])), PropTypes.object, PropTypes.shape({
309
314
  "__@iterator": PropTypes.func.isRequired,
310
315
  "anchor": PropTypes.func.isRequired,
316
+ "at": PropTypes.func.isRequired,
311
317
  "big": PropTypes.func.isRequired,
312
318
  "blink": PropTypes.func.isRequired,
313
319
  "bold": PropTypes.func.isRequired,
@@ -359,6 +365,7 @@ GlobalHeader.propTypes = {
359
365
  "flex": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
360
366
  "__@iterator": PropTypes.func.isRequired,
361
367
  "anchor": PropTypes.func.isRequired,
368
+ "at": PropTypes.func.isRequired,
362
369
  "big": PropTypes.func.isRequired,
363
370
  "blink": PropTypes.func.isRequired,
364
371
  "bold": PropTypes.func.isRequired,
@@ -408,6 +415,7 @@ GlobalHeader.propTypes = {
408
415
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
409
416
  "__@iterator": PropTypes.func.isRequired,
410
417
  "anchor": PropTypes.func.isRequired,
418
+ "at": PropTypes.func.isRequired,
411
419
  "big": PropTypes.func.isRequired,
412
420
  "blink": PropTypes.func.isRequired,
413
421
  "bold": PropTypes.func.isRequired,
@@ -458,6 +466,7 @@ GlobalHeader.propTypes = {
458
466
  "flexBasis": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
459
467
  "__@iterator": PropTypes.func.isRequired,
460
468
  "anchor": PropTypes.func.isRequired,
469
+ "at": PropTypes.func.isRequired,
461
470
  "big": PropTypes.func.isRequired,
462
471
  "blink": PropTypes.func.isRequired,
463
472
  "bold": PropTypes.func.isRequired,
@@ -507,6 +516,7 @@ GlobalHeader.propTypes = {
507
516
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
508
517
  "__@iterator": PropTypes.func.isRequired,
509
518
  "anchor": PropTypes.func.isRequired,
519
+ "at": PropTypes.func.isRequired,
510
520
  "big": PropTypes.func.isRequired,
511
521
  "blink": PropTypes.func.isRequired,
512
522
  "bold": PropTypes.func.isRequired,
@@ -589,6 +599,7 @@ GlobalHeader.propTypes = {
589
599
  "justifyContent": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "center", "end", "flex-end", "flex-start", "inherit", "initial", "left", "normal", "revert", "right", "space-around", "space-between", "space-evenly", "start", "stretch", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "center", "end", "flex-end", "flex-start", "inherit", "initial", "left", "normal", "revert", "right", "space-around", "space-between", "space-evenly", "start", "stretch", "unset", null]), PropTypes.shape({
590
600
  "__@iterator": PropTypes.func.isRequired,
591
601
  "anchor": PropTypes.func.isRequired,
602
+ "at": PropTypes.func.isRequired,
592
603
  "big": PropTypes.func.isRequired,
593
604
  "blink": PropTypes.func.isRequired,
594
605
  "bold": PropTypes.func.isRequired,
@@ -638,6 +649,7 @@ GlobalHeader.propTypes = {
638
649
  })])), PropTypes.object, PropTypes.shape({
639
650
  "__@iterator": PropTypes.func.isRequired,
640
651
  "anchor": PropTypes.func.isRequired,
652
+ "at": PropTypes.func.isRequired,
641
653
  "big": PropTypes.func.isRequired,
642
654
  "blink": PropTypes.func.isRequired,
643
655
  "bold": PropTypes.func.isRequired,
@@ -688,6 +700,7 @@ GlobalHeader.propTypes = {
688
700
  "justifyItems": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "left", "legacy", "normal", "revert", "right", "self-end", "self-start", "start", "stretch", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "left", "legacy", "normal", "revert", "right", "self-end", "self-start", "start", "stretch", "unset", null]), PropTypes.shape({
689
701
  "__@iterator": PropTypes.func.isRequired,
690
702
  "anchor": PropTypes.func.isRequired,
703
+ "at": PropTypes.func.isRequired,
691
704
  "big": PropTypes.func.isRequired,
692
705
  "blink": PropTypes.func.isRequired,
693
706
  "bold": PropTypes.func.isRequired,
@@ -737,6 +750,7 @@ GlobalHeader.propTypes = {
737
750
  })])), PropTypes.object, PropTypes.shape({
738
751
  "__@iterator": PropTypes.func.isRequired,
739
752
  "anchor": PropTypes.func.isRequired,
753
+ "at": PropTypes.func.isRequired,
740
754
  "big": PropTypes.func.isRequired,
741
755
  "blink": PropTypes.func.isRequired,
742
756
  "bold": PropTypes.func.isRequired,
@@ -787,6 +801,7 @@ GlobalHeader.propTypes = {
787
801
  "justifySelf": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "left", "normal", "revert", "right", "self-end", "self-start", "start", "stretch", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "baseline", "center", "end", "flex-end", "flex-start", "inherit", "initial", "left", "normal", "revert", "right", "self-end", "self-start", "start", "stretch", "unset", null]), PropTypes.shape({
788
802
  "__@iterator": PropTypes.func.isRequired,
789
803
  "anchor": PropTypes.func.isRequired,
804
+ "at": PropTypes.func.isRequired,
790
805
  "big": PropTypes.func.isRequired,
791
806
  "blink": PropTypes.func.isRequired,
792
807
  "bold": PropTypes.func.isRequired,
@@ -836,6 +851,7 @@ GlobalHeader.propTypes = {
836
851
  })])), PropTypes.object, PropTypes.shape({
837
852
  "__@iterator": PropTypes.func.isRequired,
838
853
  "anchor": PropTypes.func.isRequired,
854
+ "at": PropTypes.func.isRequired,
839
855
  "big": PropTypes.func.isRequired,
840
856
  "blink": PropTypes.func.isRequired,
841
857
  "bold": PropTypes.func.isRequired,