carbon-react 109.2.4 → 109.3.2

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 (91) hide show
  1. package/esm/__internal__/field-help/field-help.component.d.ts +10 -0
  2. package/esm/__internal__/field-help/field-help.component.js +12 -16
  3. package/esm/__internal__/field-help/field-help.style.d.ts +8 -0
  4. package/esm/__internal__/field-help/field-help.style.js +2 -10
  5. package/esm/__internal__/field-help/index.d.ts +2 -1
  6. package/esm/__internal__/focus-trap/focus-trap-utils.d.ts +1 -2
  7. package/esm/__internal__/focus-trap/focus-trap-utils.js +57 -8
  8. package/esm/__internal__/focus-trap/focus-trap.component.js +35 -25
  9. package/esm/__spec_helper__/index.d.ts +1 -0
  10. package/esm/__spec_helper__/index.js +4 -10
  11. package/esm/__spec_helper__/mock-match-media.d.ts +2 -2
  12. package/esm/__spec_helper__/mock-match-media.js +2 -2
  13. package/esm/__spec_helper__/mock-resize-observer.d.ts +2 -0
  14. package/esm/components/alert/alert.component.js +9 -0
  15. package/esm/components/dialog/dialog.component.js +9 -2
  16. package/esm/components/dialog/dialog.d.ts +2 -0
  17. package/esm/components/dialog-full-screen/dialog-full-screen.component.js +9 -2
  18. package/esm/components/dialog-full-screen/dialog-full-screen.d.ts +2 -0
  19. package/esm/components/grid/grid-container/grid-container.component.d.ts +8 -0
  20. package/esm/components/grid/grid-container/grid-container.component.js +1821 -21
  21. package/esm/components/grid/grid-container/grid-container.style.d.ts +3 -0
  22. package/esm/components/grid/grid-container/grid-container.style.js +2 -2
  23. package/esm/components/grid/grid-container/index.d.ts +2 -1
  24. package/esm/components/grid/grid-item/grid-item.component.d.ts +11 -0
  25. package/esm/components/grid/grid-item/grid-item.component.js +1221 -45
  26. package/esm/components/grid/grid-item/grid-item.style.d.ts +17 -0
  27. package/esm/components/grid/grid-item/grid-item.style.js +38 -62
  28. package/esm/components/grid/grid-item/index.d.ts +2 -1
  29. package/esm/components/grid/index.d.ts +2 -0
  30. package/esm/components/grid/index.js +2 -3
  31. package/esm/components/multi-action-button/multi-action-button.component.js +14 -84
  32. package/esm/components/select/utils/highlight-part-of-text.js +13 -1
  33. package/esm/components/select/utils/with-filter.hoc.js +3 -2
  34. package/esm/components/sidebar/sidebar.component.js +9 -2
  35. package/esm/components/sidebar/sidebar.d.ts +2 -0
  36. package/esm/components/split-button/split-button.component.js +15 -82
  37. package/esm/components/toast/toast.component.js +35 -9
  38. package/esm/components/toast/toast.d.ts +5 -1
  39. package/esm/hooks/__internal__/useMenuKeyboardNavigation/index.d.ts +1 -0
  40. package/esm/hooks/__internal__/useMenuKeyboardNavigation/index.js +1 -0
  41. package/esm/hooks/__internal__/useMenuKeyboardNavigation/useMenuKeyboardNavigation.d.ts +2 -0
  42. package/esm/hooks/__internal__/useMenuKeyboardNavigation/useMenuKeyboardNavigation.js +70 -0
  43. package/lib/__internal__/field-help/field-help.component.d.ts +10 -0
  44. package/lib/__internal__/field-help/field-help.component.js +12 -16
  45. package/lib/__internal__/field-help/field-help.style.d.ts +8 -0
  46. package/lib/__internal__/field-help/field-help.style.js +2 -13
  47. package/lib/__internal__/field-help/index.d.ts +2 -1
  48. package/lib/__internal__/focus-trap/focus-trap-utils.d.ts +1 -2
  49. package/lib/__internal__/focus-trap/focus-trap-utils.js +57 -10
  50. package/lib/__internal__/focus-trap/focus-trap.component.js +34 -24
  51. package/lib/__spec_helper__/index.d.ts +1 -0
  52. package/lib/__spec_helper__/index.js +3 -10
  53. package/lib/__spec_helper__/mock-match-media.d.ts +2 -2
  54. package/lib/__spec_helper__/mock-match-media.js +4 -4
  55. package/lib/__spec_helper__/mock-resize-observer.d.ts +2 -0
  56. package/lib/components/alert/alert.component.js +9 -0
  57. package/lib/components/dialog/dialog.component.js +9 -2
  58. package/lib/components/dialog/dialog.d.ts +2 -0
  59. package/lib/components/dialog-full-screen/dialog-full-screen.component.js +9 -2
  60. package/lib/components/dialog-full-screen/dialog-full-screen.d.ts +2 -0
  61. package/lib/components/grid/grid-container/grid-container.component.d.ts +8 -0
  62. package/lib/components/grid/grid-container/grid-container.component.js +1826 -22
  63. package/lib/components/grid/grid-container/grid-container.style.d.ts +3 -0
  64. package/lib/components/grid/grid-container/grid-container.style.js +2 -2
  65. package/lib/components/grid/grid-container/index.d.ts +2 -1
  66. package/lib/components/grid/grid-item/grid-item.component.d.ts +11 -0
  67. package/lib/components/grid/grid-item/grid-item.component.js +1221 -46
  68. package/lib/components/grid/grid-item/grid-item.style.d.ts +17 -0
  69. package/lib/components/grid/grid-item/grid-item.style.js +37 -67
  70. package/lib/components/grid/grid-item/index.d.ts +2 -1
  71. package/lib/components/grid/index.d.ts +2 -0
  72. package/lib/components/multi-action-button/multi-action-button.component.js +13 -83
  73. package/lib/components/select/utils/highlight-part-of-text.js +13 -1
  74. package/lib/components/select/utils/with-filter.hoc.js +3 -2
  75. package/lib/components/sidebar/sidebar.component.js +9 -2
  76. package/lib/components/sidebar/sidebar.d.ts +2 -0
  77. package/lib/components/split-button/split-button.component.js +14 -83
  78. package/lib/components/toast/toast.component.js +35 -7
  79. package/lib/components/toast/toast.d.ts +5 -1
  80. package/lib/hooks/__internal__/useMenuKeyboardNavigation/index.d.ts +1 -0
  81. package/lib/hooks/__internal__/useMenuKeyboardNavigation/index.js +15 -0
  82. package/lib/hooks/__internal__/useMenuKeyboardNavigation/package.json +6 -0
  83. package/lib/hooks/__internal__/useMenuKeyboardNavigation/useMenuKeyboardNavigation.d.ts +2 -0
  84. package/lib/hooks/__internal__/useMenuKeyboardNavigation/useMenuKeyboardNavigation.js +85 -0
  85. package/package.json +3 -4
  86. package/esm/__internal__/field-help/field-help.d.ts +0 -14
  87. package/esm/components/grid/grid-container/grid-container.d.ts +0 -18
  88. package/esm/components/grid/grid-item/grid-item.d.ts +0 -42
  89. package/lib/__internal__/field-help/field-help.d.ts +0 -14
  90. package/lib/components/grid/grid-container/grid-container.d.ts +0 -18
  91. package/lib/components/grid/grid-item/grid-item.d.ts +0 -42
@@ -1,11 +1,8 @@
1
1
  function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
2
2
 
3
- /* eslint-disable max-len */
4
3
  import React from "react";
5
4
  import PropTypes from "prop-types";
6
- import styledSystemPropTypes from "@styled-system/prop-types";
7
- import GridItemStyle from "./grid-item.style";
8
- import { filterStyledSystemPaddingProps } from "../../../style/utils";
5
+ import StyledGridItem from "./grid-item.style";
9
6
 
