carbon-react 118.0.0 → 118.1.1

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 (169) hide show
  1. package/esm/__internal__/filter-object-properties/filter-object-properties.d.ts +1 -1
  2. package/esm/components/button-minor/button-minor.style.js +8 -0
  3. package/esm/components/pager/pager.component.js +5 -5
  4. package/esm/components/pill/pill.component.d.ts +3 -1
  5. package/esm/components/pill/pill.component.js +1 -0
  6. package/esm/components/select/__internal__/select-list-context.d.ts +7 -0
  7. package/esm/components/select/__internal__/select-text/index.d.ts +2 -0
  8. package/esm/components/select/__internal__/select-text/index.js +1 -0
  9. package/esm/components/select/__internal__/select-text/select-text.component.d.ts +33 -0
  10. package/esm/components/select/__internal__/select-text/select-text.component.js +16 -36
  11. package/esm/components/select/__internal__/select-text/select-text.style.d.ts +6 -1
  12. package/esm/components/select/filterable-select/filterable-select.component.d.ts +65 -0
  13. package/esm/components/select/filterable-select/filterable-select.component.js +568 -102
  14. package/esm/components/select/filterable-select/index.d.ts +2 -1
  15. package/esm/components/select/filterable-select/index.js +1 -0
  16. package/esm/components/select/index.d.ts +6 -0
  17. package/esm/components/select/index.js +6 -6
  18. package/esm/components/select/list-action-button/index.d.ts +2 -0
  19. package/esm/components/select/list-action-button/index.js +1 -0
  20. package/esm/components/select/list-action-button/list-action-button.component.d.ts +7 -0
  21. package/esm/components/select/list-action-button/list-action-button.component.js +9 -6
  22. package/esm/components/select/list-action-button/list-action-button.style.d.ts +2 -0
  23. package/esm/components/select/multi-select/index.d.ts +2 -1
  24. package/esm/components/select/multi-select/index.js +1 -0
  25. package/esm/components/select/multi-select/multi-select.component.d.ts +62 -0
  26. package/esm/components/select/multi-select/multi-select.component.js +575 -104
  27. package/esm/components/select/multi-select/multi-select.style.d.ts +4 -0
  28. package/esm/components/select/multi-select/multi-select.style.js +1 -0
  29. package/esm/components/select/option/index.d.ts +2 -25
  30. package/esm/components/select/option/index.js +1 -0
  31. package/esm/components/select/option/option.component.d.ts +34 -0
  32. package/esm/components/select/option/option.component.js +399 -62
  33. package/esm/components/select/option/option.style.d.ts +6 -0
  34. package/esm/components/select/option/option.style.js +0 -5
  35. package/esm/components/select/option-group-header/index.d.ts +2 -10
  36. package/esm/components/select/option-group-header/index.js +1 -0
  37. package/esm/components/select/option-group-header/option-group-header.component.d.ts +16 -0
  38. package/esm/components/select/option-group-header/option-group-header.component.js +4 -15
  39. package/esm/components/select/option-group-header/option-group-header.style.d.ts +2 -0
  40. package/esm/components/select/option-row/index.d.ts +2 -16
  41. package/esm/components/select/option-row/index.js +1 -0
  42. package/esm/components/select/option-row/option-row.component.d.ts +42 -0
  43. package/esm/components/select/option-row/option-row.component.js +10 -40
  44. package/esm/components/select/option-row/option-row.style.d.ts +6 -0
  45. package/esm/components/select/select-list/index.d.ts +2 -0
  46. package/esm/components/select/select-list/index.js +1 -0
  47. package/esm/components/select/select-list/select-list-container.style.d.ts +6 -0
  48. package/esm/components/select/select-list/select-list.component.d.ts +64 -0
  49. package/esm/components/select/select-list/select-list.component.js +69 -100
  50. package/esm/components/select/select-list/select-list.style.d.ts +12 -0
  51. package/esm/components/select/select-list/select-list.style.js +2 -2
  52. package/esm/components/select/select-textbox/index.d.ts +2 -1
  53. package/esm/components/select/select-textbox/index.js +1 -0
  54. package/esm/components/select/select-textbox/select-textbox.component.d.ts +81 -0
  55. package/esm/components/select/select-textbox/select-textbox.component.js +567 -142
  56. package/esm/components/select/select.style.d.ts +8 -0
  57. package/esm/components/select/simple-select/index.d.ts +2 -1
  58. package/esm/components/select/simple-select/index.js +1 -0
  59. package/esm/components/select/simple-select/simple-select.component.d.ts +58 -0
  60. package/esm/components/select/simple-select/simple-select.component.js +578 -111
  61. package/esm/components/select/utils/get-next-child-by-text.d.ts +5 -0
  62. package/esm/components/select/utils/get-next-child-by-text.js +20 -17
  63. package/esm/components/select/utils/get-next-index-by-key.d.ts +2 -0
  64. package/esm/components/select/utils/highlight-part-of-text.d.ts +2 -0
  65. package/esm/components/select/utils/highlight-part-of-text.js +10 -3
  66. package/esm/components/select/utils/is-expected-option.d.ts +2 -0
  67. package/esm/components/select/utils/is-expected-option.js +1 -1
  68. package/esm/components/select/utils/is-expected-value.d.ts +1 -0
  69. package/esm/components/select/utils/is-expected-value.js +1 -1
  70. package/esm/components/select/utils/is-navigation-key.d.ts +1 -0
  71. package/esm/components/select/utils/matching-text.style.d.ts +2 -0
  72. package/esm/components/select/utils/with-filter.hoc.d.ts +14 -0
  73. package/esm/components/select/utils/with-filter.hoc.js +59 -41
  74. package/esm/components/tabs/__internal__/tab-title/tab-title.component.js +1 -0
  75. package/lib/__internal__/filter-object-properties/filter-object-properties.d.ts +1 -1
  76. package/lib/components/button-minor/button-minor.style.js +8 -0
  77. package/lib/components/pager/pager.component.js +5 -5
  78. package/lib/components/pill/pill.component.d.ts +3 -1
  79. package/lib/components/pill/pill.component.js +1 -0
  80. package/lib/components/select/__internal__/select-list-context.d.ts +7 -0
  81. package/lib/components/select/__internal__/select-text/index.d.ts +2 -0
  82. package/lib/components/select/__internal__/select-text/index.js +15 -0
  83. package/lib/components/select/__internal__/select-text/package.json +6 -0
  84. package/lib/components/select/__internal__/select-text/select-text.component.d.ts +33 -0
  85. package/lib/components/select/__internal__/select-text/select-text.component.js +16 -36
  86. package/lib/components/select/__internal__/select-text/select-text.style.d.ts +6 -1
  87. package/lib/components/select/filterable-select/filterable-select.component.d.ts +65 -0
  88. package/lib/components/select/filterable-select/filterable-select.component.js +569 -103
  89. package/lib/components/select/filterable-select/index.d.ts +2 -1
  90. package/lib/components/select/filterable-select/index.js +15 -0
  91. package/lib/components/select/filterable-select/package.json +6 -0
  92. package/lib/components/select/index.d.ts +6 -0
  93. package/lib/components/select/index.js +6 -6
  94. package/lib/components/select/list-action-button/index.d.ts +2 -0
  95. package/lib/components/select/list-action-button/index.js +15 -0
  96. package/lib/components/select/list-action-button/list-action-button.component.d.ts +7 -0
  97. package/lib/components/select/list-action-button/list-action-button.component.js +9 -6
  98. package/lib/components/select/list-action-button/list-action-button.style.d.ts +2 -0
  99. package/lib/components/select/list-action-button/package.json +6 -0
  100. package/lib/components/select/multi-select/index.d.ts +2 -1
  101. package/lib/components/select/multi-select/index.js +15 -0
  102. package/lib/components/select/multi-select/multi-select.component.d.ts +62 -0
  103. package/lib/components/select/multi-select/multi-select.component.js +576 -105
  104. package/lib/components/select/multi-select/multi-select.style.d.ts +4 -0
  105. package/lib/components/select/multi-select/multi-select.style.js +1 -0
  106. package/lib/components/select/multi-select/package.json +6 -0
  107. package/lib/components/select/option/index.d.ts +2 -25
  108. package/lib/components/select/option/index.js +15 -0
  109. package/lib/components/select/option/option.component.d.ts +34 -0
  110. package/lib/components/select/option/option.component.js +399 -62
  111. package/lib/components/select/option/option.style.d.ts +6 -0
  112. package/lib/components/select/option/option.style.js +0 -8
  113. package/lib/components/select/option/package.json +6 -0
  114. package/lib/components/select/option-group-header/index.d.ts +2 -10
  115. package/lib/components/select/option-group-header/index.js +15 -0
  116. package/lib/components/select/option-group-header/option-group-header.component.d.ts +16 -0
  117. package/lib/components/select/option-group-header/option-group-header.component.js +4 -15
  118. package/lib/components/select/option-group-header/option-group-header.style.d.ts +2 -0
  119. package/lib/components/select/option-group-header/package.json +6 -0
  120. package/lib/components/select/option-row/index.d.ts +2 -16
  121. package/lib/components/select/option-row/index.js +15 -0
  122. package/lib/components/select/option-row/option-row.component.d.ts +42 -0
  123. package/lib/components/select/option-row/option-row.component.js +10 -40
  124. package/lib/components/select/option-row/option-row.style.d.ts +6 -0
  125. package/lib/components/select/option-row/package.json +6 -0
  126. package/lib/components/select/select-list/index.d.ts +2 -0
  127. package/lib/components/select/select-list/index.js +15 -0
  128. package/lib/components/select/select-list/package.json +6 -0
  129. package/lib/components/select/select-list/select-list-container.style.d.ts +6 -0
  130. package/lib/components/select/select-list/select-list.component.d.ts +64 -0
  131. package/lib/components/select/select-list/select-list.component.js +69 -100
  132. package/lib/components/select/select-list/select-list.style.d.ts +12 -0
  133. package/lib/components/select/select-list/select-list.style.js +2 -2
  134. package/lib/components/select/select-textbox/index.d.ts +2 -1
  135. package/lib/components/select/select-textbox/index.js +15 -0
  136. package/lib/components/select/select-textbox/package.json +6 -0
  137. package/lib/components/select/select-textbox/select-textbox.component.d.ts +81 -0
  138. package/lib/components/select/select-textbox/select-textbox.component.js +567 -142
  139. package/lib/components/select/select.style.d.ts +8 -0
  140. package/lib/components/select/simple-select/index.d.ts +2 -1
  141. package/lib/components/select/simple-select/index.js +15 -0
  142. package/lib/components/select/simple-select/package.json +6 -0
  143. package/lib/components/select/simple-select/simple-select.component.d.ts +58 -0
  144. package/lib/components/select/simple-select/simple-select.component.js +579 -113
  145. package/lib/components/select/utils/get-next-child-by-text.d.ts +5 -0
  146. package/lib/components/select/utils/get-next-child-by-text.js +20 -17
  147. package/lib/components/select/utils/get-next-index-by-key.d.ts +2 -0
  148. package/lib/components/select/utils/highlight-part-of-text.d.ts +2 -0
  149. package/lib/components/select/utils/highlight-part-of-text.js +10 -3
  150. package/lib/components/select/utils/is-expected-option.d.ts +2 -0
  151. package/lib/components/select/utils/is-expected-option.js +1 -1
  152. package/lib/components/select/utils/is-expected-value.d.ts +1 -0
  153. package/lib/components/select/utils/is-expected-value.js +1 -1
  154. package/lib/components/select/utils/is-navigation-key.d.ts +1 -0
  155. package/lib/components/select/utils/matching-text.style.d.ts +2 -0
  156. package/lib/components/select/utils/with-filter.hoc.d.ts +14 -0
  157. package/lib/components/select/utils/with-filter.hoc.js +59 -42
  158. package/lib/components/tabs/__internal__/tab-title/tab-title.component.js +1 -0
  159. package/package.json +1 -1
  160. package/esm/components/select/__internal__/select-text/select-text.d.ts +0 -36
  161. package/esm/components/select/filterable-select/filterable-select.d.ts +0 -71
  162. package/esm/components/select/multi-select/multi-select.d.ts +0 -68
  163. package/esm/components/select/select-textbox/select-textbox.d.ts +0 -72
  164. package/esm/components/select/simple-select/simple-select.d.ts +0 -64
  165. package/lib/components/select/__internal__/select-text/select-text.d.ts +0 -36
  166. package/lib/components/select/filterable-select/filterable-select.d.ts +0 -71
  167. package/lib/components/select/multi-select/multi-select.d.ts +0 -68
  168. package/lib/components/select/select-textbox/select-textbox.d.ts +0 -72
  169. package/lib/components/select/simple-select/simple-select.d.ts +0 -64
