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
@@ -81,6 +81,7 @@ GridContainer.propTypes = {
81
81
  "gridArea": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset", null]), PropTypes.shape({
82
82
  "__@iterator": PropTypes.func.isRequired,
83
83
  "anchor": PropTypes.func.isRequired,
84
+ "at": PropTypes.func.isRequired,
84
85
  "big": PropTypes.func.isRequired,
85
86
  "blink": PropTypes.func.isRequired,
86
87
  "bold": PropTypes.func.isRequired,
@@ -130,6 +131,7 @@ GridContainer.propTypes = {
130
131
  })])), PropTypes.object, PropTypes.shape({
131
132
  "__@iterator": PropTypes.func.isRequired,
132
133
  "anchor": PropTypes.func.isRequired,
134
+ "at": PropTypes.func.isRequired,
133
135
  "big": PropTypes.func.isRequired,
134
136
  "blink": PropTypes.func.isRequired,
135
137
  "bold": PropTypes.func.isRequired,
@@ -180,6 +182,7 @@ GridContainer.propTypes = {
180
182
  "gridAutoColumns": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
181
183
  "__@iterator": PropTypes.func.isRequired,
182
184
  "anchor": PropTypes.func.isRequired,
185
+ "at": PropTypes.func.isRequired,
183
186
  "big": PropTypes.func.isRequired,
184
187
  "blink": PropTypes.func.isRequired,
185
188
  "bold": PropTypes.func.isRequired,
@@ -229,6 +232,7 @@ GridContainer.propTypes = {
229
232
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
230
233
  "__@iterator": PropTypes.func.isRequired,
231
234
  "anchor": PropTypes.func.isRequired,
235
+ "at": PropTypes.func.isRequired,
232
236
  "big": PropTypes.func.isRequired,
233
237
  "blink": PropTypes.func.isRequired,
234
238
  "bold": PropTypes.func.isRequired,
@@ -279,6 +283,7 @@ GridContainer.propTypes = {
279
283
  "gridAutoFlow": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "column", "dense", "inherit", "initial", "revert", "row", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "column", "dense", "inherit", "initial", "revert", "row", "unset", null]), PropTypes.shape({
280
284
  "__@iterator": PropTypes.func.isRequired,
281
285
  "anchor": PropTypes.func.isRequired,
286
+ "at": PropTypes.func.isRequired,
282
287
  "big": PropTypes.func.isRequired,
283
288
  "blink": PropTypes.func.isRequired,
284
289
  "bold": PropTypes.func.isRequired,
@@ -328,6 +333,7 @@ GridContainer.propTypes = {
328
333
  })])), PropTypes.object, PropTypes.shape({
329
334
  "__@iterator": PropTypes.func.isRequired,
330
335
  "anchor": PropTypes.func.isRequired,
336
+ "at": PropTypes.func.isRequired,
331
337
  "big": PropTypes.func.isRequired,
332
338
  "blink": PropTypes.func.isRequired,
333
339
  "bold": PropTypes.func.isRequired,
@@ -378,6 +384,7 @@ GridContainer.propTypes = {
378
384
  "gridAutoRows": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
379
385
  "__@iterator": PropTypes.func.isRequired,
380
386
  "anchor": PropTypes.func.isRequired,
387
+ "at": PropTypes.func.isRequired,
381
388
  "big": PropTypes.func.isRequired,
382
389
  "blink": PropTypes.func.isRequired,
383
390
  "bold": PropTypes.func.isRequired,
@@ -427,6 +434,7 @@ GridContainer.propTypes = {
427
434
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
428
435
  "__@iterator": PropTypes.func.isRequired,
429
436
  "anchor": PropTypes.func.isRequired,
437
+ "at": PropTypes.func.isRequired,
430
438
  "big": PropTypes.func.isRequired,
431
439
  "blink": PropTypes.func.isRequired,
432
440
  "bold": PropTypes.func.isRequired,
@@ -477,6 +485,7 @@ GridContainer.propTypes = {
477
485
  "gridColumn": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset", null]), PropTypes.shape({
478
486
  "__@iterator": PropTypes.func.isRequired,
479
487
  "anchor": PropTypes.func.isRequired,
488
+ "at": PropTypes.func.isRequired,
480
489
  "big": PropTypes.func.isRequired,
481
490
  "blink": PropTypes.func.isRequired,
482
491
  "bold": PropTypes.func.isRequired,
@@ -526,6 +535,7 @@ GridContainer.propTypes = {
526
535
  })])), PropTypes.object, PropTypes.shape({
527
536
  "__@iterator": PropTypes.func.isRequired,
528
537
  "anchor": PropTypes.func.isRequired,
538
+ "at": PropTypes.func.isRequired,
529
539
  "big": PropTypes.func.isRequired,
530
540
  "blink": PropTypes.func.isRequired,
531
541
  "bold": PropTypes.func.isRequired,
@@ -576,6 +586,7 @@ GridContainer.propTypes = {
576
586
  "gridColumnGap": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
577
587
  "__@iterator": PropTypes.func.isRequired,
578
588
  "anchor": PropTypes.func.isRequired,
589
+ "at": PropTypes.func.isRequired,
579
590
  "big": PropTypes.func.isRequired,
580
591
  "blink": PropTypes.func.isRequired,
581
592
  "bold": PropTypes.func.isRequired,
@@ -625,6 +636,7 @@ GridContainer.propTypes = {
625
636
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
626
637
  "__@iterator": PropTypes.func.isRequired,
627
638
  "anchor": PropTypes.func.isRequired,
639
+ "at": PropTypes.func.isRequired,
628
640
  "big": PropTypes.func.isRequired,
629
641
  "blink": PropTypes.func.isRequired,
630
642
  "bold": PropTypes.func.isRequired,
@@ -675,6 +687,7 @@ GridContainer.propTypes = {
675
687
  "gridGap": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
676
688
  "__@iterator": PropTypes.func.isRequired,
677
689
  "anchor": PropTypes.func.isRequired,
690
+ "at": PropTypes.func.isRequired,
678
691
  "big": PropTypes.func.isRequired,
679
692
  "blink": PropTypes.func.isRequired,
680
693
  "bold": PropTypes.func.isRequired,
@@ -724,6 +737,7 @@ GridContainer.propTypes = {
724
737
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
725
738
  "__@iterator": PropTypes.func.isRequired,
726
739
  "anchor": PropTypes.func.isRequired,
740
+ "at": PropTypes.func.isRequired,
727
741
  "big": PropTypes.func.isRequired,
728
742
  "blink": PropTypes.func.isRequired,
729
743
  "bold": PropTypes.func.isRequired,
@@ -774,6 +788,7 @@ GridContainer.propTypes = {
774
788
  "gridRow": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset", null]), PropTypes.shape({
775
789
  "__@iterator": PropTypes.func.isRequired,
776
790
  "anchor": PropTypes.func.isRequired,
791
+ "at": PropTypes.func.isRequired,
777
792
  "big": PropTypes.func.isRequired,
778
793
  "blink": PropTypes.func.isRequired,
779
794
  "bold": PropTypes.func.isRequired,
@@ -823,6 +838,7 @@ GridContainer.propTypes = {
823
838
  })])), PropTypes.object, PropTypes.shape({
824
839
  "__@iterator": PropTypes.func.isRequired,
825
840
  "anchor": PropTypes.func.isRequired,
841
+ "at": PropTypes.func.isRequired,
826
842
  "big": PropTypes.func.isRequired,
827
843
  "blink": PropTypes.func.isRequired,
828
844
  "bold": PropTypes.func.isRequired,
@@ -873,6 +889,7 @@ GridContainer.propTypes = {
873
889
  "gridRowGap": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
874
890
  "__@iterator": PropTypes.func.isRequired,
875
891
  "anchor": PropTypes.func.isRequired,
892
+ "at": PropTypes.func.isRequired,
876
893
  "big": PropTypes.func.isRequired,
877
894
  "blink": PropTypes.func.isRequired,
878
895
  "bold": PropTypes.func.isRequired,
@@ -922,6 +939,7 @@ GridContainer.propTypes = {
922
939
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
923
940
  "__@iterator": PropTypes.func.isRequired,
924
941
  "anchor": PropTypes.func.isRequired,
942
+ "at": PropTypes.func.isRequired,
925
943
  "big": PropTypes.func.isRequired,
926
944
  "blink": PropTypes.func.isRequired,
927
945
  "bold": PropTypes.func.isRequired,
@@ -972,6 +990,7 @@ GridContainer.propTypes = {
972
990
  "gridTemplateAreas": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "inherit", "initial", "none", "revert", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "inherit", "initial", "none", "revert", "unset", null]), PropTypes.shape({
973
991
  "__@iterator": PropTypes.func.isRequired,
974
992
  "anchor": PropTypes.func.isRequired,
993
+ "at": PropTypes.func.isRequired,
975
994
  "big": PropTypes.func.isRequired,
976
995
  "blink": PropTypes.func.isRequired,
977
996
  "bold": PropTypes.func.isRequired,
@@ -1021,6 +1040,7 @@ GridContainer.propTypes = {
1021
1040
  })])), PropTypes.object, PropTypes.shape({
1022
1041
  "__@iterator": PropTypes.func.isRequired,
1023
1042
  "anchor": PropTypes.func.isRequired,
1043
+ "at": PropTypes.func.isRequired,
1024
1044
  "big": PropTypes.func.isRequired,
1025
1045
  "blink": PropTypes.func.isRequired,
1026
1046
  "bold": PropTypes.func.isRequired,
@@ -1071,6 +1091,7 @@ GridContainer.propTypes = {
1071
1091
  "gridTemplateColumns": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1072
1092
  "__@iterator": PropTypes.func.isRequired,
1073
1093
  "anchor": PropTypes.func.isRequired,
1094
+ "at": PropTypes.func.isRequired,
1074
1095
  "big": PropTypes.func.isRequired,
1075
1096
  "blink": PropTypes.func.isRequired,
1076
1097
  "bold": PropTypes.func.isRequired,
@@ -1120,6 +1141,7 @@ GridContainer.propTypes = {
1120
1141
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1121
1142
  "__@iterator": PropTypes.func.isRequired,
1122
1143
  "anchor": PropTypes.func.isRequired,
1144
+ "at": PropTypes.func.isRequired,
1123
1145
  "big": PropTypes.func.isRequired,
1124
1146
  "blink": PropTypes.func.isRequired,
1125
1147
  "bold": PropTypes.func.isRequired,
@@ -1170,6 +1192,7 @@ GridContainer.propTypes = {
1170
1192
  "gridTemplateRows": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1171
1193
  "__@iterator": PropTypes.func.isRequired,
1172
1194
  "anchor": PropTypes.func.isRequired,
1195
+ "at": PropTypes.func.isRequired,
1173
1196
  "big": PropTypes.func.isRequired,
1174
1197
  "blink": PropTypes.func.isRequired,
1175
1198
  "bold": PropTypes.func.isRequired,
@@ -1219,6 +1242,7 @@ GridContainer.propTypes = {
1219
1242
  }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1220
1243
  "__@iterator": PropTypes.func.isRequired,
1221
1244
  "anchor": PropTypes.func.isRequired,
1245
+ "at": PropTypes.func.isRequired,
1222
1246
  "big": PropTypes.func.isRequired,
1223
1247
  "blink": PropTypes.func.isRequired,
1224
1248
  "bold": PropTypes.func.isRequired,
@@ -1754,6 +1778,7 @@ GridContainer.propTypes = {
1754
1778
  "role": PropTypes.oneOfType([PropTypes.oneOf(["alert", "alertdialog", "application", "article", "banner", "button", "cell", "checkbox", "columnheader", "combobox", "complementary", "contentinfo", "definition", "dialog", "directory", "document", "feed", "figure", "form", "grid", "gridcell", "group", "heading", "img", "link", "list", "listbox", "listitem", "log", "main", "marquee", "math", "menu", "menubar", "menuitem", "menuitemcheckbox", "menuitemradio", "navigation", "none", "note", "option", "presentation", "progressbar", "radio", "radiogroup", "region", "row", "rowgroup", "rowheader", "scrollbar", "search", "searchbox", "separator", "slider", "spinbutton", "status", "switch", "tab", "table", "tablist", "tabpanel", "term", "textbox", "timer", "toolbar", "tooltip", "tree", "treegrid", "treeitem"]), PropTypes.shape({
1755
1779
  "__@iterator": PropTypes.func.isRequired,
1756
1780
  "anchor": PropTypes.func.isRequired,
1781
+ "at": PropTypes.func.isRequired,
1757
1782
  "big": PropTypes.func.isRequired,
1758
1783
  "blink": PropTypes.func.isRequired,
1759
1784
  "bold": PropTypes.func.isRequired,
@@ -89,6 +89,7 @@ GridItem.propTypes = {
89
89
  "gridArea": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset", null]), PropTypes.shape({
90
90
  "__@iterator": PropTypes.func.isRequired,
91
91
  "anchor": PropTypes.func.isRequired,
92
+ "at": PropTypes.func.isRequired,
92
93
  "big": PropTypes.func.isRequired,
93
94
  "blink": PropTypes.func.isRequired,
94
95
  "bold": PropTypes.func.isRequired,
@@ -138,6 +139,7 @@ GridItem.propTypes = {
138
139
  })])), PropTypes.object, PropTypes.shape({
139
140
  "__@iterator": PropTypes.func.isRequired,
140
141
  "anchor": PropTypes.func.isRequired,
142
+ "at": PropTypes.func.isRequired,
141
143
  "big": PropTypes.func.isRequired,
142
144
  "blink": PropTypes.func.isRequired,
143
145
  "bold": PropTypes.func.isRequired,
@@ -188,6 +190,7 @@ GridItem.propTypes = {
188
190
  "gridColumn": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset", null]), PropTypes.shape({
189
191
  "__@iterator": PropTypes.func.isRequired,
190
192
  "anchor": PropTypes.func.isRequired,
193
+ "at": PropTypes.func.isRequired,
191
194
  "big": PropTypes.func.isRequired,
192
195
  "blink": PropTypes.func.isRequired,
193
196
  "bold": PropTypes.func.isRequired,
@@ -237,6 +240,7 @@ GridItem.propTypes = {
237
240
  })])), PropTypes.object, PropTypes.shape({
238
241
  "__@iterator": PropTypes.func.isRequired,
239
242
  "anchor": PropTypes.func.isRequired,
243
+ "at": PropTypes.func.isRequired,
240
244
  "big": PropTypes.func.isRequired,
241
245
  "blink": PropTypes.func.isRequired,
242
246
  "bold": PropTypes.func.isRequired,
@@ -287,6 +291,7 @@ GridItem.propTypes = {
287
291
  "gridRow": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset", null]), PropTypes.shape({
288
292
  "__@iterator": PropTypes.func.isRequired,
289
293
  "anchor": PropTypes.func.isRequired,
294
+ "at": PropTypes.func.isRequired,
290
295
  "big": PropTypes.func.isRequired,
291
296
  "blink": PropTypes.func.isRequired,
292
297
  "bold": PropTypes.func.isRequired,
@@ -336,6 +341,7 @@ GridItem.propTypes = {
336
341
  })])), PropTypes.object, PropTypes.shape({
337
342
  "__@iterator": PropTypes.func.isRequired,
338
343
  "anchor": PropTypes.func.isRequired,
344
+ "at": PropTypes.func.isRequired,
339
345
  "big": PropTypes.func.isRequired,
340
346
  "blink": PropTypes.func.isRequired,
341
347
  "bold": PropTypes.func.isRequired,
@@ -719,6 +725,7 @@ GridItem.propTypes = {
719
725
  "gridArea": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset", null]), PropTypes.shape({
720
726
  "__@iterator": PropTypes.func.isRequired,
721
727
  "anchor": PropTypes.func.isRequired,
728
+ "at": PropTypes.func.isRequired,
722
729
  "big": PropTypes.func.isRequired,
723
730
  "blink": PropTypes.func.isRequired,
724
731
  "bold": PropTypes.func.isRequired,
@@ -768,6 +775,7 @@ GridItem.propTypes = {
768
775
  })])), PropTypes.object, PropTypes.shape({
769
776
  "__@iterator": PropTypes.func.isRequired,
770
777
  "anchor": PropTypes.func.isRequired,
778
+ "at": PropTypes.func.isRequired,
771
779
  "big": PropTypes.func.isRequired,
772
780
  "blink": PropTypes.func.isRequired,
773
781
  "bold": PropTypes.func.isRequired,
@@ -818,6 +826,7 @@ GridItem.propTypes = {
818
826
  "gridColumn": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset", null]), PropTypes.shape({
819
827
  "__@iterator": PropTypes.func.isRequired,
820
828
  "anchor": PropTypes.func.isRequired,
829
+ "at": PropTypes.func.isRequired,
821
830
  "big": PropTypes.func.isRequired,
822
831
  "blink": PropTypes.func.isRequired,
823
832
  "bold": PropTypes.func.isRequired,
@@ -867,6 +876,7 @@ GridItem.propTypes = {
867
876
  })])), PropTypes.object, PropTypes.shape({
868
877
  "__@iterator": PropTypes.func.isRequired,
869
878
  "anchor": PropTypes.func.isRequired,
879
+ "at": PropTypes.func.isRequired,
870
880
  "big": PropTypes.func.isRequired,
871
881
  "blink": PropTypes.func.isRequired,
872
882
  "bold": PropTypes.func.isRequired,
@@ -917,6 +927,7 @@ GridItem.propTypes = {
917
927
  "gridRow": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "auto", "inherit", "initial", "revert", "unset", null]), PropTypes.shape({
918
928
  "__@iterator": PropTypes.func.isRequired,
919
929
  "anchor": PropTypes.func.isRequired,
930
+ "at": PropTypes.func.isRequired,
920
931
  "big": PropTypes.func.isRequired,
921
932
  "blink": PropTypes.func.isRequired,
922
933
  "bold": PropTypes.func.isRequired,
@@ -966,6 +977,7 @@ GridItem.propTypes = {
966
977
  })])), PropTypes.object, PropTypes.shape({
967
978
  "__@iterator": PropTypes.func.isRequired,
968
979
  "anchor": PropTypes.func.isRequired,
980
+ "at": PropTypes.func.isRequired,
969
981
  "big": PropTypes.func.isRequired,
970
982
  "blink": PropTypes.func.isRequired,
971
983
  "bold": PropTypes.func.isRequired,
@@ -1174,6 +1186,7 @@ GridItem.propTypes = {
1174
1186
  "role": PropTypes.oneOfType([PropTypes.oneOf(["alert", "alertdialog", "application", "article", "banner", "button", "cell", "checkbox", "columnheader", "combobox", "complementary", "contentinfo", "definition", "dialog", "directory", "document", "feed", "figure", "form", "grid", "gridcell", "group", "heading", "img", "link", "list", "listbox", "listitem", "log", "main", "marquee", "math", "menu", "menubar", "menuitem", "menuitemcheckbox", "menuitemradio", "navigation", "none", "note", "option", "presentation", "progressbar", "radio", "radiogroup", "region", "row", "rowgroup", "rowheader", "scrollbar", "search", "searchbox", "separator", "slider", "spinbutton", "status", "switch", "tab", "table", "tablist", "tabpanel", "term", "textbox", "timer", "toolbar", "tooltip", "tree", "treegrid", "treeitem"]), PropTypes.shape({
1175
1187
  "__@iterator": PropTypes.func.isRequired,
1176
1188
  "anchor": PropTypes.func.isRequired,
1189
+ "at": PropTypes.func.isRequired,
1177
1190
  "big": PropTypes.func.isRequired,
1178
1191
  "blink": PropTypes.func.isRequired,
1179
1192
  "bold": PropTypes.func.isRequired,
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { StyledImageProps } from "./image.style";
3
+ export declare const Image: {
4
+ ({ alt, src, children, ...rest }: StyledImageProps): JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default Image;
8
+ export type { StyledImageProps as ImageProps } from "./image.style";