10
7
  const GridItem = props => {
11
8
  const {
@@ -13,51 +10,1230 @@ const GridItem = props => {
13
10
  responsiveSettings,
14
11
  ...rest
15
12
  } = props;
16
- return /*#__PURE__*/React.createElement(GridItemStyle, _extends({
13
+ return /*#__PURE__*/React.createElement(StyledGridItem, _extends({}, rest, {
17
14
  responsiveSettings: responsiveSettings
18
- }, rest), children);
15
+ }), children);
19
16
  };
20
17
 
21
- const paddingPropTypes = filterStyledSystemPaddingProps(styledSystemPropTypes.space);
22
18
  GridItem.propTypes = {
23
- /** Defines the Component(s) to be rendered within the GridItem */
24
- children: PropTypes.node,
25
-
26
- /** How the grid item is aligned along the block (column) axis. Values: start, end, center, stretch */
27
- alignSelf: PropTypes.string,
28
-
29
- /** Shorthand property for gridColumn and gridRow */
30
- gridArea: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
31
-
32
- /** Starting and ending column position of the GridItem within the GridContainer separated by "/" */
33
- gridColumn: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
34
-
35
- /** Starting and ending row position of the GridItem within the GridContainer separated by "/" */
36
- gridRow: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
37
-
38
- /** How the grid item is aligned along the inline (row) axis. Values: start, end, center, stretch */
39
- justifySelf: PropTypes.string,
40
- ...paddingPropTypes,
41
- responsiveSettings: PropTypes.arrayOf(PropTypes.shape({
42
- /** How the grid item is aligned along the block (column) axis. Values: start, end, center, stretch */
43
- alignSelf: PropTypes.string,
44
-
45
- /** Shorthand property for gridColumn and gridRow */
46
- gridArea: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
47
-
48
- /** Starting and ending column position of the GridItem within the GridContainer separated by "/" */
49
- gridColumn: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
50
-
51
- /** Starting and ending row position of the GridItem within the GridContainer separated by "/" */
52
- gridRow: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
53
-
54
- /** How the grid item is aligned along the inline (row) axis. Values: start, end, center, stretch */
55
- justifySelf: PropTypes.string,
56
-
57
- /** Maximum width of the item */
58
- maxWidth: PropTypes.string,
59
- ...paddingPropTypes
60
- }))
19
+ "about": PropTypes.string,
20
+ "accessKey": PropTypes.string,
21
+ "alignSelf": PropTypes.string,
22
+ "aria-activedescendant": PropTypes.string,
23
+ "aria-atomic": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
24
+ "aria-autocomplete": PropTypes.oneOf(["both", "inline", "list", "none"]),
25
+ "aria-busy": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
26
+ "aria-checked": PropTypes.oneOfType([PropTypes.oneOf(["false", "mixed", "true"]), PropTypes.bool]),
27
+ "aria-colcount": PropTypes.number,
28
+ "aria-colindex": PropTypes.number,
29
+ "aria-colspan": PropTypes.number,
30
+ "aria-controls": PropTypes.string,
31
+ "aria-current": PropTypes.oneOfType([PropTypes.oneOf(["date", "false", "location", "page", "step", "time", "true"]), PropTypes.bool]),
32
+ "aria-describedby": PropTypes.string,
33
+ "aria-details": PropTypes.string,
34
+ "aria-disabled": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
35
+ "aria-dropeffect": PropTypes.oneOf(["copy", "execute", "link", "move", "none", "popup"]),
36
+ "aria-errormessage": PropTypes.string,
37
+ "aria-expanded": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
38
+ "aria-flowto": PropTypes.string,
39
+ "aria-grabbed": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
40
+ "aria-haspopup": PropTypes.oneOfType([PropTypes.oneOf(["dialog", "false", "grid", "listbox", "menu", "tree", "true"]), PropTypes.bool]),
41
+ "aria-hidden": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
42
+ "aria-invalid": PropTypes.oneOfType([PropTypes.oneOf(["false", "grammar", "spelling", "true"]), PropTypes.bool]),
43
+ "aria-keyshortcuts": PropTypes.string,
44
+ "aria-label": PropTypes.string,
45
+ "aria-labelledby": PropTypes.string,
46
+ "aria-level": PropTypes.number,
47
+ "aria-live": PropTypes.oneOf(["assertive", "off", "polite"]),
48
+ "aria-modal": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
49
+ "aria-multiline": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
50
+ "aria-multiselectable": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
51
+ "aria-orientation": PropTypes.oneOf(["horizontal", "vertical"]),
52
+ "aria-owns": PropTypes.string,
53
+ "aria-placeholder": PropTypes.string,
54
+ "aria-posinset": PropTypes.number,
55
+ "aria-pressed": PropTypes.oneOfType([PropTypes.oneOf(["false", "mixed", "true"]), PropTypes.bool]),
56
+ "aria-readonly": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
57
+ "aria-relevant": PropTypes.oneOf(["additions removals", "additions text", "additions", "all", "removals additions", "removals text", "removals", "text additions", "text removals", "text"]),
58
+ "aria-required": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
59
+ "aria-roledescription": PropTypes.string,
60
+ "aria-rowcount": PropTypes.number,
61
+ "aria-rowindex": PropTypes.number,
62
+ "aria-rowspan": PropTypes.number,
63
+ "aria-selected": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
64
+ "aria-setsize": PropTypes.number,
65
+ "aria-sort": PropTypes.oneOf(["ascending", "descending", "none", "other"]),
66
+ "aria-valuemax": PropTypes.number,
67
+ "aria-valuemin": PropTypes.number,
68
+ "aria-valuenow": PropTypes.number,
69
+ "aria-valuetext": PropTypes.string,
70
+ "autoCapitalize": PropTypes.string,
71
+ "autoCorrect": PropTypes.string,
72
+ "autoSave": PropTypes.string,
73
+ "children": PropTypes.node,
74
+ "className": PropTypes.string,
75
+ "color": PropTypes.string,
76
+ "contentEditable": PropTypes.oneOfType([PropTypes.oneOf(["false", "inherit", "true"]), PropTypes.bool]),
77
+ "contextMenu": PropTypes.string,
78
+ "css": PropTypes.oneOfType([PropTypes.func, PropTypes.number, PropTypes.object, PropTypes.shape({
79
+ "__emotion_styles": PropTypes.any.isRequired
80
+ }), PropTypes.string, PropTypes.bool]),
81
+ "dangerouslySetInnerHTML": PropTypes.shape({
82
+ "__html": PropTypes.string.isRequired
83
+ }),
84
+ "datatype": PropTypes.string,
85
+ "defaultChecked": PropTypes.bool,
86
+ "defaultValue": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string), PropTypes.number, PropTypes.string]),
87
+ "dir": PropTypes.string,
88
+ "draggable": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
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
+ "__@iterator": PropTypes.func.isRequired,
91
+ "anchor": PropTypes.func.isRequired,
92
+ "big": PropTypes.func.isRequired,
93
+ "blink": PropTypes.func.isRequired,
94
+ "bold": PropTypes.func.isRequired,
95
+ "charAt": PropTypes.func.isRequired,
96
+ "charCodeAt": PropTypes.func.isRequired,
97
+ "codePointAt": PropTypes.func.isRequired,
98
+ "concat": PropTypes.func.isRequired,
99
+ "endsWith": PropTypes.func.isRequired,
100
+ "fixed": PropTypes.func.isRequired,
101
+ "fontcolor": PropTypes.func.isRequired,
102
+ "fontsize": PropTypes.func.isRequired,
103
+ "includes": PropTypes.func.isRequired,
104
+ "indexOf": PropTypes.func.isRequired,
105
+ "italics": PropTypes.func.isRequired,
106
+ "lastIndexOf": PropTypes.func.isRequired,
107
+ "length": PropTypes.number.isRequired,
108
+ "link": PropTypes.func.isRequired,
109
+ "localeCompare": PropTypes.func.isRequired,
110
+ "match": PropTypes.func.isRequired,
111
+ "matchAll": PropTypes.func.isRequired,
112
+ "normalize": PropTypes.func.isRequired,
113
+ "padEnd": PropTypes.func.isRequired,
114
+ "padStart": PropTypes.func.isRequired,
115
+ "repeat": PropTypes.func.isRequired,
116
+ "replace": PropTypes.func.isRequired,
117
+ "search": PropTypes.func.isRequired,
118
+ "slice": PropTypes.func.isRequired,
119
+ "small": PropTypes.func.isRequired,
120
+ "split": PropTypes.func.isRequired,
121
+ "startsWith": PropTypes.func.isRequired,
122
+ "strike": PropTypes.func.isRequired,
123
+ "sub": PropTypes.func.isRequired,
124
+ "substr": PropTypes.func.isRequired,
125
+ "substring": PropTypes.func.isRequired,
126
+ "sup": PropTypes.func.isRequired,
127
+ "toLocaleLowerCase": PropTypes.func.isRequired,
128
+ "toLocaleUpperCase": PropTypes.func.isRequired,
129
+ "toLowerCase": PropTypes.func.isRequired,
130
+ "toString": PropTypes.func.isRequired,
131
+ "toUpperCase": PropTypes.func.isRequired,
132
+ "trim": PropTypes.func.isRequired,
133
+ "trimEnd": PropTypes.func.isRequired,
134
+ "trimLeft": PropTypes.func.isRequired,
135
+ "trimRight": PropTypes.func.isRequired,
136
+ "trimStart": PropTypes.func.isRequired,
137
+ "valueOf": PropTypes.func.isRequired
138
+ })])), PropTypes.object, PropTypes.shape({
139
+ "__@iterator": PropTypes.func.isRequired,
140
+ "anchor": PropTypes.func.isRequired,
141
+ "big": PropTypes.func.isRequired,
142
+ "blink": PropTypes.func.isRequired,
143
+ "bold": PropTypes.func.isRequired,
144
+ "charAt": PropTypes.func.isRequired,
145
+ "charCodeAt": PropTypes.func.isRequired,
146
+ "codePointAt": PropTypes.func.isRequired,
147
+ "concat": PropTypes.func.isRequired,
148
+ "endsWith": PropTypes.func.isRequired,
149
+ "fixed": PropTypes.func.isRequired,
150
+ "fontcolor": PropTypes.func.isRequired,
151
+ "fontsize": PropTypes.func.isRequired,
152
+ "includes": PropTypes.func.isRequired,
153
+ "indexOf": PropTypes.func.isRequired,
154
+ "italics": PropTypes.func.isRequired,
155
+ "lastIndexOf": PropTypes.func.isRequired,
156
+ "length": PropTypes.number.isRequired,
157
+ "link": PropTypes.func.isRequired,
158
+ "localeCompare": PropTypes.func.isRequired,
159
+ "match": PropTypes.func.isRequired,
160
+ "matchAll": PropTypes.func.isRequired,
161
+ "normalize": PropTypes.func.isRequired,
162
+ "padEnd": PropTypes.func.isRequired,
163
+ "padStart": PropTypes.func.isRequired,
164
+ "repeat": PropTypes.func.isRequired,
165
+ "replace": PropTypes.func.isRequired,
166
+ "search": PropTypes.func.isRequired,
167
+ "slice": PropTypes.func.isRequired,
168
+ "small": PropTypes.func.isRequired,
169
+ "split": PropTypes.func.isRequired,
170
+ "startsWith": PropTypes.func.isRequired,
171
+ "strike": PropTypes.func.isRequired,
172
+ "sub": PropTypes.func.isRequired,
173
+ "substr": PropTypes.func.isRequired,
174
+ "substring": PropTypes.func.isRequired,
175
+ "sup": PropTypes.func.isRequired,
176
+ "toLocaleLowerCase": PropTypes.func.isRequired,
177
+ "toLocaleUpperCase": PropTypes.func.isRequired,
178
+ "toLowerCase": PropTypes.func.isRequired,
179
+ "toString": PropTypes.func.isRequired,
180
+ "toUpperCase": PropTypes.func.isRequired,
181
+ "trim": PropTypes.func.isRequired,
182
+ "trimEnd": PropTypes.func.isRequired,
183
+ "trimLeft": PropTypes.func.isRequired,
184
+ "trimRight": PropTypes.func.isRequired,
185
+ "trimStart": PropTypes.func.isRequired,
186
+ "valueOf": PropTypes.func.isRequired
187
+ })]),
188
+ "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
+ "__@iterator": PropTypes.func.isRequired,
190
+ "anchor": PropTypes.func.isRequired,
191
+ "big": PropTypes.func.isRequired,
192
+ "blink": PropTypes.func.isRequired,
193
+ "bold": PropTypes.func.isRequired,
194
+ "charAt": PropTypes.func.isRequired,
195
+ "charCodeAt": PropTypes.func.isRequired,
196
+ "codePointAt": PropTypes.func.isRequired,
197
+ "concat": PropTypes.func.isRequired,
198
+ "endsWith": PropTypes.func.isRequired,
199
+ "fixed": PropTypes.func.isRequired,
200
+ "fontcolor": PropTypes.func.isRequired,
201
+ "fontsize": PropTypes.func.isRequired,
202
+ "includes": PropTypes.func.isRequired,
203
+ "indexOf": PropTypes.func.isRequired,
204
+ "italics": PropTypes.func.isRequired,
205
+ "lastIndexOf": PropTypes.func.isRequired,
206
+ "length": PropTypes.number.isRequired,
207
+ "link": PropTypes.func.isRequired,
208
+ "localeCompare": PropTypes.func.isRequired,
209
+ "match": PropTypes.func.isRequired,
210
+ "matchAll": PropTypes.func.isRequired,
211
+ "normalize": PropTypes.func.isRequired,
212
+ "padEnd": PropTypes.func.isRequired,
213
+ "padStart": PropTypes.func.isRequired,
214
+ "repeat": PropTypes.func.isRequired,
215
+ "replace": PropTypes.func.isRequired,
216
+ "search": PropTypes.func.isRequired,
217
+ "slice": PropTypes.func.isRequired,
218
+ "small": PropTypes.func.isRequired,
219
+ "split": PropTypes.func.isRequired,
220
+ "startsWith": PropTypes.func.isRequired,
221
+ "strike": PropTypes.func.isRequired,
222
+ "sub": PropTypes.func.isRequired,
223
+ "substr": PropTypes.func.isRequired,
224
+ "substring": PropTypes.func.isRequired,
225
+ "sup": PropTypes.func.isRequired,
226
+ "toLocaleLowerCase": PropTypes.func.isRequired,
227
+ "toLocaleUpperCase": PropTypes.func.isRequired,
228
+ "toLowerCase": PropTypes.func.isRequired,
229
+ "toString": PropTypes.func.isRequired,
230
+ "toUpperCase": PropTypes.func.isRequired,
231
+ "trim": PropTypes.func.isRequired,
232
+ "trimEnd": PropTypes.func.isRequired,
233
+ "trimLeft": PropTypes.func.isRequired,
234
+ "trimRight": PropTypes.func.isRequired,
235
+ "trimStart": PropTypes.func.isRequired,
236
+ "valueOf": PropTypes.func.isRequired
237
+ })])), PropTypes.object, PropTypes.shape({
238
+ "__@iterator": PropTypes.func.isRequired,
239
+ "anchor": PropTypes.func.isRequired,
240
+ "big": PropTypes.func.isRequired,
241
+ "blink": PropTypes.func.isRequired,
242
+ "bold": PropTypes.func.isRequired,
243
+ "charAt": PropTypes.func.isRequired,
244
+ "charCodeAt": PropTypes.func.isRequired,
245
+ "codePointAt": PropTypes.func.isRequired,
246
+ "concat": PropTypes.func.isRequired,
247
+ "endsWith": PropTypes.func.isRequired,
248
+ "fixed": PropTypes.func.isRequired,
249
+ "fontcolor": PropTypes.func.isRequired,
250
+ "fontsize": PropTypes.func.isRequired,
251
+ "includes": PropTypes.func.isRequired,
252
+ "indexOf": PropTypes.func.isRequired,
253
+ "italics": PropTypes.func.isRequired,
254
+ "lastIndexOf": PropTypes.func.isRequired,
255
+ "length": PropTypes.number.isRequired,
256
+ "link": PropTypes.func.isRequired,
257
+ "localeCompare": PropTypes.func.isRequired,
258
+ "match": PropTypes.func.isRequired,
259
+ "matchAll": PropTypes.func.isRequired,
260
+ "normalize": PropTypes.func.isRequired,
261
+ "padEnd": PropTypes.func.isRequired,
262
+ "padStart": PropTypes.func.isRequired,
263
+ "repeat": PropTypes.func.isRequired,
264
+ "replace": PropTypes.func.isRequired,
265
+ "search": PropTypes.func.isRequired,
266
+ "slice": PropTypes.func.isRequired,
267
+ "small": PropTypes.func.isRequired,
268
+ "split": PropTypes.func.isRequired,
269
+ "startsWith": PropTypes.func.isRequired,
270
+ "strike": PropTypes.func.isRequired,
271
+ "sub": PropTypes.func.isRequired,
272
+ "substr": PropTypes.func.isRequired,
273
+ "substring": PropTypes.func.isRequired,
274
+ "sup": PropTypes.func.isRequired,
275
+ "toLocaleLowerCase": PropTypes.func.isRequired,
276
+ "toLocaleUpperCase": PropTypes.func.isRequired,
277
+ "toLowerCase": PropTypes.func.isRequired,
278
+ "toString": PropTypes.func.isRequired,
279
+ "toUpperCase": PropTypes.func.isRequired,
280
+ "trim": PropTypes.func.isRequired,
281
+ "trimEnd": PropTypes.func.isRequired,
282
+ "trimLeft": PropTypes.func.isRequired,
283
+ "trimRight": PropTypes.func.isRequired,
284
+ "trimStart": PropTypes.func.isRequired,
285
+ "valueOf": PropTypes.func.isRequired
286
+ })]),
287
+ "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
+ "__@iterator": PropTypes.func.isRequired,
289
+ "anchor": PropTypes.func.isRequired,
290
+ "big": PropTypes.func.isRequired,
291
+ "blink": PropTypes.func.isRequired,
292
+ "bold": PropTypes.func.isRequired,
293
+ "charAt": PropTypes.func.isRequired,
294
+ "charCodeAt": PropTypes.func.isRequired,
295
+ "codePointAt": PropTypes.func.isRequired,
296
+ "concat": PropTypes.func.isRequired,
297
+ "endsWith": PropTypes.func.isRequired,
298
+ "fixed": PropTypes.func.isRequired,
299
+ "fontcolor": PropTypes.func.isRequired,
300
+ "fontsize": PropTypes.func.isRequired,
301
+ "includes": PropTypes.func.isRequired,
302
+ "indexOf": PropTypes.func.isRequired,
303
+ "italics": PropTypes.func.isRequired,
304
+ "lastIndexOf": PropTypes.func.isRequired,
305
+ "length": PropTypes.number.isRequired,
306
+ "link": PropTypes.func.isRequired,
307
+ "localeCompare": PropTypes.func.isRequired,
308
+ "match": PropTypes.func.isRequired,
309
+ "matchAll": PropTypes.func.isRequired,
310
+ "normalize": PropTypes.func.isRequired,
311
+ "padEnd": PropTypes.func.isRequired,
312
+ "padStart": PropTypes.func.isRequired,
313
+ "repeat": PropTypes.func.isRequired,
314
+ "replace": PropTypes.func.isRequired,
315
+ "search": PropTypes.func.isRequired,
316
+ "slice": PropTypes.func.isRequired,
317
+ "small": PropTypes.func.isRequired,
318
+ "split": PropTypes.func.isRequired,
319
+ "startsWith": PropTypes.func.isRequired,
320
+ "strike": PropTypes.func.isRequired,
321
+ "sub": PropTypes.func.isRequired,
322
+ "substr": PropTypes.func.isRequired,
323
+ "substring": PropTypes.func.isRequired,
324
+ "sup": PropTypes.func.isRequired,
325
+ "toLocaleLowerCase": PropTypes.func.isRequired,
326
+ "toLocaleUpperCase": PropTypes.func.isRequired,
327
+ "toLowerCase": PropTypes.func.isRequired,
328
+ "toString": PropTypes.func.isRequired,
329
+ "toUpperCase": PropTypes.func.isRequired,
330
+ "trim": PropTypes.func.isRequired,
331
+ "trimEnd": PropTypes.func.isRequired,
332
+ "trimLeft": PropTypes.func.isRequired,
333
+ "trimRight": PropTypes.func.isRequired,
334
+ "trimStart": PropTypes.func.isRequired,
335
+ "valueOf": PropTypes.func.isRequired
336
+ })])), PropTypes.object, PropTypes.shape({
337
+ "__@iterator": PropTypes.func.isRequired,
338
+ "anchor": PropTypes.func.isRequired,
339
+ "big": PropTypes.func.isRequired,
340
+ "blink": PropTypes.func.isRequired,
341
+ "bold": PropTypes.func.isRequired,
342
+ "charAt": PropTypes.func.isRequired,
343
+ "charCodeAt": PropTypes.func.isRequired,
344
+ "codePointAt": PropTypes.func.isRequired,
345
+ "concat": PropTypes.func.isRequired,
346
+ "endsWith": PropTypes.func.isRequired,
347
+ "fixed": PropTypes.func.isRequired,
348
+ "fontcolor": PropTypes.func.isRequired,
349
+ "fontsize": PropTypes.func.isRequired,
350
+ "includes": PropTypes.func.isRequired,
351
+ "indexOf": PropTypes.func.isRequired,
352
+ "italics": PropTypes.func.isRequired,
353
+ "lastIndexOf": PropTypes.func.isRequired,
354
+ "length": PropTypes.number.isRequired,
355
+ "link": PropTypes.func.isRequired,
356
+ "localeCompare": PropTypes.func.isRequired,
357
+ "match": PropTypes.func.isRequired,
358
+ "matchAll": PropTypes.func.isRequired,
359
+ "normalize": PropTypes.func.isRequired,
360
+ "padEnd": PropTypes.func.isRequired,
361
+ "padStart": PropTypes.func.isRequired,
362
+ "repeat": PropTypes.func.isRequired,
363
+ "replace": PropTypes.func.isRequired,
364
+ "search": PropTypes.func.isRequired,
365
+ "slice": PropTypes.func.isRequired,
366
+ "small": PropTypes.func.isRequired,
367
+ "split": PropTypes.func.isRequired,
368
+ "startsWith": PropTypes.func.isRequired,
369
+ "strike": PropTypes.func.isRequired,
370
+ "sub": PropTypes.func.isRequired,
371
+ "substr": PropTypes.func.isRequired,
372
+ "substring": PropTypes.func.isRequired,
373
+ "sup": PropTypes.func.isRequired,
374
+ "toLocaleLowerCase": PropTypes.func.isRequired,
375
+ "toLocaleUpperCase": PropTypes.func.isRequired,
376
+ "toLowerCase": PropTypes.func.isRequired,
377
+ "toString": PropTypes.func.isRequired,
378
+ "toUpperCase": PropTypes.func.isRequired,
379
+ "trim": PropTypes.func.isRequired,
380
+ "trimEnd": PropTypes.func.isRequired,
381
+ "trimLeft": PropTypes.func.isRequired,
382
+ "trimRight": PropTypes.func.isRequired,
383
+ "trimStart": PropTypes.func.isRequired,
384
+ "valueOf": PropTypes.func.isRequired
385
+ })]),
386
+ "hidden": PropTypes.bool,
387
+ "id": PropTypes.string,
388
+ "inlist": PropTypes.any,
389
+ "inputMode": PropTypes.oneOf(["decimal", "email", "none", "numeric", "search", "tel", "text", "url"]),
390
+ "is": PropTypes.string,
391
+ "itemID": PropTypes.string,
392
+ "itemProp": PropTypes.string,
393
+ "itemRef": PropTypes.string,
394
+ "itemScope": PropTypes.bool,
395
+ "itemType": PropTypes.string,
396
+ "justifySelf": PropTypes.string,
397
+ "lang": PropTypes.string,
398
+ "onAbort": PropTypes.func,
399
+ "onAbortCapture": PropTypes.func,
400
+ "onAnimationEnd": PropTypes.func,
401
+ "onAnimationEndCapture": PropTypes.func,
402
+ "onAnimationIteration": PropTypes.func,
403
+ "onAnimationIterationCapture": PropTypes.func,
404
+ "onAnimationStart": PropTypes.func,
405
+ "onAnimationStartCapture": PropTypes.func,
406
+ "onAuxClick": PropTypes.func,
407
+ "onAuxClickCapture": PropTypes.func,
408
+ "onBeforeInput": PropTypes.func,
409
+ "onBeforeInputCapture": PropTypes.func,
410
+ "onBlur": PropTypes.func,
411
+ "onBlurCapture": PropTypes.func,
412
+ "onCanPlay": PropTypes.func,
413
+ "onCanPlayCapture": PropTypes.func,
414
+ "onCanPlayThrough": PropTypes.func,
415
+ "onCanPlayThroughCapture": PropTypes.func,
416
+ "onChange": PropTypes.func,
417
+ "onChangeCapture": PropTypes.func,
418
+ "onClick": PropTypes.func,
419
+ "onClickCapture": PropTypes.func,
420
+ "onCompositionEnd": PropTypes.func,
421
+ "onCompositionEndCapture": PropTypes.func,
422
+ "onCompositionStart": PropTypes.func,
423
+ "onCompositionStartCapture": PropTypes.func,
424
+ "onCompositionUpdate": PropTypes.func,
425
+ "onCompositionUpdateCapture": PropTypes.func,
426
+ "onContextMenu": PropTypes.func,
427
+ "onContextMenuCapture": PropTypes.func,
428
+ "onCopy": PropTypes.func,
429
+ "onCopyCapture": PropTypes.func,
430
+ "onCut": PropTypes.func,
431
+ "onCutCapture": PropTypes.func,
432
+ "onDoubleClick": PropTypes.func,
433
+ "onDoubleClickCapture": PropTypes.func,
434
+ "onDrag": PropTypes.func,
435
+ "onDragCapture": PropTypes.func,
436
+ "onDragEnd": PropTypes.func,
437
+ "onDragEndCapture": PropTypes.func,
438
+ "onDragEnter": PropTypes.func,
439
+ "onDragEnterCapture": PropTypes.func,
440
+ "onDragExit": PropTypes.func,
441
+ "onDragExitCapture": PropTypes.func,
442
+ "onDragLeave": PropTypes.func,
443
+ "onDragLeaveCapture": PropTypes.func,
444
+ "onDragOver": PropTypes.func,
445
+ "onDragOverCapture": PropTypes.func,
446
+ "onDragStart": PropTypes.func,
447
+ "onDragStartCapture": PropTypes.func,
448
+ "onDrop": PropTypes.func,
449
+ "onDropCapture": PropTypes.func,
450
+ "onDurationChange": PropTypes.func,
451
+ "onDurationChangeCapture": PropTypes.func,
452
+ "onEmptied": PropTypes.func,
453
+ "onEmptiedCapture": PropTypes.func,
454
+ "onEncrypted": PropTypes.func,
455
+ "onEncryptedCapture": PropTypes.func,
456
+ "onEnded": PropTypes.func,
457
+ "onEndedCapture": PropTypes.func,
458
+ "onError": PropTypes.func,
459
+ "onErrorCapture": PropTypes.func,
460
+ "onFocus": PropTypes.func,
461
+ "onFocusCapture": PropTypes.func,
462
+ "onGotPointerCapture": PropTypes.func,
463
+ "onGotPointerCaptureCapture": PropTypes.func,
464
+ "onInput": PropTypes.func,
465
+ "onInputCapture": PropTypes.func,
466
+ "onInvalid": PropTypes.func,
467
+ "onInvalidCapture": PropTypes.func,
468
+ "onKeyDown": PropTypes.func,
469
+ "onKeyDownCapture": PropTypes.func,
470
+ "onKeyPress": PropTypes.func,
471
+ "onKeyPressCapture": PropTypes.func,
472
+ "onKeyUp": PropTypes.func,
473
+ "onKeyUpCapture": PropTypes.func,
474
+ "onLoad": PropTypes.func,
475
+ "onLoadCapture": PropTypes.func,
476
+ "onLoadedData": PropTypes.func,
477
+ "onLoadedDataCapture": PropTypes.func,
478
+ "onLoadedMetadata": PropTypes.func,
479
+ "onLoadedMetadataCapture": PropTypes.func,
480
+ "onLoadStart": PropTypes.func,
481
+ "onLoadStartCapture": PropTypes.func,
482
+ "onLostPointerCapture": PropTypes.func,
483
+ "onLostPointerCaptureCapture": PropTypes.func,
484
+ "onMouseDown": PropTypes.func,
485
+ "onMouseDownCapture": PropTypes.func,
486
+ "onMouseEnter": PropTypes.func,
487
+ "onMouseLeave": PropTypes.func,
488
+ "onMouseMove": PropTypes.func,
489
+ "onMouseMoveCapture": PropTypes.func,
490
+ "onMouseOut": PropTypes.func,
491
+ "onMouseOutCapture": PropTypes.func,
492
+ "onMouseOver": PropTypes.func,
493
+ "onMouseOverCapture": PropTypes.func,
494
+ "onMouseUp": PropTypes.func,
495
+ "onMouseUpCapture": PropTypes.func,
496
+ "onPaste": PropTypes.func,
497
+ "onPasteCapture": PropTypes.func,
498
+ "onPause": PropTypes.func,
499
+ "onPauseCapture": PropTypes.func,
500
+ "onPlay": PropTypes.func,
501
+ "onPlayCapture": PropTypes.func,
502
+ "onPlaying": PropTypes.func,
503
+ "onPlayingCapture": PropTypes.func,
504
+ "onPointerCancel": PropTypes.func,
505
+ "onPointerCancelCapture": PropTypes.func,
506
+ "onPointerDown": PropTypes.func,
507
+ "onPointerDownCapture": PropTypes.func,
508
+ "onPointerEnter": PropTypes.func,
509
+ "onPointerEnterCapture": PropTypes.func,
510
+ "onPointerLeave": PropTypes.func,
511
+ "onPointerLeaveCapture": PropTypes.func,
512
+ "onPointerMove": PropTypes.func,
513
+ "onPointerMoveCapture": PropTypes.func,
514
+ "onPointerOut": PropTypes.func,
515
+ "onPointerOutCapture": PropTypes.func,
516
+ "onPointerOver": PropTypes.func,
517
+ "onPointerOverCapture": PropTypes.func,
518
+ "onPointerUp": PropTypes.func,
519
+ "onPointerUpCapture": PropTypes.func,
520
+ "onProgress": PropTypes.func,
521
+ "onProgressCapture": PropTypes.func,
522
+ "onRateChange": PropTypes.func,
523
+ "onRateChangeCapture": PropTypes.func,
524
+ "onReset": PropTypes.func,
525
+ "onResetCapture": PropTypes.func,
526
+ "onScroll": PropTypes.func,
527
+ "onScrollCapture": PropTypes.func,
528
+ "onSeeked": PropTypes.func,
529
+ "onSeekedCapture": PropTypes.func,
530
+ "onSeeking": PropTypes.func,
531
+ "onSeekingCapture": PropTypes.func,
532
+ "onSelect": PropTypes.func,
533
+ "onSelectCapture": PropTypes.func,
534
+ "onStalled": PropTypes.func,
535
+ "onStalledCapture": PropTypes.func,
536
+ "onSubmit": PropTypes.func,
537
+ "onSubmitCapture": PropTypes.func,
538
+ "onSuspend": PropTypes.func,
539
+ "onSuspendCapture": PropTypes.func,
540
+ "onTimeUpdate": PropTypes.func,
541
+ "onTimeUpdateCapture": PropTypes.func,
542
+ "onTouchCancel": PropTypes.func,
543
+ "onTouchCancelCapture": PropTypes.func,
544
+ "onTouchEnd": PropTypes.func,
545
+ "onTouchEndCapture": PropTypes.func,
546
+ "onTouchMove": PropTypes.func,
547
+ "onTouchMoveCapture": PropTypes.func,
548
+ "onTouchStart": PropTypes.func,
549
+ "onTouchStartCapture": PropTypes.func,
550
+ "onTransitionEnd": PropTypes.func,
551
+ "onTransitionEndCapture": PropTypes.func,
552
+ "onVolumeChange": PropTypes.func,
553
+ "onVolumeChangeCapture": PropTypes.func,
554
+ "onWaiting": PropTypes.func,
555
+ "onWaitingCapture": PropTypes.func,
556
+ "onWheel": PropTypes.func,
557
+ "onWheelCapture": PropTypes.func,
558
+ "p": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
559
+ "__@toStringTag": PropTypes.string.isRequired,
560
+ "description": PropTypes.string,
561
+ "toString": PropTypes.func.isRequired,
562
+ "valueOf": PropTypes.func.isRequired
563
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
564
+ "__@toStringTag": PropTypes.string.isRequired,
565
+ "description": PropTypes.string,
566
+ "toString": PropTypes.func.isRequired,
567
+ "valueOf": PropTypes.func.isRequired
568
+ }), PropTypes.string]),
569
+ "padding": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
570
+ "__@toStringTag": PropTypes.string.isRequired,
571
+ "description": PropTypes.string,
572
+ "toString": PropTypes.func.isRequired,
573
+ "valueOf": PropTypes.func.isRequired
574
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
575
+ "__@toStringTag": PropTypes.string.isRequired,
576
+ "description": PropTypes.string,
577
+ "toString": PropTypes.func.isRequired,
578
+ "valueOf": PropTypes.func.isRequired
579
+ }), PropTypes.string]),
580
+ "paddingBottom": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
581
+ "__@toStringTag": PropTypes.string.isRequired,
582
+ "description": PropTypes.string,
583
+ "toString": PropTypes.func.isRequired,
584
+ "valueOf": PropTypes.func.isRequired
585
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
586
+ "__@toStringTag": PropTypes.string.isRequired,
587
+ "description": PropTypes.string,
588
+ "toString": PropTypes.func.isRequired,
589
+ "valueOf": PropTypes.func.isRequired
590
+ }), PropTypes.string]),
591
+ "paddingLeft": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
592
+ "__@toStringTag": PropTypes.string.isRequired,
593
+ "description": PropTypes.string,
594
+ "toString": PropTypes.func.isRequired,
595
+ "valueOf": PropTypes.func.isRequired
596
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
597
+ "__@toStringTag": PropTypes.string.isRequired,
598
+ "description": PropTypes.string,
599
+ "toString": PropTypes.func.isRequired,
600
+ "valueOf": PropTypes.func.isRequired
601
+ }), PropTypes.string]),
602
+ "paddingRight": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
603
+ "__@toStringTag": PropTypes.string.isRequired,
604
+ "description": PropTypes.string,
605
+ "toString": PropTypes.func.isRequired,
606
+ "valueOf": PropTypes.func.isRequired
607
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
608
+ "__@toStringTag": PropTypes.string.isRequired,
609
+ "description": PropTypes.string,
610
+ "toString": PropTypes.func.isRequired,
611
+ "valueOf": PropTypes.func.isRequired
612
+ }), PropTypes.string]),
613
+ "paddingTop": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
614
+ "__@toStringTag": PropTypes.string.isRequired,
615
+ "description": PropTypes.string,
616
+ "toString": PropTypes.func.isRequired,
617
+ "valueOf": PropTypes.func.isRequired
618
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
619
+ "__@toStringTag": PropTypes.string.isRequired,
620
+ "description": PropTypes.string,
621
+ "toString": PropTypes.func.isRequired,
622
+ "valueOf": PropTypes.func.isRequired
623
+ }), PropTypes.string]),
624
+ "paddingX": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
625
+ "__@toStringTag": PropTypes.string.isRequired,
626
+ "description": PropTypes.string,
627
+ "toString": PropTypes.func.isRequired,
628
+ "valueOf": PropTypes.func.isRequired
629
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
630
+ "__@toStringTag": PropTypes.string.isRequired,
631
+ "description": PropTypes.string,
632
+ "toString": PropTypes.func.isRequired,
633
+ "valueOf": PropTypes.func.isRequired
634
+ }), PropTypes.string]),
635
+ "paddingY": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
636
+ "__@toStringTag": PropTypes.string.isRequired,
637
+ "description": PropTypes.string,
638
+ "toString": PropTypes.func.isRequired,
639
+ "valueOf": PropTypes.func.isRequired
640
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
641
+ "__@toStringTag": PropTypes.string.isRequired,
642
+ "description": PropTypes.string,
643
+ "toString": PropTypes.func.isRequired,
644
+ "valueOf": PropTypes.func.isRequired
645
+ }), PropTypes.string]),
646
+ "pb": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
647
+ "__@toStringTag": PropTypes.string.isRequired,
648
+ "description": PropTypes.string,
649
+ "toString": PropTypes.func.isRequired,
650
+ "valueOf": PropTypes.func.isRequired
651
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
652
+ "__@toStringTag": PropTypes.string.isRequired,
653
+ "description": PropTypes.string,
654
+ "toString": PropTypes.func.isRequired,
655
+ "valueOf": PropTypes.func.isRequired
656
+ }), PropTypes.string]),
657
+ "pl": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
658
+ "__@toStringTag": PropTypes.string.isRequired,
659
+ "description": PropTypes.string,
660
+ "toString": PropTypes.func.isRequired,
661
+ "valueOf": PropTypes.func.isRequired
662
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
663
+ "__@toStringTag": PropTypes.string.isRequired,
664
+ "description": PropTypes.string,
665
+ "toString": PropTypes.func.isRequired,
666
+ "valueOf": PropTypes.func.isRequired
667
+ }), PropTypes.string]),
668
+ "placeholder": PropTypes.string,
669
+ "pr": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
670
+ "__@toStringTag": PropTypes.string.isRequired,
671
+ "description": PropTypes.string,
672
+ "toString": PropTypes.func.isRequired,
673
+ "valueOf": PropTypes.func.isRequired
674
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
675
+ "__@toStringTag": PropTypes.string.isRequired,
676
+ "description": PropTypes.string,
677
+ "toString": PropTypes.func.isRequired,
678
+ "valueOf": PropTypes.func.isRequired
679
+ }), PropTypes.string]),
680
+ "prefix": PropTypes.string,
681
+ "property": PropTypes.string,
682
+ "pt": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
683
+ "__@toStringTag": PropTypes.string.isRequired,
684
+ "description": PropTypes.string,
685
+ "toString": PropTypes.func.isRequired,
686
+ "valueOf": PropTypes.func.isRequired
687
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
688
+ "__@toStringTag": PropTypes.string.isRequired,
689
+ "description": PropTypes.string,
690
+ "toString": PropTypes.func.isRequired,
691
+ "valueOf": PropTypes.func.isRequired
692
+ }), PropTypes.string]),
693
+ "px": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
694
+ "__@toStringTag": PropTypes.string.isRequired,
695
+ "description": PropTypes.string,
696
+ "toString": PropTypes.func.isRequired,
697
+ "valueOf": PropTypes.func.isRequired
698
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
699
+ "__@toStringTag": PropTypes.string.isRequired,
700
+ "description": PropTypes.string,
701
+ "toString": PropTypes.func.isRequired,
702
+ "valueOf": PropTypes.func.isRequired
703
+ }), PropTypes.string]),
704
+ "py": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
705
+ "__@toStringTag": PropTypes.string.isRequired,
706
+ "description": PropTypes.string,
707
+ "toString": PropTypes.func.isRequired,
708
+ "valueOf": PropTypes.func.isRequired
709
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
710
+ "__@toStringTag": PropTypes.string.isRequired,
711
+ "description": PropTypes.string,
712
+ "toString": PropTypes.func.isRequired,
713
+ "valueOf": PropTypes.func.isRequired
714
+ }), PropTypes.string]),
715
+ "radioGroup": PropTypes.string,
716
+ "resource": PropTypes.string,
717
+ "responsiveSettings": PropTypes.arrayOf(PropTypes.shape({
718
+ "alignSelf": PropTypes.string,
719
+ "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
+ "__@iterator": PropTypes.func.isRequired,
721
+ "anchor": PropTypes.func.isRequired,
722
+ "big": PropTypes.func.isRequired,
723
+ "blink": PropTypes.func.isRequired,
724
+ "bold": PropTypes.func.isRequired,
725
+ "charAt": PropTypes.func.isRequired,
726
+ "charCodeAt": PropTypes.func.isRequired,
727
+ "codePointAt": PropTypes.func.isRequired,
728
+ "concat": PropTypes.func.isRequired,
729
+ "endsWith": PropTypes.func.isRequired,
730
+ "fixed": PropTypes.func.isRequired,
731
+ "fontcolor": PropTypes.func.isRequired,
732
+ "fontsize": PropTypes.func.isRequired,
733
+ "includes": PropTypes.func.isRequired,
734
+ "indexOf": PropTypes.func.isRequired,
735
+ "italics": PropTypes.func.isRequired,
736
+ "lastIndexOf": PropTypes.func.isRequired,
737
+ "length": PropTypes.number.isRequired,
738
+ "link": PropTypes.func.isRequired,
739
+ "localeCompare": PropTypes.func.isRequired,
740
+ "match": PropTypes.func.isRequired,
741
+ "matchAll": PropTypes.func.isRequired,
742
+ "normalize": PropTypes.func.isRequired,
743
+ "padEnd": PropTypes.func.isRequired,
744
+ "padStart": PropTypes.func.isRequired,
745
+ "repeat": PropTypes.func.isRequired,
746
+ "replace": PropTypes.func.isRequired,
747
+ "search": PropTypes.func.isRequired,
748
+ "slice": PropTypes.func.isRequired,
749
+ "small": PropTypes.func.isRequired,
750
+ "split": PropTypes.func.isRequired,
751
+ "startsWith": PropTypes.func.isRequired,
752
+ "strike": PropTypes.func.isRequired,
753
+ "sub": PropTypes.func.isRequired,
754
+ "substr": PropTypes.func.isRequired,
755
+ "substring": PropTypes.func.isRequired,
756
+ "sup": PropTypes.func.isRequired,
757
+ "toLocaleLowerCase": PropTypes.func.isRequired,
758
+ "toLocaleUpperCase": PropTypes.func.isRequired,
759
+ "toLowerCase": PropTypes.func.isRequired,
760
+ "toString": PropTypes.func.isRequired,
761
+ "toUpperCase": PropTypes.func.isRequired,
762
+ "trim": PropTypes.func.isRequired,
763
+ "trimEnd": PropTypes.func.isRequired,
764
+ "trimLeft": PropTypes.func.isRequired,
765
+ "trimRight": PropTypes.func.isRequired,
766
+ "trimStart": PropTypes.func.isRequired,
767
+ "valueOf": PropTypes.func.isRequired
768
+ })])), PropTypes.object, PropTypes.shape({
769
+ "__@iterator": PropTypes.func.isRequired,
770
+ "anchor": PropTypes.func.isRequired,
771
+ "big": PropTypes.func.isRequired,
772
+ "blink": PropTypes.func.isRequired,
773
+ "bold": PropTypes.func.isRequired,
774
+ "charAt": PropTypes.func.isRequired,
775
+ "charCodeAt": PropTypes.func.isRequired,
776
+ "codePointAt": PropTypes.func.isRequired,
777
+ "concat": PropTypes.func.isRequired,
778
+ "endsWith": PropTypes.func.isRequired,
779
+ "fixed": PropTypes.func.isRequired,
780
+ "fontcolor": PropTypes.func.isRequired,
781
+ "fontsize": PropTypes.func.isRequired,
782
+ "includes": PropTypes.func.isRequired,
783
+ "indexOf": PropTypes.func.isRequired,
784
+ "italics": PropTypes.func.isRequired,
785
+ "lastIndexOf": PropTypes.func.isRequired,
786
+ "length": PropTypes.number.isRequired,
787
+ "link": PropTypes.func.isRequired,
788
+ "localeCompare": PropTypes.func.isRequired,
789
+ "match": PropTypes.func.isRequired,
790
+ "matchAll": PropTypes.func.isRequired,
791
+ "normalize": PropTypes.func.isRequired,
792
+ "padEnd": PropTypes.func.isRequired,
793
+ "padStart": PropTypes.func.isRequired,
794
+ "repeat": PropTypes.func.isRequired,
795
+ "replace": PropTypes.func.isRequired,
796
+ "search": PropTypes.func.isRequired,
797
+ "slice": PropTypes.func.isRequired,
798
+ "small": PropTypes.func.isRequired,
799
+ "split": PropTypes.func.isRequired,
800
+ "startsWith": PropTypes.func.isRequired,
801
+ "strike": PropTypes.func.isRequired,
802
+ "sub": PropTypes.func.isRequired,
803
+ "substr": PropTypes.func.isRequired,
804
+ "substring": PropTypes.func.isRequired,
805
+ "sup": PropTypes.func.isRequired,
806
+ "toLocaleLowerCase": PropTypes.func.isRequired,
807
+ "toLocaleUpperCase": PropTypes.func.isRequired,
808
+ "toLowerCase": PropTypes.func.isRequired,
809
+ "toString": PropTypes.func.isRequired,
810
+ "toUpperCase": PropTypes.func.isRequired,
811
+ "trim": PropTypes.func.isRequired,
812
+ "trimEnd": PropTypes.func.isRequired,
813
+ "trimLeft": PropTypes.func.isRequired,
814
+ "trimRight": PropTypes.func.isRequired,
815
+ "trimStart": PropTypes.func.isRequired,
816
+ "valueOf": PropTypes.func.isRequired
817
+ })]),
818
+ "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
+ "__@iterator": PropTypes.func.isRequired,
820
+ "anchor": PropTypes.func.isRequired,
821
+ "big": PropTypes.func.isRequired,
822
+ "blink": PropTypes.func.isRequired,
823
+ "bold": PropTypes.func.isRequired,
824
+ "charAt": PropTypes.func.isRequired,
825
+ "charCodeAt": PropTypes.func.isRequired,
826
+ "codePointAt": PropTypes.func.isRequired,
827
+ "concat": PropTypes.func.isRequired,
828
+ "endsWith": PropTypes.func.isRequired,
829
+ "fixed": PropTypes.func.isRequired,
830
+ "fontcolor": PropTypes.func.isRequired,
831
+ "fontsize": PropTypes.func.isRequired,
832
+ "includes": PropTypes.func.isRequired,
833
+ "indexOf": PropTypes.func.isRequired,
834
+ "italics": PropTypes.func.isRequired,
835
+ "lastIndexOf": PropTypes.func.isRequired,
836
+ "length": PropTypes.number.isRequired,
837
+ "link": PropTypes.func.isRequired,
838
+ "localeCompare": PropTypes.func.isRequired,
839
+ "match": PropTypes.func.isRequired,
840
+ "matchAll": PropTypes.func.isRequired,
841
+ "normalize": PropTypes.func.isRequired,
842
+ "padEnd": PropTypes.func.isRequired,
843
+ "padStart": PropTypes.func.isRequired,
844
+ "repeat": PropTypes.func.isRequired,
845
+ "replace": PropTypes.func.isRequired,
846
+ "search": PropTypes.func.isRequired,
847
+ "slice": PropTypes.func.isRequired,
848
+ "small": PropTypes.func.isRequired,
849
+ "split": PropTypes.func.isRequired,
850
+ "startsWith": PropTypes.func.isRequired,
851
+ "strike": PropTypes.func.isRequired,
852
+ "sub": PropTypes.func.isRequired,
853
+ "substr": PropTypes.func.isRequired,
854
+ "substring": PropTypes.func.isRequired,
855
+ "sup": PropTypes.func.isRequired,
856
+ "toLocaleLowerCase": PropTypes.func.isRequired,
857
+ "toLocaleUpperCase": PropTypes.func.isRequired,
858
+ "toLowerCase": PropTypes.func.isRequired,
859
+ "toString": PropTypes.func.isRequired,
860
+ "toUpperCase": PropTypes.func.isRequired,
861
+ "trim": PropTypes.func.isRequired,
862
+ "trimEnd": PropTypes.func.isRequired,
863
+ "trimLeft": PropTypes.func.isRequired,
864
+ "trimRight": PropTypes.func.isRequired,
865
+ "trimStart": PropTypes.func.isRequired,
866
+ "valueOf": PropTypes.func.isRequired
867
+ })])), PropTypes.object, PropTypes.shape({
868
+ "__@iterator": PropTypes.func.isRequired,
869
+ "anchor": PropTypes.func.isRequired,
870
+ "big": PropTypes.func.isRequired,
871
+ "blink": PropTypes.func.isRequired,
872
+ "bold": PropTypes.func.isRequired,
873
+ "charAt": PropTypes.func.isRequired,
874
+ "charCodeAt": PropTypes.func.isRequired,
875
+ "codePointAt": PropTypes.func.isRequired,
876
+ "concat": PropTypes.func.isRequired,
877
+ "endsWith": PropTypes.func.isRequired,
878
+ "fixed": PropTypes.func.isRequired,
879
+ "fontcolor": PropTypes.func.isRequired,
880
+ "fontsize": PropTypes.func.isRequired,
881
+ "includes": PropTypes.func.isRequired,
882
+ "indexOf": PropTypes.func.isRequired,
883
+ "italics": PropTypes.func.isRequired,
884
+ "lastIndexOf": PropTypes.func.isRequired,
885
+ "length": PropTypes.number.isRequired,
886
+ "link": PropTypes.func.isRequired,
887
+ "localeCompare": PropTypes.func.isRequired,
888
+ "match": PropTypes.func.isRequired,
889
+ "matchAll": PropTypes.func.isRequired,
890
+ "normalize": PropTypes.func.isRequired,
891
+ "padEnd": PropTypes.func.isRequired,
892
+ "padStart": PropTypes.func.isRequired,
893
+ "repeat": PropTypes.func.isRequired,
894
+ "replace": PropTypes.func.isRequired,
895
+ "search": PropTypes.func.isRequired,
896
+ "slice": PropTypes.func.isRequired,
897
+ "small": PropTypes.func.isRequired,
898
+ "split": PropTypes.func.isRequired,
899
+ "startsWith": PropTypes.func.isRequired,
900
+ "strike": PropTypes.func.isRequired,
901
+ "sub": PropTypes.func.isRequired,
902
+ "substr": PropTypes.func.isRequired,
903
+ "substring": PropTypes.func.isRequired,
904
+ "sup": PropTypes.func.isRequired,
905
+ "toLocaleLowerCase": PropTypes.func.isRequired,
906
+ "toLocaleUpperCase": PropTypes.func.isRequired,
907
+ "toLowerCase": PropTypes.func.isRequired,
908
+ "toString": PropTypes.func.isRequired,
909
+ "toUpperCase": PropTypes.func.isRequired,
910
+ "trim": PropTypes.func.isRequired,
911
+ "trimEnd": PropTypes.func.isRequired,
912
+ "trimLeft": PropTypes.func.isRequired,
913
+ "trimRight": PropTypes.func.isRequired,
914
+ "trimStart": PropTypes.func.isRequired,
915
+ "valueOf": PropTypes.func.isRequired
916
+ })]),
917
+ "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
+ "__@iterator": PropTypes.func.isRequired,
919
+ "anchor": PropTypes.func.isRequired,
920
+ "big": PropTypes.func.isRequired,
921
+ "blink": PropTypes.func.isRequired,
922
+ "bold": PropTypes.func.isRequired,
923
+ "charAt": PropTypes.func.isRequired,
924
+ "charCodeAt": PropTypes.func.isRequired,
925
+ "codePointAt": PropTypes.func.isRequired,
926
+ "concat": PropTypes.func.isRequired,
927
+ "endsWith": PropTypes.func.isRequired,
928
+ "fixed": PropTypes.func.isRequired,
929
+ "fontcolor": PropTypes.func.isRequired,
930
+ "fontsize": PropTypes.func.isRequired,
931
+ "includes": PropTypes.func.isRequired,
932
+ "indexOf": PropTypes.func.isRequired,
933
+ "italics": PropTypes.func.isRequired,
934
+ "lastIndexOf": PropTypes.func.isRequired,
935
+ "length": PropTypes.number.isRequired,
936
+ "link": PropTypes.func.isRequired,
937
+ "localeCompare": PropTypes.func.isRequired,
938
+ "match": PropTypes.func.isRequired,
939
+ "matchAll": PropTypes.func.isRequired,
940
+ "normalize": PropTypes.func.isRequired,
941
+ "padEnd": PropTypes.func.isRequired,
942
+ "padStart": PropTypes.func.isRequired,
943
+ "repeat": PropTypes.func.isRequired,
944
+ "replace": PropTypes.func.isRequired,
945
+ "search": PropTypes.func.isRequired,
946
+ "slice": PropTypes.func.isRequired,
947
+ "small": PropTypes.func.isRequired,
948
+ "split": PropTypes.func.isRequired,
949
+ "startsWith": PropTypes.func.isRequired,
950
+ "strike": PropTypes.func.isRequired,
951
+ "sub": PropTypes.func.isRequired,
952
+ "substr": PropTypes.func.isRequired,
953
+ "substring": PropTypes.func.isRequired,
954
+ "sup": PropTypes.func.isRequired,
955
+ "toLocaleLowerCase": PropTypes.func.isRequired,
956
+ "toLocaleUpperCase": PropTypes.func.isRequired,
957
+ "toLowerCase": PropTypes.func.isRequired,
958
+ "toString": PropTypes.func.isRequired,
959
+ "toUpperCase": PropTypes.func.isRequired,
960
+ "trim": PropTypes.func.isRequired,
961
+ "trimEnd": PropTypes.func.isRequired,
962
+ "trimLeft": PropTypes.func.isRequired,
963
+ "trimRight": PropTypes.func.isRequired,
964
+ "trimStart": PropTypes.func.isRequired,
965
+ "valueOf": PropTypes.func.isRequired
966
+ })])), PropTypes.object, PropTypes.shape({
967
+ "__@iterator": PropTypes.func.isRequired,
968
+ "anchor": PropTypes.func.isRequired,
969
+ "big": PropTypes.func.isRequired,
970
+ "blink": PropTypes.func.isRequired,
971
+ "bold": PropTypes.func.isRequired,
972
+ "charAt": PropTypes.func.isRequired,
973
+ "charCodeAt": PropTypes.func.isRequired,
974
+ "codePointAt": PropTypes.func.isRequired,
975
+ "concat": PropTypes.func.isRequired,
976
+ "endsWith": PropTypes.func.isRequired,
977
+ "fixed": PropTypes.func.isRequired,
978
+ "fontcolor": PropTypes.func.isRequired,
979
+ "fontsize": PropTypes.func.isRequired,
980
+ "includes": PropTypes.func.isRequired,
981
+ "indexOf": PropTypes.func.isRequired,
982
+ "italics": PropTypes.func.isRequired,
983
+ "lastIndexOf": PropTypes.func.isRequired,
984
+ "length": PropTypes.number.isRequired,
985
+ "link": PropTypes.func.isRequired,
986
+ "localeCompare": PropTypes.func.isRequired,
987
+ "match": PropTypes.func.isRequired,
988
+ "matchAll": PropTypes.func.isRequired,
989
+ "normalize": PropTypes.func.isRequired,
990
+ "padEnd": PropTypes.func.isRequired,
991
+ "padStart": PropTypes.func.isRequired,
992
+ "repeat": PropTypes.func.isRequired,
993
+ "replace": PropTypes.func.isRequired,
994
+ "search": PropTypes.func.isRequired,
995
+ "slice": PropTypes.func.isRequired,
996
+ "small": PropTypes.func.isRequired,
997
+ "split": PropTypes.func.isRequired,
998
+ "startsWith": PropTypes.func.isRequired,
999
+ "strike": PropTypes.func.isRequired,
1000
+ "sub": PropTypes.func.isRequired,
1001
+ "substr": PropTypes.func.isRequired,
1002
+ "substring": PropTypes.func.isRequired,
1003
+ "sup": PropTypes.func.isRequired,
1004
+ "toLocaleLowerCase": PropTypes.func.isRequired,
1005
+ "toLocaleUpperCase": PropTypes.func.isRequired,
1006
+ "toLowerCase": PropTypes.func.isRequired,
1007
+ "toString": PropTypes.func.isRequired,
1008
+ "toUpperCase": PropTypes.func.isRequired,
1009
+ "trim": PropTypes.func.isRequired,
1010
+ "trimEnd": PropTypes.func.isRequired,
1011
+ "trimLeft": PropTypes.func.isRequired,
1012
+ "trimRight": PropTypes.func.isRequired,
1013
+ "trimStart": PropTypes.func.isRequired,
1014
+ "valueOf": PropTypes.func.isRequired
1015
+ })]),
1016
+ "justifySelf": PropTypes.string,
1017
+ "maxWidth": PropTypes.string,
1018
+ "p": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1019
+ "__@toStringTag": PropTypes.string.isRequired,
1020
+ "description": PropTypes.string,
1021
+ "toString": PropTypes.func.isRequired,
1022
+ "valueOf": PropTypes.func.isRequired
1023
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1024
+ "__@toStringTag": PropTypes.string.isRequired,
1025
+ "description": PropTypes.string,
1026
+ "toString": PropTypes.func.isRequired,
1027
+ "valueOf": PropTypes.func.isRequired
1028
+ }), PropTypes.string]),
1029
+ "padding": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1030
+ "__@toStringTag": PropTypes.string.isRequired,
1031
+ "description": PropTypes.string,
1032
+ "toString": PropTypes.func.isRequired,
1033
+ "valueOf": PropTypes.func.isRequired
1034
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1035
+ "__@toStringTag": PropTypes.string.isRequired,
1036
+ "description": PropTypes.string,
1037
+ "toString": PropTypes.func.isRequired,
1038
+ "valueOf": PropTypes.func.isRequired
1039
+ }), PropTypes.string]),
1040
+ "paddingBottom": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1041
+ "__@toStringTag": PropTypes.string.isRequired,
1042
+ "description": PropTypes.string,
1043
+ "toString": PropTypes.func.isRequired,
1044
+ "valueOf": PropTypes.func.isRequired
1045
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1046
+ "__@toStringTag": PropTypes.string.isRequired,
1047
+ "description": PropTypes.string,
1048
+ "toString": PropTypes.func.isRequired,
1049
+ "valueOf": PropTypes.func.isRequired
1050
+ }), PropTypes.string]),
1051
+ "paddingLeft": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1052
+ "__@toStringTag": PropTypes.string.isRequired,
1053
+ "description": PropTypes.string,
1054
+ "toString": PropTypes.func.isRequired,
1055
+ "valueOf": PropTypes.func.isRequired
1056
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1057
+ "__@toStringTag": PropTypes.string.isRequired,
1058
+ "description": PropTypes.string,
1059
+ "toString": PropTypes.func.isRequired,
1060
+ "valueOf": PropTypes.func.isRequired
1061
+ }), PropTypes.string]),
1062
+ "paddingRight": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1063
+ "__@toStringTag": PropTypes.string.isRequired,
1064
+ "description": PropTypes.string,
1065
+ "toString": PropTypes.func.isRequired,
1066
+ "valueOf": PropTypes.func.isRequired
1067
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1068
+ "__@toStringTag": PropTypes.string.isRequired,
1069
+ "description": PropTypes.string,
1070
+ "toString": PropTypes.func.isRequired,
1071
+ "valueOf": PropTypes.func.isRequired
1072
+ }), PropTypes.string]),
1073
+ "paddingTop": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1074
+ "__@toStringTag": PropTypes.string.isRequired,
1075
+ "description": PropTypes.string,
1076
+ "toString": PropTypes.func.isRequired,
1077
+ "valueOf": PropTypes.func.isRequired
1078
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1079
+ "__@toStringTag": PropTypes.string.isRequired,
1080
+ "description": PropTypes.string,
1081
+ "toString": PropTypes.func.isRequired,
1082
+ "valueOf": PropTypes.func.isRequired
1083
+ }), PropTypes.string]),
1084
+ "paddingX": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1085
+ "__@toStringTag": PropTypes.string.isRequired,
1086
+ "description": PropTypes.string,
1087
+ "toString": PropTypes.func.isRequired,
1088
+ "valueOf": PropTypes.func.isRequired
1089
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1090
+ "__@toStringTag": PropTypes.string.isRequired,
1091
+ "description": PropTypes.string,
1092
+ "toString": PropTypes.func.isRequired,
1093
+ "valueOf": PropTypes.func.isRequired
1094
+ }), PropTypes.string]),
1095
+ "paddingY": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1096
+ "__@toStringTag": PropTypes.string.isRequired,
1097
+ "description": PropTypes.string,
1098
+ "toString": PropTypes.func.isRequired,
1099
+ "valueOf": PropTypes.func.isRequired
1100
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1101
+ "__@toStringTag": PropTypes.string.isRequired,
1102
+ "description": PropTypes.string,
1103
+ "toString": PropTypes.func.isRequired,
1104
+ "valueOf": PropTypes.func.isRequired
1105
+ }), PropTypes.string]),
1106
+ "pb": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1107
+ "__@toStringTag": PropTypes.string.isRequired,
1108
+ "description": PropTypes.string,
1109
+ "toString": PropTypes.func.isRequired,
1110
+ "valueOf": PropTypes.func.isRequired
1111
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1112
+ "__@toStringTag": PropTypes.string.isRequired,
1113
+ "description": PropTypes.string,
1114
+ "toString": PropTypes.func.isRequired,
1115
+ "valueOf": PropTypes.func.isRequired
1116
+ }), PropTypes.string]),
1117
+ "pl": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1118
+ "__@toStringTag": PropTypes.string.isRequired,
1119
+ "description": PropTypes.string,
1120
+ "toString": PropTypes.func.isRequired,
1121
+ "valueOf": PropTypes.func.isRequired
1122
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1123
+ "__@toStringTag": PropTypes.string.isRequired,
1124
+ "description": PropTypes.string,
1125
+ "toString": PropTypes.func.isRequired,
1126
+ "valueOf": PropTypes.func.isRequired
1127
+ }), PropTypes.string]),
1128
+ "pr": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1129
+ "__@toStringTag": PropTypes.string.isRequired,
1130
+ "description": PropTypes.string,
1131
+ "toString": PropTypes.func.isRequired,
1132
+ "valueOf": PropTypes.func.isRequired
1133
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1134
+ "__@toStringTag": PropTypes.string.isRequired,
1135
+ "description": PropTypes.string,
1136
+ "toString": PropTypes.func.isRequired,
1137
+ "valueOf": PropTypes.func.isRequired
1138
+ }), PropTypes.string]),
1139
+ "pt": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1140
+ "__@toStringTag": PropTypes.string.isRequired,
1141
+ "description": PropTypes.string,
1142
+ "toString": PropTypes.func.isRequired,
1143
+ "valueOf": PropTypes.func.isRequired
1144
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1145
+ "__@toStringTag": PropTypes.string.isRequired,
1146
+ "description": PropTypes.string,
1147
+ "toString": PropTypes.func.isRequired,
1148
+ "valueOf": PropTypes.func.isRequired
1149
+ }), PropTypes.string]),
1150
+ "px": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1151
+ "__@toStringTag": PropTypes.string.isRequired,
1152
+ "description": PropTypes.string,
1153
+ "toString": PropTypes.func.isRequired,
1154
+ "valueOf": PropTypes.func.isRequired
1155
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1156
+ "__@toStringTag": PropTypes.string.isRequired,
1157
+ "description": PropTypes.string,
1158
+ "toString": PropTypes.func.isRequired,
1159
+ "valueOf": PropTypes.func.isRequired
1160
+ }), PropTypes.string]),
1161
+ "py": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
1162
+ "__@toStringTag": PropTypes.string.isRequired,
1163
+ "description": PropTypes.string,
1164
+ "toString": PropTypes.func.isRequired,
1165
+ "valueOf": PropTypes.func.isRequired
1166
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
1167
+ "__@toStringTag": PropTypes.string.isRequired,
1168
+ "description": PropTypes.string,
1169
+ "toString": PropTypes.func.isRequired,
1170
+ "valueOf": PropTypes.func.isRequired
1171
+ }), PropTypes.string])
1172
+ })),
1173
+ "results": PropTypes.number,
1174
+ "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
+ "__@iterator": PropTypes.func.isRequired,
1176
+ "anchor": PropTypes.func.isRequired,
1177
+ "big": PropTypes.func.isRequired,
1178
+ "blink": PropTypes.func.isRequired,
1179
+ "bold": PropTypes.func.isRequired,
1180
+ "charAt": PropTypes.func.isRequired,
1181
+ "charCodeAt": PropTypes.func.isRequired,
1182
+ "codePointAt": PropTypes.func.isRequired,
1183
+ "concat": PropTypes.func.isRequired,
1184
+ "endsWith": PropTypes.func.isRequired,
1185
+ "fixed": PropTypes.func.isRequired,
1186
+ "fontcolor": PropTypes.func.isRequired,
1187
+ "fontsize": PropTypes.func.isRequired,
1188
+ "includes": PropTypes.func.isRequired,
1189
+ "indexOf": PropTypes.func.isRequired,
1190
+ "italics": PropTypes.func.isRequired,
1191
+ "lastIndexOf": PropTypes.func.isRequired,
1192
+ "length": PropTypes.number.isRequired,
1193
+ "link": PropTypes.func.isRequired,
1194
+ "localeCompare": PropTypes.func.isRequired,
1195
+ "match": PropTypes.func.isRequired,
1196
+ "matchAll": PropTypes.func.isRequired,
1197
+ "normalize": PropTypes.func.isRequired,
1198
+ "padEnd": PropTypes.func.isRequired,
1199
+ "padStart": PropTypes.func.isRequired,
1200
+ "repeat": PropTypes.func.isRequired,
1201
+ "replace": PropTypes.func.isRequired,
1202
+ "search": PropTypes.func.isRequired,
1203
+ "slice": PropTypes.func.isRequired,
1204
+ "small": PropTypes.func.isRequired,
1205
+ "split": PropTypes.func.isRequired,
1206
+ "startsWith": PropTypes.func.isRequired,
1207
+ "strike": PropTypes.func.isRequired,
1208
+ "sub": PropTypes.func.isRequired,
1209
+ "substr": PropTypes.func.isRequired,
1210
+ "substring": PropTypes.func.isRequired,
1211
+ "sup": PropTypes.func.isRequired,
1212
+ "toLocaleLowerCase": PropTypes.func.isRequired,
1213
+ "toLocaleUpperCase": PropTypes.func.isRequired,
1214
+ "toLowerCase": PropTypes.func.isRequired,
1215
+ "toString": PropTypes.func.isRequired,
1216
+ "toUpperCase": PropTypes.func.isRequired,
1217
+ "trim": PropTypes.func.isRequired,
1218
+ "trimEnd": PropTypes.func.isRequired,
1219
+ "trimLeft": PropTypes.func.isRequired,
1220
+ "trimRight": PropTypes.func.isRequired,
1221
+ "trimStart": PropTypes.func.isRequired,
1222
+ "valueOf": PropTypes.func.isRequired
1223
+ })]),
1224
+ "security": PropTypes.string,
1225
+ "slot": PropTypes.string,
1226
+ "spellCheck": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
1227
+ "style": PropTypes.object,
1228
+ "suppressContentEditableWarning": PropTypes.bool,
1229
+ "suppressHydrationWarning": PropTypes.bool,
1230
+ "tabIndex": PropTypes.number,
1231
+ "title": PropTypes.string,
1232
+ "translate": PropTypes.oneOf(["no", "yes"]),
1233
+ "typeof": PropTypes.string,
1234
+ "unselectable": PropTypes.oneOf(["off", "on"]),
1235
+ "vocab": PropTypes.string
61
1236
  };
1237
+ export { GridItem };
62
1238
  GridItem.displayName = "GridItem";
63
1239
  export default GridItem;