@@ -5,7 +5,7 @@ import PropTypes from "prop-types";
5
5
  import { offset, size as sizeMiddleware } from "@floating-ui/dom";
6
6
  import useFloating from "../../../hooks/__internal__/useFloating";
7
7
  import Textbox from "../../textbox";
8
- import SelectText from "../__internal__/select-text/select-text.component";
8
+ import SelectText from "../__internal__/select-text";
9
9
  import guid from "../../../__internal__/utils/helpers/guid";
10
10
  import useLocale from "../../../hooks/__internal__/useLocale";
11
11
  const floatingMiddleware = [offset(({
@@ -24,11 +24,10 @@ const floatingMiddleware = [offset(({
24
24
  })];
25
25
  const SelectTextbox = /*#__PURE__*/React.forwardRef(({
26
26
  ariaLabel,
27
- ariaLabelledBy,
27
+ ariaLabelledby,
28
28
  accessibilityLabelId,
29
29
  labelId,
30
30
  "aria-controls": ariaControls,
31
- value,
32
31
  disabled,
33
32
  isOpen,
34
33
  id,
@@ -45,13 +44,18 @@ const SelectTextbox = /*#__PURE__*/React.forwardRef(({
45
44
  hasTextCursor,
46
45
  transparent,
47
46
  activeDescendantId,
47
+ onKeyDown,
48
48
  ...restProps
49
49
  }, ref) => {
50
- const reference = useMemo(() => ({
51
- current: textboxRef === null || textboxRef === void 0 ? void 0 : textboxRef.parentElement.parentElement
52
- }), [textboxRef]);
50
+ const reference = useMemo(() => {
51
+ var _textboxRef$parentEle;
52
+
53
+ return {
54
+ current: (textboxRef === null || textboxRef === void 0 ? void 0 : (_textboxRef$parentEle = textboxRef.parentElement) === null || _textboxRef$parentEle === void 0 ? void 0 : _textboxRef$parentEle.parentElement) || null
55
+ };
56
+ }, [textboxRef]);
53
57
  const floating = useMemo(() => ({
54
- current: textboxRef === null || textboxRef === void 0 ? void 0 : textboxRef.parentElement
58
+ current: (textboxRef === null || textboxRef === void 0 ? void 0 : textboxRef.parentElement) || null
55
59
  }), [textboxRef]);
56
60
  useFloating({
57
61
  isOpen,
@@ -69,7 +73,7 @@ const SelectTextbox = /*#__PURE__*/React.forwardRef(({
69
73
  return;
70
74
  }
71
75
 
72
- onClick(event);
76
+ onClick === null || onClick === void 0 ? void 0 : onClick(event);
73
77
  }
74
78
 
75
79
  function handleTextboxFocus(event) {
@@ -88,6 +92,16 @@ const SelectTextbox = /*#__PURE__*/React.forwardRef(({
88
92
  }
89
93
  }
90
94
 
95
+ function handleSelectTextKeydown(event) {
96
+ if (event.key.length === 1) {
97
+ onChange === null || onChange === void 0 ? void 0 : onChange({
98
+ target: {
99
+ value: event.key
100
+ }
101
+ });
102
+ }
103
+ }
104
+
91
105
  function getTextboxProps() {
92
106
  return {
93
107
  disabled,
@@ -100,6 +114,7 @@ const SelectTextbox = /*#__PURE__*/React.forwardRef(({
100
114
  labelId,
101
115
  type: "text",
102
116
  ref,
117
+ onKeyDown,
103
118
  ...restProps
104
119
  };
105
120
  }
@@ -107,10 +122,10 @@ const SelectTextbox = /*#__PURE__*/React.forwardRef(({
107
122
  function getInputAriaAttributes() {
108
123
  const joinIds = (...ids) => ids.filter(item => item !== undefined).join(" ");
109
124
 
110
- const combinedAriaLabelledBy = hasTextCursor ? joinIds(ariaLabelledBy || labelId, accessibilityLabelId || textId.current) : joinIds(ariaLabelledBy || labelId, textId.current);
125
+ const combinedAriaLabelledBy = hasTextCursor ? joinIds(ariaLabelledby || labelId, accessibilityLabelId || textId.current) : joinIds(ariaLabelledby || labelId, textId.current);
111
126
  return {
112
127
  "aria-expanded": readOnly ? undefined : isOpen,
113
- "aria-labelledby": ariaLabel && !ariaLabelledBy ? undefined : combinedAriaLabelledBy,
128
+ "aria-labelledby": ariaLabel && !ariaLabelledby ? undefined : combinedAriaLabelledBy,
114
129
  "aria-activedescendant": activeDescendantId,
115
130
  "aria-controls": ariaControls,
116
131
  "aria-autocomplete": hasTextCursor ? "both" : undefined,
@@ -122,7 +137,7 @@ const SelectTextbox = /*#__PURE__*/React.forwardRef(({
122
137
  return /*#__PURE__*/React.createElement(SelectText, _extends({
123
138
  textId: textId.current,
124
139
  transparent: transparent,
125
- onKeyDown: handleSelectTextKeydown,
140
+ onKeyDown: onKeyDown || handleSelectTextKeydown,
126
141
  placeholder: placeholder || l.select.placeholder(),
127
142
  onClick: handleTextboxClick,
128
143
  disabled: disabled,
@@ -131,16 +146,7 @@ const SelectTextbox = /*#__PURE__*/React.forwardRef(({
131
146
  }, restProps));
132
147
  }
133
148
 
134
- function handleSelectTextKeydown(event) {
135
- if (event.key.length === 1) {
136
- onChange({
137
- target: {
138
- value: event.key
139
- }
140
- });
141
- }
142
- }
143
-
149
+ const hasStringValue = typeof selectedValue === "string" || Array.isArray(selectedValue) && typeof selectedValue[0] === "string";
144
150
  return /*#__PURE__*/React.createElement(Textbox, _extends({
145
151
  "aria-label": ariaLabel,
146
152
  "data-element": "select-input",
@@ -148,133 +154,552 @@ const SelectTextbox = /*#__PURE__*/React.forwardRef(({
148
154
  autoComplete: "off",
149
155
  size: size,
150
156
  onChange: onChange,
151
- value: selectedValue,
157
+ value: hasStringValue ? selectedValue : undefined,
152
158
  placeholder: hasTextCursor ? placeholder || l.select.placeholder() : undefined
153
159
  }, getInputAriaAttributes(), getTextboxProps(), {
154
160
  my: 0 // prevents any form spacing being applied
155
161
 
156
162
  }), !hasTextCursor && renderSelectText());
157
163
  });
158
- const formInputPropTypes = {
159
- /**
160
- * Id of the element containing the currently displayed value
161
- * to be read by voice readers
162
- * @private
163
- * @ignore
164
- */
165
- accessibilityLabelId: PropTypes.string,
166
-
167
- /** Prop to specify the aria-label attribute of the component input */
168
- ariaLabel: PropTypes.string,
169
-
170
- /** Prop to specify the aria-labeledby property of the component input */
171
- ariaLabelledBy: PropTypes.string,
172
-
173
- /** Id attribute of the input element */
174
- id: PropTypes.string,
175
-
176
- /** Name attribute of the input element */
177
- name: PropTypes.string,
178
-
179
- /** If true the Component will be read-only */
180
- readOnly: PropTypes.bool,
181
-
182
- /** If true the Component will be disabled */
183
- disabled: PropTypes.bool,
184
-
185
- /** If true the Component will be focused when rendered */
186
- autoFocus: PropTypes.bool,
187
-
188
- /**
189
- * Label id passed from Select component
190
- * @private
191
- * @ignore
192
- *
193
- */
194
- labelId: PropTypes.string,
195
-
196
- /** Label */
197
- label: PropTypes.string,
198
-
199
- /** Text applied to label help tooltip */
200
- labelHelp: PropTypes.node,
201
-
202
- /** When true, label is placed in line with an input */
203
- labelInline: PropTypes.bool,
204
-
205
- /** Width of a label in percentage. Works only when labelInline is true */
206
- labelWidth: PropTypes.number,
207
-
208
- /** Width of an input in percentage. Works only when labelInline is true */
209
- inputWidth: PropTypes.number,
210
-
211
- /**
212
- * Prop for specifying the max-width of the input.
213
- * Leaving the `maxWidth` prop with no value will default the width to '100%'
214
- */
215
- maxWidth: PropTypes.string,
216
-
217
- /**
218
- * @ignore
219
- * @private
220
- * If true, the select is open
221
- */
222
- isOpen: PropTypes.bool,
223
-
224
- /** Size of an input */
225
- size: PropTypes.oneOf(["small", "medium", "large"]),
226
-
227
- /** Placeholder string to be displayed in input */
228
- placeholder: PropTypes.string,
229
-
230
- /** A custom callback for when changes occur */
231
- onChange: PropTypes.func,
232
-
233
- /** Callback function for when the Select Textbox is clicked. */
234
- onClick: PropTypes.func,
235
-
236
- /** Callback function for when the Select Textbox is focused. */
237
- onFocus: PropTypes.func,
238
-
239
- /** Callback function for when the Select Textbox loses it's focus. */
240
- onBlur: PropTypes.func,
241
-
242
- /** Callback function for when the key is pressed when focused on Select Textbox. */
243
- onKeyDown: PropTypes.func,
244
-
245
- /** Breakpoint for adaptive label (inline labels change to top aligned). Enables the adaptive behaviour when set */
246
- adaptiveLabelBreakpoint: PropTypes.number,
247
-
248
- /** Flag to configure component as mandatory */
249
- required: PropTypes.bool
250
- };
251
- SelectTextbox.propTypes = { ...formInputPropTypes,
252
-
253
- /**
254
- * @ignore
255
- * @private
256
- * Id attribute of the select list
257
- */
164
+ SelectTextbox.propTypes = {
165
+ "about": PropTypes.string,
166
+ "accept": PropTypes.string,
167
+ "accessibilityLabelId": PropTypes.string,
168
+ "accessKey": PropTypes.string,
169
+ "activeDescendantId": PropTypes.string,
170
+ "adaptiveLabelBreakpoint": PropTypes.number,
171
+ "align": PropTypes.oneOf(["left", "right"]),
172
+ "alt": PropTypes.string,
173
+ "aria-activedescendant": PropTypes.string,
174
+ "aria-atomic": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
175
+ "aria-autocomplete": PropTypes.oneOf(["both", "inline", "list", "none"]),
176
+ "aria-busy": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
177
+ "aria-checked": PropTypes.oneOfType([PropTypes.oneOf(["false", "mixed", "true"]), PropTypes.bool]),
178
+ "aria-colcount": PropTypes.number,
179
+ "aria-colindex": PropTypes.number,
180
+ "aria-colspan": PropTypes.number,
258
181
  "aria-controls": PropTypes.string,
259
-
260
- /**
261
- * @private
262
- * @ignore
263
- * Value to be displayed in the Textbox */
264
- formattedValue: PropTypes.string,
265
-
266
- /**
267
- * @private
268
- * @ignore
269
- * If true, the input will be displayed */
270
- hasTextCursor: PropTypes.bool,
271
-
272
- /**
273
- * @private
274
- * @ignore
275
- * Value of the Select Input */
276
- selectedValue: PropTypes.oneOfType([PropTypes.string, PropTypes.object, PropTypes.arrayOf(PropTypes.string), PropTypes.arrayOf(PropTypes.object)])
182
+ "aria-current": PropTypes.oneOfType([PropTypes.oneOf(["date", "false", "location", "page", "step", "time", "true"]), PropTypes.bool]),
183
+ "aria-describedby": PropTypes.string,
184
+ "aria-details": PropTypes.string,
185
+ "aria-disabled": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
186
+ "aria-dropeffect": PropTypes.oneOf(["copy", "execute", "link", "move", "none", "popup"]),
187
+ "aria-errormessage": PropTypes.string,
188
+ "aria-expanded": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
189
+ "aria-flowto": PropTypes.string,
190
+ "aria-grabbed": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
191
+ "aria-haspopup": PropTypes.oneOfType([PropTypes.oneOf(["dialog", "false", "grid", "listbox", "menu", "tree", "true"]), PropTypes.bool]),
192
+ "aria-hidden": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
193
+ "aria-invalid": PropTypes.oneOfType([PropTypes.oneOf(["false", "grammar", "spelling", "true"]), PropTypes.bool]),
194
+ "aria-keyshortcuts": PropTypes.string,
195
+ "aria-label": PropTypes.string,
196
+ "aria-labelledby": PropTypes.string,
197
+ "aria-level": PropTypes.number,
198
+ "aria-live": PropTypes.oneOf(["assertive", "off", "polite"]),
199
+ "aria-modal": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
200
+ "aria-multiline": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
201
+ "aria-multiselectable": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
202
+ "aria-orientation": PropTypes.oneOf(["horizontal", "vertical"]),
203
+ "aria-owns": PropTypes.string,
204
+ "aria-placeholder": PropTypes.string,
205
+ "aria-posinset": PropTypes.number,
206
+ "aria-pressed": PropTypes.oneOfType([PropTypes.oneOf(["false", "mixed", "true"]), PropTypes.bool]),
207
+ "aria-readonly": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
208
+ "aria-relevant": PropTypes.oneOf(["additions removals", "additions text", "additions", "all", "removals additions", "removals text", "removals", "text additions", "text removals", "text"]),
209
+ "aria-required": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
210
+ "aria-roledescription": PropTypes.string,
211
+ "aria-rowcount": PropTypes.number,
212
+ "aria-rowindex": PropTypes.number,
213
+ "aria-rowspan": PropTypes.number,
214
+ "aria-selected": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
215
+ "aria-setsize": PropTypes.number,
216
+ "aria-sort": PropTypes.oneOf(["ascending", "descending", "none", "other"]),
217
+ "aria-valuemax": PropTypes.number,
218
+ "aria-valuemin": PropTypes.number,
219
+ "aria-valuenow": PropTypes.number,
220
+ "aria-valuetext": PropTypes.string,
221
+ "ariaDescribedBy": PropTypes.string,
222
+ "ariaLabel": PropTypes.string,
223
+ "ariaLabelledby": PropTypes.string,
224
+ "as": PropTypes.elementType,
225
+ "autoCapitalize": PropTypes.string,
226
+ "autoComplete": PropTypes.string,
227
+ "autoCorrect": PropTypes.string,
228
+ "autoFocus": PropTypes.bool,
229
+ "autoSave": PropTypes.string,
230
+ "capture": PropTypes.oneOfType([PropTypes.oneOf(["environment", "user"]), PropTypes.bool]),
231
+ "checked": PropTypes.bool,
232
+ "children": PropTypes.node,
233
+ "className": PropTypes.string,
234
+ "color": PropTypes.string,
235
+ "contentEditable": PropTypes.oneOfType([PropTypes.oneOf(["false", "inherit", "true"]), PropTypes.bool]),
236
+ "contextMenu": PropTypes.string,
237
+ "crossOrigin": PropTypes.string,
238
+ "css": PropTypes.oneOfType([PropTypes.func, PropTypes.number, PropTypes.object, PropTypes.shape({
239
+ "__emotion_styles": PropTypes.any.isRequired
240
+ }), PropTypes.string, PropTypes.bool]),
241
+ "dangerouslySetInnerHTML": PropTypes.shape({
242
+ "__html": PropTypes.string.isRequired
243
+ }),
244
+ "data-component": PropTypes.string,
245
+ "data-element": PropTypes.string,
246
+ "data-role": PropTypes.string,
247
+ "datatype": PropTypes.string,
248
+ "defaultChecked": PropTypes.bool,
249
+ "defaultValue": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string), PropTypes.number, PropTypes.string]),
250
+ "deferTimeout": PropTypes.number,
251
+ "dir": PropTypes.string,
252
+ "disabled": PropTypes.bool,
253
+ "draggable": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
254
+ "enterKeyHint": PropTypes.oneOf(["done", "enter", "go", "next", "previous", "search", "send"]),
255
+ "error": PropTypes.oneOfType([PropTypes.string, PropTypes.bool]),
256
+ "fieldHelp": PropTypes.node,
257
+ "form": PropTypes.string,
258
+ "formAction": PropTypes.string,
259
+ "formattedValue": PropTypes.string,
260
+ "formEncType": PropTypes.string,
261
+ "formMethod": PropTypes.string,
262
+ "formNoValidate": PropTypes.bool,
263
+ "formTarget": PropTypes.string,
264
+ "hasTextCursor": PropTypes.bool,
265
+ "height": PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
266
+ "helpAriaLabel": PropTypes.string,
267
+ "hidden": PropTypes.bool,
268
+ "iconOnClick": PropTypes.func,
269
+ "iconOnMouseDown": PropTypes.func,
270
+ "iconTabIndex": PropTypes.number,
271
+ "id": PropTypes.string,
272
+ "info": PropTypes.oneOfType([PropTypes.string, PropTypes.bool]),
273
+ "inlist": PropTypes.any,
274
+ "inputHint": PropTypes.string,
275
+ "inputIcon": PropTypes.oneOf(["add", "admin", "alert_on", "alert", "analysis", "arrow_bottom_right_circle", "arrow_down", "arrow_left_boxed", "arrow_left_right_small", "arrow_left_small", "arrow_left", "arrow_right_small", "arrow_right", "arrow_top_left_circle", "arrow_up", "arrow", "arrows_left_right", "attach", "bank_with_card", "bank", "basket_with_squares", "basket", "bed", "bin", "block_arrow_right", "blocked_square", "blocked", "bold", "box_arrow_left", "boxed_shapes", "bulk_destroy", "bullet_list_dotted", "bullet_list_numbers", "bullet_list", "business", "calendar_today", "calendar", "call", "camera", "car_lock", "car_money", "car_repair", "card_view", "caret_down", "caret_large_down", "caret_large_left", "caret_large_right", "caret_large_up", "caret_left", "caret_right", "caret_up", "cart", "cash", "chart_bar", "chart_line", "chart_pie", "chat_notes", "chat", "chevron_down_thick", "chevron_down", "chevron_left_thick", "chevron_left", "chevron_right_thick", "chevron_right", "chevron_up_thick", "chevron_up", "circle_with_dots", "circles_connection", "clock", "close", "coins", "collaborate", "computer_clock", "connect", "construction", "contacts", "copy", "create", "credit_card_slash", "credit_card", "cross_circle", "cross", "csv", "dashboard", "delete", "delivery", "disconnect", "disputed", "document_right_align", "document_tick", "document_vertical_lines", "download", "draft", "drag_vertical", "drag", "drill", "dropdown", "duplicate", "edit", "edited", "ellipsis_horizontal", "ellipsis_vertical", "email_switch", "email", "entry", "envelope_dollar", "envelope_euro", "error_square", "error", "euro", "expand", "factory", "favourite_lined", "favourite", "fax", "feedback", "file_excel", "file_generic", "file_image", "file_pdf", "file_word", "files_leaning", "filter_new", "filter", "fit_height", "fit_width", "flag", "folder", "form_refresh", "gift", "go", "graduation_hat", "graph", "grid", "hand_cash_coins", "hand_cash_note", "help", "hide", "home", "image", "in_progress", "in_transit", "individual", "info", "italic", "key", "laptop", "ledger_arrow_left", "ledger_arrow_right", "ledger", "lightbulb_off", "lightbulb_on", "link", "list_view", "location", "locked", "logout", "lookup", "marker", "message", "minus_large", "minus", "mobile", "money_bag", "none", "old_warning", "palm_tree", "pause_circle", "pause", "pdf", "people_switch", "people", "percentage_boxed", "person_info", "person_tick", "person", "petrol_pump", "phone", "piggy_bank", "plane", "play_circle", "play", "plus_large", "plus", "pound", "print", "progress", "progressed", "question_hollow", "question_mark", "question", "refresh_clock", "refresh", "remove", "sage_coin", "save", "scan", "search", "services", "settings_old", "settings", "share", "shop", "sort_down", "sort_up", "spanner", "split_container", "split", "square_dot", "squares_nine", "stacked_boxes", "stacked_squares", "submitted", "sync", "tag", "talk", "theatre_masks", "three_boxes", "tick_circle", "tick_thick", "tick", "true_tick", "u_turn_left", "u_turn_right", "undo", "unlocked", "upload", "uploaded", "video", "view", "warning"]),
276
+ "inputMode": PropTypes.oneOf(["decimal", "email", "none", "numeric", "search", "tel", "text", "url"]),
277
+ "inputRef": PropTypes.func,
278
+ "inputWidth": PropTypes.number,
279
+ "is": PropTypes.string,
280
+ "isOpen": PropTypes.bool,
281
+ "itemID": PropTypes.string,
282
+ "itemProp": PropTypes.string,
283
+ "itemRef": PropTypes.string,
284
+ "itemScope": PropTypes.bool,
285
+ "itemType": PropTypes.string,
286
+ "label": PropTypes.string,
287
+ "labelAlign": PropTypes.oneOf(["left", "right"]),
288
+ "labelHelp": PropTypes.node,
289
+ "labelId": PropTypes.string,
290
+ "labelInline": PropTypes.bool,
291
+ "labelSpacing": PropTypes.oneOf([1, 2]),
292
+ "labelWidth": PropTypes.number,
293
+ "lang": PropTypes.string,
294
+ "leftChildren": PropTypes.node,
295
+ "list": PropTypes.string,
296
+ "m": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
297
+ "__@toStringTag": PropTypes.string.isRequired,
298
+ "description": PropTypes.string,
299
+ "toString": PropTypes.func.isRequired,
300
+ "valueOf": PropTypes.func.isRequired
301
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
302
+ "__@toStringTag": PropTypes.string.isRequired,
303
+ "description": PropTypes.string,
304
+ "toString": PropTypes.func.isRequired,
305
+ "valueOf": PropTypes.func.isRequired
306
+ }), PropTypes.string]),
307
+ "margin": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
308
+ "__@toStringTag": PropTypes.string.isRequired,
309
+ "description": PropTypes.string,
310
+ "toString": PropTypes.func.isRequired,
311
+ "valueOf": PropTypes.func.isRequired
312
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
313
+ "__@toStringTag": PropTypes.string.isRequired,
314
+ "description": PropTypes.string,
315
+ "toString": PropTypes.func.isRequired,
316
+ "valueOf": PropTypes.func.isRequired
317
+ }), PropTypes.string]),
318
+ "marginBottom": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
319
+ "__@toStringTag": PropTypes.string.isRequired,
320
+ "description": PropTypes.string,
321
+ "toString": PropTypes.func.isRequired,
322
+ "valueOf": PropTypes.func.isRequired
323
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
324
+ "__@toStringTag": PropTypes.string.isRequired,
325
+ "description": PropTypes.string,
326
+ "toString": PropTypes.func.isRequired,
327
+ "valueOf": PropTypes.func.isRequired
328
+ }), PropTypes.string]),
329
+ "marginLeft": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
330
+ "__@toStringTag": PropTypes.string.isRequired,
331
+ "description": PropTypes.string,
332
+ "toString": PropTypes.func.isRequired,
333
+ "valueOf": PropTypes.func.isRequired
334
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
335
+ "__@toStringTag": PropTypes.string.isRequired,
336
+ "description": PropTypes.string,
337
+ "toString": PropTypes.func.isRequired,
338
+ "valueOf": PropTypes.func.isRequired
339
+ }), PropTypes.string]),
340
+ "marginRight": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
341
+ "__@toStringTag": PropTypes.string.isRequired,
342
+ "description": PropTypes.string,
343
+ "toString": PropTypes.func.isRequired,
344
+ "valueOf": PropTypes.func.isRequired
345
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
346
+ "__@toStringTag": PropTypes.string.isRequired,
347
+ "description": PropTypes.string,
348
+ "toString": PropTypes.func.isRequired,
349
+ "valueOf": PropTypes.func.isRequired
350
+ }), PropTypes.string]),
351
+ "marginTop": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
352
+ "__@toStringTag": PropTypes.string.isRequired,
353
+ "description": PropTypes.string,
354
+ "toString": PropTypes.func.isRequired,
355
+ "valueOf": PropTypes.func.isRequired
356
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
357
+ "__@toStringTag": PropTypes.string.isRequired,
358
+ "description": PropTypes.string,
359
+ "toString": PropTypes.func.isRequired,
360
+ "valueOf": PropTypes.func.isRequired
361
+ }), PropTypes.string]),
362
+ "marginX": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
363
+ "__@toStringTag": PropTypes.string.isRequired,
364
+ "description": PropTypes.string,
365
+ "toString": PropTypes.func.isRequired,
366
+ "valueOf": PropTypes.func.isRequired
367
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
368
+ "__@toStringTag": PropTypes.string.isRequired,
369
+ "description": PropTypes.string,
370
+ "toString": PropTypes.func.isRequired,
371
+ "valueOf": PropTypes.func.isRequired
372
+ }), PropTypes.string]),
373
+ "marginY": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
374
+ "__@toStringTag": PropTypes.string.isRequired,
375
+ "description": PropTypes.string,
376
+ "toString": PropTypes.func.isRequired,
377
+ "valueOf": PropTypes.func.isRequired
378
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
379
+ "__@toStringTag": PropTypes.string.isRequired,
380
+ "description": PropTypes.string,
381
+ "toString": PropTypes.func.isRequired,
382
+ "valueOf": PropTypes.func.isRequired
383
+ }), PropTypes.string]),
384
+ "max": PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
385
+ "maxLength": PropTypes.number,
386
+ "maxWidth": PropTypes.string,
387
+ "mb": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
388
+ "__@toStringTag": PropTypes.string.isRequired,
389
+ "description": PropTypes.string,
390
+ "toString": PropTypes.func.isRequired,
391
+ "valueOf": PropTypes.func.isRequired
392
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
393
+ "__@toStringTag": PropTypes.string.isRequired,
394
+ "description": PropTypes.string,
395
+ "toString": PropTypes.func.isRequired,
396
+ "valueOf": PropTypes.func.isRequired
397
+ }), PropTypes.string]),
398
+ "min": PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
399
+ "minLength": PropTypes.number,
400
+ "ml": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
401
+ "__@toStringTag": PropTypes.string.isRequired,
402
+ "description": PropTypes.string,
403
+ "toString": PropTypes.func.isRequired,
404
+ "valueOf": PropTypes.func.isRequired
405
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
406
+ "__@toStringTag": PropTypes.string.isRequired,
407
+ "description": PropTypes.string,
408
+ "toString": PropTypes.func.isRequired,
409
+ "valueOf": PropTypes.func.isRequired
410
+ }), PropTypes.string]),
411
+ "mr": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
412
+ "__@toStringTag": PropTypes.string.isRequired,
413
+ "description": PropTypes.string,
414
+ "toString": PropTypes.func.isRequired,
415
+ "valueOf": PropTypes.func.isRequired
416
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
417
+ "__@toStringTag": PropTypes.string.isRequired,
418
+ "description": PropTypes.string,
419
+ "toString": PropTypes.func.isRequired,
420
+ "valueOf": PropTypes.func.isRequired
421
+ }), PropTypes.string]),
422
+ "mt": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
423
+ "__@toStringTag": PropTypes.string.isRequired,
424
+ "description": PropTypes.string,
425
+ "toString": PropTypes.func.isRequired,
426
+ "valueOf": PropTypes.func.isRequired
427
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
428
+ "__@toStringTag": PropTypes.string.isRequired,
429
+ "description": PropTypes.string,
430
+ "toString": PropTypes.func.isRequired,
431
+ "valueOf": PropTypes.func.isRequired
432
+ }), PropTypes.string]),
433
+ "multiple": PropTypes.bool,
434
+ "mx": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
435
+ "__@toStringTag": PropTypes.string.isRequired,
436
+ "description": PropTypes.string,
437
+ "toString": PropTypes.func.isRequired,
438
+ "valueOf": PropTypes.func.isRequired
439
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
440
+ "__@toStringTag": PropTypes.string.isRequired,
441
+ "description": PropTypes.string,
442
+ "toString": PropTypes.func.isRequired,
443
+ "valueOf": PropTypes.func.isRequired
444
+ }), PropTypes.string]),
445
+ "my": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
446
+ "__@toStringTag": PropTypes.string.isRequired,
447
+ "description": PropTypes.string,
448
+ "toString": PropTypes.func.isRequired,
449
+ "valueOf": PropTypes.func.isRequired
450
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
451
+ "__@toStringTag": PropTypes.string.isRequired,
452
+ "description": PropTypes.string,
453
+ "toString": PropTypes.func.isRequired,
454
+ "valueOf": PropTypes.func.isRequired
455
+ }), PropTypes.string]),
456
+ "name": PropTypes.string,
457
+ "onAbort": PropTypes.func,
458
+ "onAbortCapture": PropTypes.func,
459
+ "onAnimationEnd": PropTypes.func,
460
+ "onAnimationEndCapture": PropTypes.func,
461
+ "onAnimationIteration": PropTypes.func,
462
+ "onAnimationIterationCapture": PropTypes.func,
463
+ "onAnimationStart": PropTypes.func,
464
+ "onAnimationStartCapture": PropTypes.func,
465
+ "onAuxClick": PropTypes.func,
466
+ "onAuxClickCapture": PropTypes.func,
467
+ "onBeforeInput": PropTypes.func,
468
+ "onBeforeInputCapture": PropTypes.func,
469
+ "onBlur": PropTypes.func,
470
+ "onBlurCapture": PropTypes.func,
471
+ "onCanPlay": PropTypes.func,
472
+ "onCanPlayCapture": PropTypes.func,
473
+ "onCanPlayThrough": PropTypes.func,
474
+ "onCanPlayThroughCapture": PropTypes.func,
475
+ "onChange": PropTypes.func,
476
+ "onChangeCapture": PropTypes.func,
477
+ "onChangeDeferred": PropTypes.func,
478
+ "onClick": PropTypes.func,
479
+ "onClickCapture": PropTypes.func,
480
+ "onCompositionEnd": PropTypes.func,
481
+ "onCompositionEndCapture": PropTypes.func,
482
+ "onCompositionStart": PropTypes.func,
483
+ "onCompositionStartCapture": PropTypes.func,
484
+ "onCompositionUpdate": PropTypes.func,
485
+ "onCompositionUpdateCapture": PropTypes.func,
486
+ "onContextMenu": PropTypes.func,
487
+ "onContextMenuCapture": PropTypes.func,
488
+ "onCopy": PropTypes.func,
489
+ "onCopyCapture": PropTypes.func,
490
+ "onCut": PropTypes.func,
491
+ "onCutCapture": PropTypes.func,
492
+ "onDoubleClick": PropTypes.func,
493
+ "onDoubleClickCapture": PropTypes.func,
494
+ "onDrag": PropTypes.func,
495
+ "onDragCapture": PropTypes.func,
496
+ "onDragEnd": PropTypes.func,
497
+ "onDragEndCapture": PropTypes.func,
498
+ "onDragEnter": PropTypes.func,
499
+ "onDragEnterCapture": PropTypes.func,
500
+ "onDragExit": PropTypes.func,
501
+ "onDragExitCapture": PropTypes.func,
502
+ "onDragLeave": PropTypes.func,
503
+ "onDragLeaveCapture": PropTypes.func,
504
+ "onDragOver": PropTypes.func,
505
+ "onDragOverCapture": PropTypes.func,
506
+ "onDragStart": PropTypes.func,
507
+ "onDragStartCapture": PropTypes.func,
508
+ "onDrop": PropTypes.func,
509
+ "onDropCapture": PropTypes.func,
510
+ "onDurationChange": PropTypes.func,
511
+ "onDurationChangeCapture": PropTypes.func,
512
+ "onEmptied": PropTypes.func,
513
+ "onEmptiedCapture": PropTypes.func,
514
+ "onEncrypted": PropTypes.func,
515
+ "onEncryptedCapture": PropTypes.func,
516
+ "onEnded": PropTypes.func,
517
+ "onEndedCapture": PropTypes.func,
518
+ "onError": PropTypes.func,
519
+ "onErrorCapture": PropTypes.func,
520
+ "onFocus": PropTypes.func,
521
+ "onFocusCapture": PropTypes.func,
522
+ "onGotPointerCapture": PropTypes.func,
523
+ "onGotPointerCaptureCapture": PropTypes.func,
524
+ "onInput": PropTypes.func,
525
+ "onInputCapture": PropTypes.func,
526
+ "onInvalid": PropTypes.func,
527
+ "onInvalidCapture": PropTypes.func,
528
+ "onKeyDown": PropTypes.func,
529
+ "onKeyDownCapture": PropTypes.func,
530
+ "onKeyPress": PropTypes.func,
531
+ "onKeyPressCapture": PropTypes.func,
532
+ "onKeyUp": PropTypes.func,
533
+ "onKeyUpCapture": PropTypes.func,
534
+ "onLoad": PropTypes.func,
535
+ "onLoadCapture": PropTypes.func,
536
+ "onLoadedData": PropTypes.func,
537
+ "onLoadedDataCapture": PropTypes.func,
538
+ "onLoadedMetadata": PropTypes.func,
539
+ "onLoadedMetadataCapture": PropTypes.func,
540
+ "onLoadStart": PropTypes.func,
541
+ "onLoadStartCapture": PropTypes.func,
542
+ "onLostPointerCapture": PropTypes.func,
543
+ "onLostPointerCaptureCapture": PropTypes.func,
544
+ "onMouseDown": PropTypes.func,
545
+ "onMouseDownCapture": PropTypes.func,
546
+ "onMouseEnter": PropTypes.func,
547
+ "onMouseLeave": PropTypes.func,
548
+ "onMouseMove": PropTypes.func,
549
+ "onMouseMoveCapture": PropTypes.func,
550
+ "onMouseOut": PropTypes.func,
551
+ "onMouseOutCapture": PropTypes.func,
552
+ "onMouseOver": PropTypes.func,
553
+ "onMouseOverCapture": PropTypes.func,
554
+ "onMouseUp": PropTypes.func,
555
+ "onMouseUpCapture": PropTypes.func,
556
+ "onPaste": PropTypes.func,
557
+ "onPasteCapture": PropTypes.func,
558
+ "onPause": PropTypes.func,
559
+ "onPauseCapture": PropTypes.func,
560
+ "onPlay": PropTypes.func,
561
+ "onPlayCapture": PropTypes.func,
562
+ "onPlaying": PropTypes.func,
563
+ "onPlayingCapture": PropTypes.func,
564
+ "onPointerCancel": PropTypes.func,
565
+ "onPointerCancelCapture": PropTypes.func,
566
+ "onPointerDown": PropTypes.func,
567
+ "onPointerDownCapture": PropTypes.func,
568
+ "onPointerEnter": PropTypes.func,
569
+ "onPointerEnterCapture": PropTypes.func,
570
+ "onPointerLeave": PropTypes.func,
571
+ "onPointerLeaveCapture": PropTypes.func,
572
+ "onPointerMove": PropTypes.func,
573
+ "onPointerMoveCapture": PropTypes.func,
574
+ "onPointerOut": PropTypes.func,
575
+ "onPointerOutCapture": PropTypes.func,
576
+ "onPointerOver": PropTypes.func,
577
+ "onPointerOverCapture": PropTypes.func,
578
+ "onPointerUp": PropTypes.func,
579
+ "onPointerUpCapture": PropTypes.func,
580
+ "onProgress": PropTypes.func,
581
+ "onProgressCapture": PropTypes.func,
582
+ "onRateChange": PropTypes.func,
583
+ "onRateChangeCapture": PropTypes.func,
584
+ "onReset": PropTypes.func,
585
+ "onResetCapture": PropTypes.func,
586
+ "onScroll": PropTypes.func,
587
+ "onScrollCapture": PropTypes.func,
588
+ "onSeeked": PropTypes.func,
589
+ "onSeekedCapture": PropTypes.func,
590
+ "onSeeking": PropTypes.func,
591
+ "onSeekingCapture": PropTypes.func,
592
+ "onSelect": PropTypes.func,
593
+ "onSelectCapture": PropTypes.func,
594
+ "onStalled": PropTypes.func,
595
+ "onStalledCapture": PropTypes.func,
596
+ "onSubmit": PropTypes.func,
597
+ "onSubmitCapture": PropTypes.func,
598
+ "onSuspend": PropTypes.func,
599
+ "onSuspendCapture": PropTypes.func,
600
+ "onTimeUpdate": PropTypes.func,
601
+ "onTimeUpdateCapture": PropTypes.func,
602
+ "onTouchCancel": PropTypes.func,
603
+ "onTouchCancelCapture": PropTypes.func,
604
+ "onTouchEnd": PropTypes.func,
605
+ "onTouchEndCapture": PropTypes.func,
606
+ "onTouchMove": PropTypes.func,
607
+ "onTouchMoveCapture": PropTypes.func,
608
+ "onTouchStart": PropTypes.func,
609
+ "onTouchStartCapture": PropTypes.func,
610
+ "onTransitionEnd": PropTypes.func,
611
+ "onTransitionEndCapture": PropTypes.func,
612
+ "onVolumeChange": PropTypes.func,
613
+ "onVolumeChangeCapture": PropTypes.func,
614
+ "onWaiting": PropTypes.func,
615
+ "onWaitingCapture": PropTypes.func,
616
+ "onWheel": PropTypes.func,
617
+ "onWheelCapture": PropTypes.func,
618
+ "pattern": PropTypes.string,
619
+ "placeholder": PropTypes.string,
620
+ "prefix": PropTypes.string,
621
+ "property": PropTypes.string,
622
+ "radioGroup": PropTypes.string,
623
+ "readOnly": PropTypes.bool,
624
+ "required": PropTypes.bool,
625
+ "resource": PropTypes.string,
626
+ "results": PropTypes.number,
627
+ "reverse": PropTypes.bool,
628
+ "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({
629
+ "__@iterator": PropTypes.func.isRequired,
630
+ "anchor": PropTypes.func.isRequired,
631
+ "at": PropTypes.func.isRequired,
632
+ "big": PropTypes.func.isRequired,
633
+ "blink": PropTypes.func.isRequired,
634
+ "bold": PropTypes.func.isRequired,
635
+ "charAt": PropTypes.func.isRequired,
636
+ "charCodeAt": PropTypes.func.isRequired,
637
+ "codePointAt": PropTypes.func.isRequired,
638
+ "concat": PropTypes.func.isRequired,
639
+ "endsWith": PropTypes.func.isRequired,
640
+ "fixed": PropTypes.func.isRequired,
641
+ "fontcolor": PropTypes.func.isRequired,
642
+ "fontsize": PropTypes.func.isRequired,
643
+ "includes": PropTypes.func.isRequired,
644
+ "indexOf": PropTypes.func.isRequired,
645
+ "italics": PropTypes.func.isRequired,
646
+ "lastIndexOf": PropTypes.func.isRequired,
647
+ "length": PropTypes.number.isRequired,
648
+ "link": PropTypes.func.isRequired,
649
+ "localeCompare": PropTypes.func.isRequired,
650
+ "match": PropTypes.func.isRequired,
651
+ "matchAll": PropTypes.func.isRequired,
652
+ "normalize": PropTypes.func.isRequired,
653
+ "padEnd": PropTypes.func.isRequired,
654
+ "padStart": PropTypes.func.isRequired,
655
+ "repeat": PropTypes.func.isRequired,
656
+ "replace": PropTypes.func.isRequired,
657
+ "search": PropTypes.func.isRequired,
658
+ "slice": PropTypes.func.isRequired,
659
+ "small": PropTypes.func.isRequired,
660
+ "split": PropTypes.func.isRequired,
661
+ "startsWith": PropTypes.func.isRequired,
662
+ "strike": PropTypes.func.isRequired,
663
+ "sub": PropTypes.func.isRequired,
664
+ "substr": PropTypes.func.isRequired,
665
+ "substring": PropTypes.func.isRequired,
666
+ "sup": PropTypes.func.isRequired,
667
+ "toLocaleLowerCase": PropTypes.func.isRequired,
668
+ "toLocaleUpperCase": PropTypes.func.isRequired,
669
+ "toLowerCase": PropTypes.func.isRequired,
670
+ "toString": PropTypes.func.isRequired,
671
+ "toUpperCase": PropTypes.func.isRequired,
672
+ "trim": PropTypes.func.isRequired,
673
+ "trimEnd": PropTypes.func.isRequired,
674
+ "trimLeft": PropTypes.func.isRequired,
675
+ "trimRight": PropTypes.func.isRequired,
676
+ "trimStart": PropTypes.func.isRequired,
677
+ "valueOf": PropTypes.func.isRequired
678
+ })]),
679
+ "security": PropTypes.string,
680
+ "selectedValue": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string), PropTypes.object, PropTypes.string]),
681
+ "size": PropTypes.oneOf(["large", "medium", "small"]),
682
+ "slot": PropTypes.string,
683
+ "spellCheck": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
684
+ "src": PropTypes.string,
685
+ "step": PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
686
+ "style": PropTypes.object,
687
+ "suppressContentEditableWarning": PropTypes.bool,
688
+ "suppressHydrationWarning": PropTypes.bool,
689
+ "tabIndex": PropTypes.number,
690
+ "textboxRef": PropTypes.object,
691
+ "title": PropTypes.string,
692
+ "tooltipPosition": PropTypes.oneOf(["bottom", "left", "right", "top"]),
693
+ "translate": PropTypes.oneOf(["no", "yes"]),
694
+ "transparent": PropTypes.bool,
695
+ "typeof": PropTypes.string,
696
+ "unselectable": PropTypes.oneOf(["off", "on"]),
697
+ "validationIconId": PropTypes.string,
698
+ "validationOnLabel": PropTypes.bool,
699
+ "value": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string), PropTypes.number, PropTypes.string]),
700
+ "vocab": PropTypes.string,
701
+ "warning": PropTypes.oneOfType([PropTypes.string, PropTypes.bool]),
702
+ "width": PropTypes.oneOfType([PropTypes.number, PropTypes.string])
277
703
  };
278
704
  SelectTextbox.displayName = "SelectTextbox";
279
- export default SelectTextbox;
280
- export { formInputPropTypes };
705
+ export default SelectTextbox;