carbon-react 110.6.1 → 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.
- package/esm/__internal__/checkable-input/checkable-input.component.js +1 -0
- package/esm/__internal__/input/input.component.js +1 -0
- package/esm/components/accordion/accordion-group/accordion-group.component.js +1 -0
- package/esm/components/alert/alert.component.d.ts +1 -1
- package/esm/components/alert/alert.component.js +9 -4
- package/esm/components/alert/index.d.ts +1 -1
- package/esm/components/dialog/dialog.component.d.ts +59 -0
- package/esm/components/dialog/dialog.component.js +52 -84
- package/esm/components/dialog/dialog.config.d.ts +5 -0
- package/esm/components/dialog/dialog.style.d.ts +25 -0
- package/esm/components/dialog/index.d.ts +2 -1
- package/esm/components/dialog/index.js +1 -1
- package/esm/components/dismissible-box/dismissible-box.component.js +40 -0
- package/esm/components/form/__internal__/form-summary.component.js +16 -9
- package/esm/components/form/__internal__/form-summary.d.ts +2 -0
- package/esm/components/form/__internal__/form-summary.style.js +11 -2
- package/esm/components/form/form.component.js +23 -4
- package/esm/components/form/form.config.d.ts +1 -0
- package/esm/components/form/form.d.ts +2 -0
- package/esm/components/form/form.style.d.ts +6 -0
- package/esm/components/form/form.style.js +17 -3
- package/esm/components/global-header/global-header.component.js +16 -0
- package/esm/components/grid/grid-container/grid-container.component.js +25 -0
- package/esm/components/grid/grid-item/grid-item.component.js +13 -0
- package/esm/components/image/image.component.js +30 -0
- package/esm/components/modal/modal.component.d.ts +2 -0
- package/esm/components/modal/modal.component.js +1 -0
- package/esm/components/multi-action-button/multi-action-button.component.js +1 -0
- package/esm/components/navigation-bar/navigation-bar.component.js +16 -0
- package/esm/components/search/search.style.d.ts +4 -0
- package/esm/components/split-button/split-button.component.js +1 -0
- package/esm/components/textarea/textarea.style.d.ts +3 -0
- package/esm/components/textbox/textbox.component.js +1 -0
- package/lib/__internal__/checkable-input/checkable-input.component.js +1 -0
- package/lib/__internal__/input/input.component.js +1 -0
- package/lib/components/accordion/accordion-group/accordion-group.component.js +1 -0
- package/lib/components/alert/alert.component.d.ts +1 -1
- package/lib/components/alert/alert.component.js +9 -4
- package/lib/components/alert/index.d.ts +1 -1
- package/lib/components/dialog/dialog.component.d.ts +59 -0
- package/lib/components/dialog/dialog.component.js +53 -85
- package/lib/components/dialog/dialog.config.d.ts +5 -0
- package/lib/components/dialog/dialog.style.d.ts +25 -0
- package/lib/components/dialog/index.d.ts +2 -1
- package/lib/components/dialog/index.js +2 -2
- package/lib/components/dismissible-box/dismissible-box.component.js +40 -0
- package/lib/components/form/__internal__/form-summary.component.js +16 -9
- package/lib/components/form/__internal__/form-summary.d.ts +2 -0
- package/lib/components/form/__internal__/form-summary.style.js +11 -2
- package/lib/components/form/form.component.js +22 -3
- package/lib/components/form/form.config.d.ts +1 -0
- package/lib/components/form/form.d.ts +2 -0
- package/lib/components/form/form.style.d.ts +6 -0
- package/lib/components/form/form.style.js +19 -4
- package/lib/components/global-header/global-header.component.js +16 -0
- package/lib/components/grid/grid-container/grid-container.component.js +25 -0
- package/lib/components/grid/grid-item/grid-item.component.js +13 -0
- package/lib/components/image/image.component.js +30 -0
- package/lib/components/modal/modal.component.d.ts +2 -0
- package/lib/components/modal/modal.component.js +1 -0
- package/lib/components/multi-action-button/multi-action-button.component.js +1 -0
- package/lib/components/navigation-bar/navigation-bar.component.js +16 -0
- package/lib/components/search/search.style.d.ts +4 -0
- package/lib/components/split-button/split-button.component.js +1 -0
- package/lib/components/textarea/textarea.style.d.ts +3 -0
- package/lib/components/textbox/textbox.component.js +1 -0
- package/package.json +4 -9
- package/esm/components/dialog/dialog.d.ts +0 -68
- package/lib/components/dialog/dialog.d.ts +0 -68
|
@@ -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,
|
|
@@ -24,6 +24,7 @@ Image.propTypes = {
|
|
|
24
24
|
"background": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
25
25
|
"__@iterator": PropTypes.func.isRequired,
|
|
26
26
|
"anchor": PropTypes.func.isRequired,
|
|
27
|
+
"at": PropTypes.func.isRequired,
|
|
27
28
|
"big": PropTypes.func.isRequired,
|
|
28
29
|
"blink": PropTypes.func.isRequired,
|
|
29
30
|
"bold": PropTypes.func.isRequired,
|
|
@@ -73,6 +74,7 @@ Image.propTypes = {
|
|
|
73
74
|
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
74
75
|
"__@iterator": PropTypes.func.isRequired,
|
|
75
76
|
"anchor": PropTypes.func.isRequired,
|
|
77
|
+
"at": PropTypes.func.isRequired,
|
|
76
78
|
"big": PropTypes.func.isRequired,
|
|
77
79
|
"blink": PropTypes.func.isRequired,
|
|
78
80
|
"bold": PropTypes.func.isRequired,
|
|
@@ -123,6 +125,7 @@ Image.propTypes = {
|
|
|
123
125
|
"backgroundImage": 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({
|
|
124
126
|
"__@iterator": PropTypes.func.isRequired,
|
|
125
127
|
"anchor": PropTypes.func.isRequired,
|
|
128
|
+
"at": PropTypes.func.isRequired,
|
|
126
129
|
"big": PropTypes.func.isRequired,
|
|
127
130
|
"blink": PropTypes.func.isRequired,
|
|
128
131
|
"bold": PropTypes.func.isRequired,
|
|
@@ -172,6 +175,7 @@ Image.propTypes = {
|
|
|
172
175
|
})])), PropTypes.object, PropTypes.shape({
|
|
173
176
|
"__@iterator": PropTypes.func.isRequired,
|
|
174
177
|
"anchor": PropTypes.func.isRequired,
|
|
178
|
+
"at": PropTypes.func.isRequired,
|
|
175
179
|
"big": PropTypes.func.isRequired,
|
|
176
180
|
"blink": PropTypes.func.isRequired,
|
|
177
181
|
"bold": PropTypes.func.isRequired,
|
|
@@ -222,6 +226,7 @@ Image.propTypes = {
|
|
|
222
226
|
"backgroundPosition": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
223
227
|
"__@iterator": PropTypes.func.isRequired,
|
|
224
228
|
"anchor": PropTypes.func.isRequired,
|
|
229
|
+
"at": PropTypes.func.isRequired,
|
|
225
230
|
"big": PropTypes.func.isRequired,
|
|
226
231
|
"blink": PropTypes.func.isRequired,
|
|
227
232
|
"bold": PropTypes.func.isRequired,
|
|
@@ -271,6 +276,7 @@ Image.propTypes = {
|
|
|
271
276
|
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
272
277
|
"__@iterator": PropTypes.func.isRequired,
|
|
273
278
|
"anchor": PropTypes.func.isRequired,
|
|
279
|
+
"at": PropTypes.func.isRequired,
|
|
274
280
|
"big": PropTypes.func.isRequired,
|
|
275
281
|
"blink": PropTypes.func.isRequired,
|
|
276
282
|
"bold": PropTypes.func.isRequired,
|
|
@@ -321,6 +327,7 @@ Image.propTypes = {
|
|
|
321
327
|
"backgroundRepeat": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "inherit", "initial", "no-repeat", "repeat-x", "repeat-y", "repeat", "revert", "round", "space", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "inherit", "initial", "no-repeat", "repeat-x", "repeat-y", "repeat", "revert", "round", "space", "unset", null]), PropTypes.shape({
|
|
322
328
|
"__@iterator": PropTypes.func.isRequired,
|
|
323
329
|
"anchor": PropTypes.func.isRequired,
|
|
330
|
+
"at": PropTypes.func.isRequired,
|
|
324
331
|
"big": PropTypes.func.isRequired,
|
|
325
332
|
"blink": PropTypes.func.isRequired,
|
|
326
333
|
"bold": PropTypes.func.isRequired,
|
|
@@ -370,6 +377,7 @@ Image.propTypes = {
|
|
|
370
377
|
})])), PropTypes.object, PropTypes.shape({
|
|
371
378
|
"__@iterator": PropTypes.func.isRequired,
|
|
372
379
|
"anchor": PropTypes.func.isRequired,
|
|
380
|
+
"at": PropTypes.func.isRequired,
|
|
373
381
|
"big": PropTypes.func.isRequired,
|
|
374
382
|
"blink": PropTypes.func.isRequired,
|
|
375
383
|
"bold": PropTypes.func.isRequired,
|
|
@@ -420,6 +428,7 @@ Image.propTypes = {
|
|
|
420
428
|
"backgroundSize": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
421
429
|
"__@iterator": PropTypes.func.isRequired,
|
|
422
430
|
"anchor": PropTypes.func.isRequired,
|
|
431
|
+
"at": PropTypes.func.isRequired,
|
|
423
432
|
"big": PropTypes.func.isRequired,
|
|
424
433
|
"blink": PropTypes.func.isRequired,
|
|
425
434
|
"bold": PropTypes.func.isRequired,
|
|
@@ -469,6 +478,7 @@ Image.propTypes = {
|
|
|
469
478
|
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
470
479
|
"__@iterator": PropTypes.func.isRequired,
|
|
471
480
|
"anchor": PropTypes.func.isRequired,
|
|
481
|
+
"at": PropTypes.func.isRequired,
|
|
472
482
|
"big": PropTypes.func.isRequired,
|
|
473
483
|
"blink": PropTypes.func.isRequired,
|
|
474
484
|
"bold": PropTypes.func.isRequired,
|
|
@@ -520,6 +530,7 @@ Image.propTypes = {
|
|
|
520
530
|
"display": PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "-ms-flexbox", "-ms-grid", "-ms-inline-flexbox", "-ms-inline-grid", "-webkit-flex", "-webkit-inline-flex", "block", "contents", "flex", "flow-root", "flow", "grid", "inherit", "initial", "inline-block", "inline-flex", "inline-grid", "inline-list-item", "inline-table", "inline", "list-item", "none", "revert", "ruby-base-container", "ruby-base", "ruby-text-container", "ruby-text", "ruby", "run-in", "table-caption", "table-cell", "table-column-group", "table-column", "table-footer-group", "table-header-group", "table-row-group", "table-row", "table", "unset"]), PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(["-moz-initial", "-ms-flexbox", "-ms-grid", "-ms-inline-flexbox", "-ms-inline-grid", "-webkit-flex", "-webkit-inline-flex", "block", "contents", "flex", "flow-root", "flow", "grid", "inherit", "initial", "inline-block", "inline-flex", "inline-grid", "inline-list-item", "inline-table", "inline", "list-item", "none", "revert", "ruby-base-container", "ruby-base", "ruby-text-container", "ruby-text", "ruby", "run-in", "table-caption", "table-cell", "table-column-group", "table-column", "table-footer-group", "table-header-group", "table-row-group", "table-row", "table", "unset", null]), PropTypes.shape({
|
|
521
531
|
"__@iterator": PropTypes.func.isRequired,
|
|
522
532
|
"anchor": PropTypes.func.isRequired,
|
|
533
|
+
"at": PropTypes.func.isRequired,
|
|
523
534
|
"big": PropTypes.func.isRequired,
|
|
524
535
|
"blink": PropTypes.func.isRequired,
|
|
525
536
|
"bold": PropTypes.func.isRequired,
|
|
@@ -569,6 +580,7 @@ Image.propTypes = {
|
|
|
569
580
|
})])), PropTypes.object, PropTypes.shape({
|
|
570
581
|
"__@iterator": PropTypes.func.isRequired,
|
|
571
582
|
"anchor": PropTypes.func.isRequired,
|
|
583
|
+
"at": PropTypes.func.isRequired,
|
|
572
584
|
"big": PropTypes.func.isRequired,
|
|
573
585
|
"blink": PropTypes.func.isRequired,
|
|
574
586
|
"bold": PropTypes.func.isRequired,
|
|
@@ -619,6 +631,7 @@ Image.propTypes = {
|
|
|
619
631
|
"height": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
620
632
|
"__@iterator": PropTypes.func.isRequired,
|
|
621
633
|
"anchor": PropTypes.func.isRequired,
|
|
634
|
+
"at": PropTypes.func.isRequired,
|
|
622
635
|
"big": PropTypes.func.isRequired,
|
|
623
636
|
"blink": PropTypes.func.isRequired,
|
|
624
637
|
"bold": PropTypes.func.isRequired,
|
|
@@ -668,6 +681,7 @@ Image.propTypes = {
|
|
|
668
681
|
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
669
682
|
"__@iterator": PropTypes.func.isRequired,
|
|
670
683
|
"anchor": PropTypes.func.isRequired,
|
|
684
|
+
"at": PropTypes.func.isRequired,
|
|
671
685
|
"big": PropTypes.func.isRequired,
|
|
672
686
|
"blink": PropTypes.func.isRequired,
|
|
673
687
|
"bold": PropTypes.func.isRequired,
|
|
@@ -806,6 +820,7 @@ Image.propTypes = {
|
|
|
806
820
|
"maxHeight": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
807
821
|
"__@iterator": PropTypes.func.isRequired,
|
|
808
822
|
"anchor": PropTypes.func.isRequired,
|
|
823
|
+
"at": PropTypes.func.isRequired,
|
|
809
824
|
"big": PropTypes.func.isRequired,
|
|
810
825
|
"blink": PropTypes.func.isRequired,
|
|
811
826
|
"bold": PropTypes.func.isRequired,
|
|
@@ -855,6 +870,7 @@ Image.propTypes = {
|
|
|
855
870
|
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
856
871
|
"__@iterator": PropTypes.func.isRequired,
|
|
857
872
|
"anchor": PropTypes.func.isRequired,
|
|
873
|
+
"at": PropTypes.func.isRequired,
|
|
858
874
|
"big": PropTypes.func.isRequired,
|
|
859
875
|
"blink": PropTypes.func.isRequired,
|
|
860
876
|
"bold": PropTypes.func.isRequired,
|
|
@@ -905,6 +921,7 @@ Image.propTypes = {
|
|
|
905
921
|
"maxWidth": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
906
922
|
"__@iterator": PropTypes.func.isRequired,
|
|
907
923
|
"anchor": PropTypes.func.isRequired,
|
|
924
|
+
"at": PropTypes.func.isRequired,
|
|
908
925
|
"big": PropTypes.func.isRequired,
|
|
909
926
|
"blink": PropTypes.func.isRequired,
|
|
910
927
|
"bold": PropTypes.func.isRequired,
|
|
@@ -954,6 +971,7 @@ Image.propTypes = {
|
|
|
954
971
|
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
955
972
|
"__@iterator": PropTypes.func.isRequired,
|
|
956
973
|
"anchor": PropTypes.func.isRequired,
|
|
974
|
+
"at": PropTypes.func.isRequired,
|
|
957
975
|
"big": PropTypes.func.isRequired,
|
|
958
976
|
"blink": PropTypes.func.isRequired,
|
|
959
977
|
"bold": PropTypes.func.isRequired,
|
|
@@ -1015,6 +1033,7 @@ Image.propTypes = {
|
|
|
1015
1033
|
"minHeight": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
1016
1034
|
"__@iterator": PropTypes.func.isRequired,
|
|
1017
1035
|
"anchor": PropTypes.func.isRequired,
|
|
1036
|
+
"at": PropTypes.func.isRequired,
|
|
1018
1037
|
"big": PropTypes.func.isRequired,
|
|
1019
1038
|
"blink": PropTypes.func.isRequired,
|
|
1020
1039
|
"bold": PropTypes.func.isRequired,
|
|
@@ -1064,6 +1083,7 @@ Image.propTypes = {
|
|
|
1064
1083
|
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
1065
1084
|
"__@iterator": PropTypes.func.isRequired,
|
|
1066
1085
|
"anchor": PropTypes.func.isRequired,
|
|
1086
|
+
"at": PropTypes.func.isRequired,
|
|
1067
1087
|
"big": PropTypes.func.isRequired,
|
|
1068
1088
|
"blink": PropTypes.func.isRequired,
|
|
1069
1089
|
"bold": PropTypes.func.isRequired,
|
|
@@ -1114,6 +1134,7 @@ Image.propTypes = {
|
|
|
1114
1134
|
"minWidth": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
1115
1135
|
"__@iterator": PropTypes.func.isRequired,
|
|
1116
1136
|
"anchor": PropTypes.func.isRequired,
|
|
1137
|
+
"at": PropTypes.func.isRequired,
|
|
1117
1138
|
"big": PropTypes.func.isRequired,
|
|
1118
1139
|
"blink": PropTypes.func.isRequired,
|
|
1119
1140
|
"bold": PropTypes.func.isRequired,
|
|
@@ -1163,6 +1184,7 @@ Image.propTypes = {
|
|
|
1163
1184
|
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
1164
1185
|
"__@iterator": PropTypes.func.isRequired,
|
|
1165
1186
|
"anchor": PropTypes.func.isRequired,
|
|
1187
|
+
"at": PropTypes.func.isRequired,
|
|
1166
1188
|
"big": PropTypes.func.isRequired,
|
|
1167
1189
|
"blink": PropTypes.func.isRequired,
|
|
1168
1190
|
"bold": PropTypes.func.isRequired,
|
|
@@ -1268,6 +1290,7 @@ Image.propTypes = {
|
|
|
1268
1290
|
"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({
|
|
1269
1291
|
"__@iterator": PropTypes.func.isRequired,
|
|
1270
1292
|
"anchor": PropTypes.func.isRequired,
|
|
1293
|
+
"at": PropTypes.func.isRequired,
|
|
1271
1294
|
"big": PropTypes.func.isRequired,
|
|
1272
1295
|
"blink": PropTypes.func.isRequired,
|
|
1273
1296
|
"bold": PropTypes.func.isRequired,
|
|
@@ -1317,6 +1340,7 @@ Image.propTypes = {
|
|
|
1317
1340
|
})])), PropTypes.object, PropTypes.shape({
|
|
1318
1341
|
"__@iterator": PropTypes.func.isRequired,
|
|
1319
1342
|
"anchor": PropTypes.func.isRequired,
|
|
1343
|
+
"at": PropTypes.func.isRequired,
|
|
1320
1344
|
"big": PropTypes.func.isRequired,
|
|
1321
1345
|
"blink": PropTypes.func.isRequired,
|
|
1322
1346
|
"bold": PropTypes.func.isRequired,
|
|
@@ -1369,6 +1393,7 @@ Image.propTypes = {
|
|
|
1369
1393
|
"size": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
1370
1394
|
"__@iterator": PropTypes.func.isRequired,
|
|
1371
1395
|
"anchor": PropTypes.func.isRequired,
|
|
1396
|
+
"at": PropTypes.func.isRequired,
|
|
1372
1397
|
"big": PropTypes.func.isRequired,
|
|
1373
1398
|
"blink": PropTypes.func.isRequired,
|
|
1374
1399
|
"bold": PropTypes.func.isRequired,
|
|
@@ -1418,6 +1443,7 @@ Image.propTypes = {
|
|
|
1418
1443
|
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
1419
1444
|
"__@iterator": PropTypes.func.isRequired,
|
|
1420
1445
|
"anchor": PropTypes.func.isRequired,
|
|
1446
|
+
"at": PropTypes.func.isRequired,
|
|
1421
1447
|
"big": PropTypes.func.isRequired,
|
|
1422
1448
|
"blink": PropTypes.func.isRequired,
|
|
1423
1449
|
"bold": PropTypes.func.isRequired,
|
|
@@ -1469,6 +1495,7 @@ Image.propTypes = {
|
|
|
1469
1495
|
"verticalAlign": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
1470
1496
|
"__@iterator": PropTypes.func.isRequired,
|
|
1471
1497
|
"anchor": PropTypes.func.isRequired,
|
|
1498
|
+
"at": PropTypes.func.isRequired,
|
|
1472
1499
|
"big": PropTypes.func.isRequired,
|
|
1473
1500
|
"blink": PropTypes.func.isRequired,
|
|
1474
1501
|
"bold": PropTypes.func.isRequired,
|
|
@@ -1518,6 +1545,7 @@ Image.propTypes = {
|
|
|
1518
1545
|
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
1519
1546
|
"__@iterator": PropTypes.func.isRequired,
|
|
1520
1547
|
"anchor": PropTypes.func.isRequired,
|
|
1548
|
+
"at": PropTypes.func.isRequired,
|
|
1521
1549
|
"big": PropTypes.func.isRequired,
|
|
1522
1550
|
"blink": PropTypes.func.isRequired,
|
|
1523
1551
|
"bold": PropTypes.func.isRequired,
|
|
@@ -1568,6 +1596,7 @@ Image.propTypes = {
|
|
|
1568
1596
|
"width": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
|
|
1569
1597
|
"__@iterator": PropTypes.func.isRequired,
|
|
1570
1598
|
"anchor": PropTypes.func.isRequired,
|
|
1599
|
+
"at": PropTypes.func.isRequired,
|
|
1571
1600
|
"big": PropTypes.func.isRequired,
|
|
1572
1601
|
"blink": PropTypes.func.isRequired,
|
|
1573
1602
|
"bold": PropTypes.func.isRequired,
|
|
@@ -1617,6 +1646,7 @@ Image.propTypes = {
|
|
|
1617
1646
|
}), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
|
|
1618
1647
|
"__@iterator": PropTypes.func.isRequired,
|
|
1619
1648
|
"anchor": PropTypes.func.isRequired,
|
|
1649
|
+
"at": PropTypes.func.isRequired,
|
|
1620
1650
|
"big": PropTypes.func.isRequired,
|
|
1621
1651
|
"blink": PropTypes.func.isRequired,
|
|
1622
1652
|
"bold": PropTypes.func.isRequired,
|
|
@@ -6,6 +6,8 @@ export interface ModalContextProps {
|
|
|
6
6
|
}
|
|
7
7
|
export declare const ModalContext: React.Context<ModalContextProps>;
|
|
8
8
|
export interface ModalProps {
|
|
9
|
+
/** Custom class name */
|
|
10
|
+
className?: string;
|
|
9
11
|
/** Modal content */
|
|
10
12
|
children?: React.ReactNode;
|
|
11
13
|
/** The ARIA role to be applied to the modal */
|
|
@@ -557,6 +557,7 @@ MultiActionButton.propTypes = {
|
|
|
557
557
|
"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({
|
|
558
558
|
"__@iterator": PropTypes.func.isRequired,
|
|
559
559
|
"anchor": PropTypes.func.isRequired,
|
|
560
|
+
"at": PropTypes.func.isRequired,
|
|
560
561
|
"big": PropTypes.func.isRequired,
|
|
561
562
|
"blink": PropTypes.func.isRequired,
|
|
562
563
|
"bold": PropTypes.func.isRequired,
|