carbon-react 110.2.0 → 110.2.3

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 (75) hide show
  1. package/esm/__internal__/character-count/character-count.component.d.ts +8 -25
  2. package/esm/__internal__/character-count/character-count.component.js +12 -18
  3. package/esm/__internal__/character-count/character-count.style.d.ts +3 -1
  4. package/esm/__internal__/character-count/character-count.style.js +4 -0
  5. package/esm/__internal__/checkable-input/checkable-input-svg-wrapper.style.d.ts +1 -1
  6. package/esm/__internal__/checkable-input/checkable-input.component.d.ts +50 -0
  7. package/esm/__internal__/checkable-input/checkable-input.component.js +360 -98
  8. package/esm/__internal__/checkable-input/checkable-input.style.d.ts +11 -2
  9. package/esm/__internal__/checkable-input/checkable-input.style.js +0 -7
  10. package/esm/__internal__/checkable-input/hidden-checkable-input.component.d.ts +31 -0
  11. package/esm/__internal__/checkable-input/hidden-checkable-input.component.js +301 -45
  12. package/esm/__internal__/checkable-input/hidden-checkable-input.style.d.ts +1 -1
  13. package/esm/__internal__/checkable-input/index.d.ts +2 -5
  14. package/esm/__internal__/input/index.d.ts +1 -1
  15. package/esm/__internal__/input/input-presentation.style.d.ts +1 -1
  16. package/esm/__internal__/input/input.style.d.ts +1 -1
  17. package/esm/components/flat-table/flat-table-row/flat-table-row.style.js +1 -0
  18. package/esm/components/numeral-date/numeral-date-context.d.ts +6 -0
  19. package/esm/components/popover-container/popover-container.component.d.ts +2 -0
  20. package/esm/components/popover-container/popover-container.component.js +9 -4
  21. package/esm/components/select/multi-select/multi-select.component.js +1 -1
  22. package/esm/components/select/select-list/select-list.component.js +20 -11
  23. package/esm/components/textarea/textarea.component.js +6 -27
  24. package/esm/components/textarea/textarea.d.ts +2 -1
  25. package/esm/components/textbox/__internal__/prefix.style.d.ts +2 -0
  26. package/esm/components/textbox/index.d.ts +2 -1
  27. package/esm/components/textbox/index.js +1 -1
  28. package/esm/components/textbox/textbox.component.d.ts +92 -0
  29. package/esm/components/textbox/textbox.component.js +533 -197
  30. package/esm/components/textbox/textbox.style.d.ts +5 -0
  31. package/esm/components/textbox/textbox.style.js +0 -12
  32. package/esm/hooks/__internal__/useCharacterCount/useCharacterCount.d.ts +1 -1
  33. package/esm/hooks/__internal__/useCharacterCount/useCharacterCount.js +7 -6
  34. package/esm/hooks/__internal__/useInputAccessibility/useInputAccessibility.d.ts +6 -5
  35. package/lib/__internal__/character-count/character-count.component.d.ts +8 -25
  36. package/lib/__internal__/character-count/character-count.component.js +13 -23
  37. package/lib/__internal__/character-count/character-count.style.d.ts +3 -1
  38. package/lib/__internal__/character-count/character-count.style.js +7 -0
  39. package/lib/__internal__/checkable-input/checkable-input-svg-wrapper.style.d.ts +1 -1
  40. package/lib/__internal__/checkable-input/checkable-input.component.d.ts +50 -0
  41. package/lib/__internal__/checkable-input/checkable-input.component.js +360 -98
  42. package/lib/__internal__/checkable-input/checkable-input.style.d.ts +11 -2
  43. package/lib/__internal__/checkable-input/checkable-input.style.js +1 -9
  44. package/lib/__internal__/checkable-input/hidden-checkable-input.component.d.ts +31 -0
  45. package/lib/__internal__/checkable-input/hidden-checkable-input.component.js +301 -45
  46. package/lib/__internal__/checkable-input/hidden-checkable-input.style.d.ts +1 -1
  47. package/lib/__internal__/checkable-input/index.d.ts +2 -5
  48. package/lib/__internal__/input/index.d.ts +1 -1
  49. package/lib/__internal__/input/input-presentation.style.d.ts +1 -1
  50. package/lib/__internal__/input/input.style.d.ts +1 -1
  51. package/lib/components/flat-table/flat-table-row/flat-table-row.style.js +1 -0
  52. package/lib/components/numeral-date/numeral-date-context.d.ts +6 -0
  53. package/lib/components/popover-container/popover-container.component.d.ts +2 -0
  54. package/lib/components/popover-container/popover-container.component.js +9 -4
  55. package/lib/components/select/multi-select/multi-select.component.js +1 -1
  56. package/lib/components/select/select-list/select-list.component.js +20 -11
  57. package/lib/components/textarea/textarea.component.js +6 -27
  58. package/lib/components/textarea/textarea.d.ts +2 -1
  59. package/lib/components/textbox/__internal__/prefix.style.d.ts +2 -0
  60. package/lib/components/textbox/index.d.ts +2 -1
  61. package/lib/components/textbox/index.js +2 -10
  62. package/lib/components/textbox/textbox.component.d.ts +92 -0
  63. package/lib/components/textbox/textbox.component.js +534 -201
  64. package/lib/components/textbox/textbox.style.d.ts +5 -0
  65. package/lib/components/textbox/textbox.style.js +1 -16
  66. package/lib/hooks/__internal__/useCharacterCount/useCharacterCount.d.ts +1 -1
  67. package/lib/hooks/__internal__/useCharacterCount/useCharacterCount.js +7 -6
  68. package/lib/hooks/__internal__/useInputAccessibility/useInputAccessibility.d.ts +6 -5
  69. package/package.json +1 -1
  70. package/esm/__internal__/checkable-input/checkable-input.d.ts +0 -55
  71. package/esm/__internal__/checkable-input/hidden-checkable-input.d.ts +0 -42
  72. package/esm/components/textbox/textbox.d.ts +0 -125
  73. package/lib/__internal__/checkable-input/checkable-input.d.ts +0 -55
  74. package/lib/__internal__/checkable-input/hidden-checkable-input.d.ts +0 -42
  75. package/lib/components/textbox/textbox.d.ts +0 -125
@@ -2,7 +2,6 @@ function _extends() { _extends = Object.assign || function (target) { for (var i
2
2
 
3
3
  import React, { useContext } from "react";
4
4
  import PropTypes from "prop-types";
5
- import styledSystemPropTypes from "@styled-system/prop-types";
6
5
  import { filterStyledSystemMarginProps } from "../../style/utils";
7
6
  import { Input, InputPresentation } from "../../__internal__/input";
8
7
  import InputIconToggle from "../../__internal__/input-icon-toggle";
@@ -17,7 +16,6 @@ import { ErrorBorder, StyledHintText } from "./textbox.style";
17
16
  import ValidationMessage from "../../__internal__/validation-message";
18
17
  import { NewValidationContext } from "../carbon-provider/carbon-provider.component";
19
18
  import NumeralDateContext from "../numeral-date/numeral-date-context";
20
- const marginPropTypes = filterStyledSystemMarginProps(styledSystemPropTypes.space);
21
19
 
22
20
  const Textbox = ({
23
21
  align,
@@ -40,7 +38,7 @@ const Textbox = ({
40
38
  info,
41
39
  name,
42
40
  reverse,
43
- size,
41
+ size = "medium",
44
42
  value,
45
43
  readOnly,
46
44
  placeholder,
@@ -56,8 +54,8 @@ const Textbox = ({
56
54
  iconOnClick,
57
55
  iconOnMouseDown,
58
56
  iconTabIndex,
59
- validationOnLabel,
60
- labelWidth,
57
+ validationOnLabel = false,
58
+ labelWidth = 30,
61
59
  inputWidth,
62
60
  prefix,
63
61
  adaptiveLabelBreakpoint,
@@ -73,7 +71,9 @@ const Textbox = ({
73
71
  helpAriaLabel,
74
72
  ...props
75
73
  }) => {
76
- const [maxLength, characterCount] = useCharacterCount(value, characterLimit, warnOverLimit, enforceCharacterLimit);
74
+ const characterCountValue = typeof value === "string" ? value : "";
75
+ const [maxLength, characterCount] = useCharacterCount(characterCountValue, // TODO: Can be removed after the characterLimit type is changed to number
76
+ typeof characterLimit === "string" ? parseInt(characterLimit, 10) : characterLimit, warnOverLimit, enforceCharacterLimit);
77
77
  const {
78
78
  validationRedesignOptIn
79
79
  } = useContext(NewValidationContext);
@@ -95,7 +95,6 @@ const Textbox = ({
95
95
  warning,
96
96
  info,
97
97
  label,
98
- labelHelp,
99
98
  fieldHelp
100
99
  });
101
100
  const labelId = label ? externalLabelId || internalLabelId : "";
@@ -167,7 +166,7 @@ const Textbox = ({
167
166
  onMouseDown: onMouseDown,
168
167
  placeholder: disabled || readOnly ? "" : placeholder,
169
168
  readOnly: readOnly,
170
- value: visibleValue(value, formattedValue),
169
+ value: typeof formattedValue === "string" ? formattedValue : value,
171
170
  maxLength: maxLength
172
171
  }, props)), children, /*#__PURE__*/React.createElement(InputIconToggle, {
173
172
  align: align,
@@ -186,198 +185,535 @@ const Textbox = ({
186
185
  }))), characterCount));
187
186
  };
188
187
 
189
- function visibleValue(value, formattedValue) {
190
- return typeof formattedValue === "string" ? formattedValue : value;
191
- }
192
-
193
188
  Textbox.propTypes = {
194
- /** Filtered styled system margin props */
195
- ...marginPropTypes,
196
-
197
- /** Automatically focus the input on component mount */
198
- autoFocus: PropTypes.bool,
199
-
200
- /* The default value alignment on the input */
201
- align: PropTypes.oneOf(["right", "left"]),
202
-
203
- /** Identifier used for testing purposes, applied to the root element of the component. */
189
+ "about": PropTypes.string,
190
+ "accept": PropTypes.string,
191
+ "accessKey": PropTypes.string,
192
+ "adaptiveLabelBreakpoint": PropTypes.number,
193
+ "align": PropTypes.oneOf(["left", "right"]),
194
+ "alt": PropTypes.string,
195
+ "aria-activedescendant": PropTypes.string,
196
+ "aria-atomic": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
197
+ "aria-autocomplete": PropTypes.oneOf(["both", "inline", "list", "none"]),
198
+ "aria-busy": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
199
+ "aria-checked": PropTypes.oneOfType([PropTypes.oneOf(["false", "mixed", "true"]), PropTypes.bool]),
200
+ "aria-colcount": PropTypes.number,
201
+ "aria-colindex": PropTypes.number,
202
+ "aria-colspan": PropTypes.number,
203
+ "aria-controls": PropTypes.string,
204
+ "aria-current": PropTypes.oneOfType([PropTypes.oneOf(["date", "false", "location", "page", "step", "time", "true"]), PropTypes.bool]),
205
+ "aria-describedby": PropTypes.string,
206
+ "aria-details": PropTypes.string,
207
+ "aria-disabled": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
208
+ "aria-dropeffect": PropTypes.oneOf(["copy", "execute", "link", "move", "none", "popup"]),
209
+ "aria-errormessage": PropTypes.string,
210
+ "aria-expanded": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
211
+ "aria-flowto": PropTypes.string,
212
+ "aria-grabbed": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
213
+ "aria-haspopup": PropTypes.oneOfType([PropTypes.oneOf(["dialog", "false", "grid", "listbox", "menu", "tree", "true"]), PropTypes.bool]),
214
+ "aria-hidden": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
215
+ "aria-invalid": PropTypes.oneOfType([PropTypes.oneOf(["false", "grammar", "spelling", "true"]), PropTypes.bool]),
216
+ "aria-keyshortcuts": PropTypes.string,
217
+ "aria-label": PropTypes.string,
218
+ "aria-labelledby": PropTypes.string,
219
+ "aria-level": PropTypes.number,
220
+ "aria-live": PropTypes.oneOf(["assertive", "off", "polite"]),
221
+ "aria-modal": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
222
+ "aria-multiline": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
223
+ "aria-multiselectable": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
224
+ "aria-orientation": PropTypes.oneOf(["horizontal", "vertical"]),
225
+ "aria-owns": PropTypes.string,
226
+ "aria-placeholder": PropTypes.string,
227
+ "aria-posinset": PropTypes.number,
228
+ "aria-pressed": PropTypes.oneOfType([PropTypes.oneOf(["false", "mixed", "true"]), PropTypes.bool]),
229
+ "aria-readonly": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
230
+ "aria-relevant": PropTypes.oneOf(["additions removals", "additions text", "additions", "all", "removals additions", "removals text", "removals", "text additions", "text removals", "text"]),
231
+ "aria-required": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
232
+ "aria-roledescription": PropTypes.string,
233
+ "aria-rowcount": PropTypes.number,
234
+ "aria-rowindex": PropTypes.number,
235
+ "aria-rowspan": PropTypes.number,
236
+ "aria-selected": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
237
+ "aria-setsize": PropTypes.number,
238
+ "aria-sort": PropTypes.oneOf(["ascending", "descending", "none", "other"]),
239
+ "aria-valuemax": PropTypes.number,
240
+ "aria-valuemin": PropTypes.number,
241
+ "aria-valuenow": PropTypes.number,
242
+ "aria-valuetext": PropTypes.string,
243
+ "autoCapitalize": PropTypes.string,
244
+ "autoComplete": PropTypes.string,
245
+ "autoCorrect": PropTypes.string,
246
+ "autoFocus": PropTypes.bool,
247
+ "autoSave": PropTypes.string,
248
+ "capture": PropTypes.oneOfType([PropTypes.oneOf(["environment", "user"]), PropTypes.bool]),
249
+ "characterLimit": PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
250
+ "checked": PropTypes.bool,
251
+ "children": PropTypes.node,
252
+ "className": PropTypes.string,
253
+ "color": PropTypes.string,
254
+ "contentEditable": PropTypes.oneOfType([PropTypes.oneOf(["false", "inherit", "true"]), PropTypes.bool]),
255
+ "contextMenu": PropTypes.string,
256
+ "crossOrigin": PropTypes.string,
257
+ "css": PropTypes.oneOfType([PropTypes.func, PropTypes.number, PropTypes.object, PropTypes.shape({
258
+ "__emotion_styles": PropTypes.any.isRequired
259
+ }), PropTypes.string, PropTypes.bool]),
260
+ "dangerouslySetInnerHTML": PropTypes.shape({
261
+ "__html": PropTypes.string.isRequired
262
+ }),
204
263
  "data-component": PropTypes.string,
205
-
206
- /** Identifier used for testing purposes, applied to the root element of the component. */
207
264
  "data-element": PropTypes.string,
208
-
209
- /** Identifier used for testing purposes, applied to the root element of the component. */
210
265
  "data-role": PropTypes.string,
211
-
212
- /**
213
- * An optional alternative for props.value, this is useful if the
214
- * real value is an ID but you want to show a human-readable version.
215
- */
216
- formattedValue: PropTypes.string,
217
-
218
- /** The value of the Textbox */
219
- value: PropTypes.oneOfType([PropTypes.string, PropTypes.object, PropTypes.array // Allows the textbox to be used in the Multi-Select component
220
- ]),
221
-
222
- /** The unformatted value */
223
- rawValue: PropTypes.string,
224
-
225
- /** If true, the component will be disabled */
226
- disabled: PropTypes.bool,
227
-
228
- /** If true, the component will be read-only */
229
- readOnly: PropTypes.bool,
230
-
231
- /** Event handler for the change event */
232
- onChange: PropTypes.func,
233
-
234
- /** Event handler for the focus event */
235
- onFocus: PropTypes.func,
236
-
237
- /** Event handler for the blur event */
238
- onBlur: PropTypes.func,
239
-
240
- /** Event handler for the mouse down event */
241
- onMouseDown: PropTypes.func,
242
-
243
- /** Deferred callback called after the onChange event */
244
- onChangeDeferred: PropTypes.func,
245
-
246
- /** Integer to determine timeout for deferred callback */
247
- deferTimeout: PropTypes.number,
248
-
249
- /** Unique identifier for the input. Will use a randomly generated GUID if none is provided */
250
- id: PropTypes.string,
251
-
252
- /** Label */
253
- label: PropTypes.string,
254
-
255
- /** Inline label alignment */
256
- labelAlign: PropTypes.oneOf(["left", "right"]),
257
-
258
- /** Text applied to label help tooltip */
259
- labelHelp: PropTypes.node,
260
-
261
- /** When true, label is placed in line an input */
262
- labelInline: PropTypes.bool,
263
-
264
- /** Spacing between label and a field for inline label, given number will be multiplied by base spacing unit (8) */
265
- labelSpacing: PropTypes.oneOf([1, 2]),
266
-
267
- /** Width of a label in percentage. Works only when labelInline is true */
268
- labelWidth: PropTypes.number,
269
-
270
- /** Width of an input in percentage. Works only when labelInline is true */
271
- inputWidth: PropTypes.number,
272
-
273
- /** Input name */
274
- name: PropTypes.string,
275
-
276
- /** Help content to be displayed under an input */
277
- fieldHelp: PropTypes.node,
278
-
279
- /** Type of the icon that will be rendered next to the input */
280
- children: PropTypes.node,
281
-
282
- /**
283
- * <a href="https://brand.sage.com/d/NdbrveWvNheA/foundations#/icons/icons" target="_blank">List of supported icons</a>
284
- *
285
- * Icon to display inside of the Textbox
286
- * */
287
- inputIcon: PropTypes.string,
288
-
289
- /** Additional child elements to display before the input */
290
- leftChildren: PropTypes.node,
291
-
292
- /** [Legacy] Flag to configure component as optional in Form */
293
- isOptional: PropTypes.bool,
294
-
295
- /** Indicate that error has occurred
296
- Pass string to display icon, tooltip and red border
297
- Pass true boolean to only display red border */
298
- error: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]),
299
-
300
- /** Indicate that warning has occurred
301
- Pass string to display icon, tooltip and orange border
302
- Pass true boolean to only display orange border */
303
- warning: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]),
304
-
305
- /** Indicate additional information
306
- Pass string to display icon, tooltip and blue border
307
- Pass true boolean to only display blue border */
308
- info: PropTypes.oneOfType([PropTypes.bool, PropTypes.string]),
309
-
310
- /** When true, validation icon will be placed on label instead of being placed on the input */
311
- validationOnLabel: PropTypes.bool,
312
-
313
- /** Size of an input */
314
- size: PropTypes.oneOf(["small", "medium", "large"]),
315
-
316
- /** Placeholder string to be displayed in input */
317
- placeholder: PropTypes.string,
318
-
319
- /**
320
- * Container for DatePicker or SelectList components
321
- * @private
322
- * @ignore
323
- *
324
- */
325
- positionedChildren: PropTypes.node,
326
-
327
- /**
328
- * Label id passed from Select component
329
- * @private
330
- * @ignore
331
- *
332
- */
333
- labelId: PropTypes.string,
334
-
335
- /** Optional handler for click event on Textbox icon */
336
- iconOnClick: PropTypes.func,
337
-
338
- /** Optional handler for mousedown event on Textbox icon */
339
- iconOnMouseDown: PropTypes.func,
340
-
341
- /** Overrides the default tabindex of the component */
342
- iconTabIndex: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
343
-
344
- /** Handler for onClick events */
345
- onClick: PropTypes.func,
346
-
347
- /** Emphasized part of the displayed text */
348
- prefix: PropTypes.string,
349
-
350
- /** Reverses label and input display */
351
- reverse: PropTypes.bool,
352
-
353
- /** Breakpoint for adaptive label (inline labels change to top aligned). Enables the adaptive behaviour when set */
354
- adaptiveLabelBreakpoint: PropTypes.number,
355
-
356
- /** Flag to configure component as required */
357
- required: PropTypes.bool,
358
-
359
- /** A callback to retrieve the input reference */
360
- inputRef: PropTypes.func,
361
-
362
- /** Overrides the default tooltip position */
363
- tooltipPosition: PropTypes.oneOf(["top", "bottom", "left", "right"]),
364
-
365
- /** Stop the user typing over the characterLimit */
366
- enforceCharacterLimit: PropTypes.bool,
367
-
368
- /** Character limit of the textarea */
369
- characterLimit: PropTypes.string,
370
-
371
- /** Whether to display the character count message in red */
372
- warnOverLimit: PropTypes.bool,
373
-
374
- /** Aria label for rendered help component */
375
- helpAriaLabel: PropTypes.string
376
- };
377
- Textbox.defaultProps = {
378
- labelWidth: 30,
379
- size: "medium",
380
- validationOnLabel: false
266
+ "datatype": PropTypes.string,
267
+ "defaultChecked": PropTypes.bool,
268
+ "defaultValue": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string), PropTypes.number, PropTypes.string]),
269
+ "deferTimeout": PropTypes.number,
270
+ "dir": PropTypes.string,
271
+ "disabled": PropTypes.bool,
272
+ "draggable": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
273
+ "enforceCharacterLimit": PropTypes.bool,
274
+ "enterKeyHint": PropTypes.oneOf(["done", "enter", "go", "next", "previous", "search", "send"]),
275
+ "error": PropTypes.oneOfType([PropTypes.string, PropTypes.bool]),
276
+ "fieldHelp": PropTypes.node,
277
+ "form": PropTypes.string,
278
+ "formAction": PropTypes.string,
279
+ "formattedValue": PropTypes.string,
280
+ "formEncType": PropTypes.string,
281
+ "formMethod": PropTypes.string,
282
+ "formNoValidate": PropTypes.bool,
283
+ "formTarget": PropTypes.string,
284
+ "height": PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
285
+ "helpAriaLabel": PropTypes.string,
286
+ "hidden": PropTypes.bool,
287
+ "iconOnClick": PropTypes.func,
288
+ "iconOnMouseDown": PropTypes.func,
289
+ "iconTabIndex": PropTypes.number,
290
+ "id": PropTypes.string,
291
+ "info": PropTypes.oneOfType([PropTypes.string, PropTypes.bool]),
292
+ "inlist": PropTypes.any,
293
+ "inputIcon": PropTypes.oneOf(["add", "admin", "alert", "analysis", "arrow_down", "arrow_left_boxed", "arrow_left_right_small", "arrow_left_small", "arrow_left", "arrow_right_small", "arrow_right", "arrow_up", "arrow", "attach", "bank", "basket_with_squares", "basket", "bin", "block_arrow_right", "blocked_square", "blocked", "bold", "boxed_shapes", "bulk_destroy", "bullet_list_dotted", "bullet_list_numbers", "bullet_list", "business", "calendar_today", "calendar", "call", "camera", "card_view", "caret_down", "caret_large_down", "caret_large_left", "caret_large_right", "caret_large_up", "caret_left", "caret_right", "caret_up", "cart", "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", "contacts", "copy", "create", "credit_card_slash", "credit_card", "cross_circle", "cross", "csv", "delete", "delivery", "disconnect", "disputed", "document_right_align", "document_tick", "document_vertical_lines", "download", "draft", "drag_vertical", "drag", "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", "gift", "go", "graph", "grid", "help", "hide", "home", "image", "in_progress", "in_transit", "individual", "info", "italic", "key", "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", "pause_circle", "pause", "pdf", "people_switch", "people", "person_info", "person_tick", "person", "phone", "piggy_bank", "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", "three_boxes", "tick_circle", "tick", "true_tick", "undo", "unlocked", "upload", "uploaded", "video", "view", "warning"]),
294
+ "inputMode": PropTypes.oneOf(["decimal", "email", "none", "numeric", "search", "tel", "text", "url"]),
295
+ "inputRef": PropTypes.func,
296
+ "inputWidth": PropTypes.number,
297
+ "is": PropTypes.string,
298
+ "isOptional": PropTypes.bool,
299
+ "itemID": PropTypes.string,
300
+ "itemProp": PropTypes.string,
301
+ "itemRef": PropTypes.string,
302
+ "itemScope": PropTypes.bool,
303
+ "itemType": PropTypes.string,
304
+ "label": PropTypes.string,
305
+ "labelAlign": PropTypes.oneOf(["left", "right"]),
306
+ "labelHelp": PropTypes.node,
307
+ "labelId": PropTypes.string,
308
+ "labelInline": PropTypes.bool,
309
+ "labelSpacing": PropTypes.oneOf([1, 2]),
310
+ "labelWidth": PropTypes.number,
311
+ "lang": PropTypes.string,
312
+ "leftChildren": PropTypes.node,
313
+ "list": PropTypes.string,
314
+ "m": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
315
+ "__@toStringTag": PropTypes.string.isRequired,
316
+ "description": PropTypes.string,
317
+ "toString": PropTypes.func.isRequired,
318
+ "valueOf": PropTypes.func.isRequired
319
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
320
+ "__@toStringTag": PropTypes.string.isRequired,
321
+ "description": PropTypes.string,
322
+ "toString": PropTypes.func.isRequired,
323
+ "valueOf": PropTypes.func.isRequired
324
+ }), PropTypes.string]),
325
+ "margin": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
326
+ "__@toStringTag": PropTypes.string.isRequired,
327
+ "description": PropTypes.string,
328
+ "toString": PropTypes.func.isRequired,
329
+ "valueOf": PropTypes.func.isRequired
330
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
331
+ "__@toStringTag": PropTypes.string.isRequired,
332
+ "description": PropTypes.string,
333
+ "toString": PropTypes.func.isRequired,
334
+ "valueOf": PropTypes.func.isRequired
335
+ }), PropTypes.string]),
336
+ "marginBottom": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
337
+ "__@toStringTag": PropTypes.string.isRequired,
338
+ "description": PropTypes.string,
339
+ "toString": PropTypes.func.isRequired,
340
+ "valueOf": PropTypes.func.isRequired
341
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
342
+ "__@toStringTag": PropTypes.string.isRequired,
343
+ "description": PropTypes.string,
344
+ "toString": PropTypes.func.isRequired,
345
+ "valueOf": PropTypes.func.isRequired
346
+ }), PropTypes.string]),
347
+ "marginLeft": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
348
+ "__@toStringTag": PropTypes.string.isRequired,
349
+ "description": PropTypes.string,
350
+ "toString": PropTypes.func.isRequired,
351
+ "valueOf": PropTypes.func.isRequired
352
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
353
+ "__@toStringTag": PropTypes.string.isRequired,
354
+ "description": PropTypes.string,
355
+ "toString": PropTypes.func.isRequired,
356
+ "valueOf": PropTypes.func.isRequired
357
+ }), PropTypes.string]),
358
+ "marginRight": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
359
+ "__@toStringTag": PropTypes.string.isRequired,
360
+ "description": PropTypes.string,
361
+ "toString": PropTypes.func.isRequired,
362
+ "valueOf": PropTypes.func.isRequired
363
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
364
+ "__@toStringTag": PropTypes.string.isRequired,
365
+ "description": PropTypes.string,
366
+ "toString": PropTypes.func.isRequired,
367
+ "valueOf": PropTypes.func.isRequired
368
+ }), PropTypes.string]),
369
+ "marginTop": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
370
+ "__@toStringTag": PropTypes.string.isRequired,
371
+ "description": PropTypes.string,
372
+ "toString": PropTypes.func.isRequired,
373
+ "valueOf": PropTypes.func.isRequired
374
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
375
+ "__@toStringTag": PropTypes.string.isRequired,
376
+ "description": PropTypes.string,
377
+ "toString": PropTypes.func.isRequired,
378
+ "valueOf": PropTypes.func.isRequired
379
+ }), PropTypes.string]),
380
+ "marginX": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
381
+ "__@toStringTag": PropTypes.string.isRequired,
382
+ "description": PropTypes.string,
383
+ "toString": PropTypes.func.isRequired,
384
+ "valueOf": PropTypes.func.isRequired
385
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
386
+ "__@toStringTag": PropTypes.string.isRequired,
387
+ "description": PropTypes.string,
388
+ "toString": PropTypes.func.isRequired,
389
+ "valueOf": PropTypes.func.isRequired
390
+ }), PropTypes.string]),
391
+ "marginY": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
392
+ "__@toStringTag": PropTypes.string.isRequired,
393
+ "description": PropTypes.string,
394
+ "toString": PropTypes.func.isRequired,
395
+ "valueOf": PropTypes.func.isRequired
396
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
397
+ "__@toStringTag": PropTypes.string.isRequired,
398
+ "description": PropTypes.string,
399
+ "toString": PropTypes.func.isRequired,
400
+ "valueOf": PropTypes.func.isRequired
401
+ }), PropTypes.string]),
402
+ "max": PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
403
+ "maxLength": PropTypes.number,
404
+ "mb": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
405
+ "__@toStringTag": PropTypes.string.isRequired,
406
+ "description": PropTypes.string,
407
+ "toString": PropTypes.func.isRequired,
408
+ "valueOf": PropTypes.func.isRequired
409
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
410
+ "__@toStringTag": PropTypes.string.isRequired,
411
+ "description": PropTypes.string,
412
+ "toString": PropTypes.func.isRequired,
413
+ "valueOf": PropTypes.func.isRequired
414
+ }), PropTypes.string]),
415
+ "min": PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
416
+ "minLength": PropTypes.number,
417
+ "ml": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
418
+ "__@toStringTag": PropTypes.string.isRequired,
419
+ "description": PropTypes.string,
420
+ "toString": PropTypes.func.isRequired,
421
+ "valueOf": PropTypes.func.isRequired
422
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
423
+ "__@toStringTag": PropTypes.string.isRequired,
424
+ "description": PropTypes.string,
425
+ "toString": PropTypes.func.isRequired,
426
+ "valueOf": PropTypes.func.isRequired
427
+ }), PropTypes.string]),
428
+ "mr": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
429
+ "__@toStringTag": PropTypes.string.isRequired,
430
+ "description": PropTypes.string,
431
+ "toString": PropTypes.func.isRequired,
432
+ "valueOf": PropTypes.func.isRequired
433
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
434
+ "__@toStringTag": PropTypes.string.isRequired,
435
+ "description": PropTypes.string,
436
+ "toString": PropTypes.func.isRequired,
437
+ "valueOf": PropTypes.func.isRequired
438
+ }), PropTypes.string]),
439
+ "mt": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
440
+ "__@toStringTag": PropTypes.string.isRequired,
441
+ "description": PropTypes.string,
442
+ "toString": PropTypes.func.isRequired,
443
+ "valueOf": PropTypes.func.isRequired
444
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
445
+ "__@toStringTag": PropTypes.string.isRequired,
446
+ "description": PropTypes.string,
447
+ "toString": PropTypes.func.isRequired,
448
+ "valueOf": PropTypes.func.isRequired
449
+ }), PropTypes.string]),
450
+ "multiple": PropTypes.bool,
451
+ "mx": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
452
+ "__@toStringTag": PropTypes.string.isRequired,
453
+ "description": PropTypes.string,
454
+ "toString": PropTypes.func.isRequired,
455
+ "valueOf": PropTypes.func.isRequired
456
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
457
+ "__@toStringTag": PropTypes.string.isRequired,
458
+ "description": PropTypes.string,
459
+ "toString": PropTypes.func.isRequired,
460
+ "valueOf": PropTypes.func.isRequired
461
+ }), PropTypes.string]),
462
+ "my": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf([null]), PropTypes.number, PropTypes.shape({
463
+ "__@toStringTag": PropTypes.string.isRequired,
464
+ "description": PropTypes.string,
465
+ "toString": PropTypes.func.isRequired,
466
+ "valueOf": PropTypes.func.isRequired
467
+ }), PropTypes.string])), PropTypes.number, PropTypes.object, PropTypes.shape({
468
+ "__@toStringTag": PropTypes.string.isRequired,
469
+ "description": PropTypes.string,
470
+ "toString": PropTypes.func.isRequired,
471
+ "valueOf": PropTypes.func.isRequired
472
+ }), PropTypes.string]),
473
+ "name": PropTypes.string,
474
+ "onAbort": PropTypes.func,
475
+ "onAbortCapture": PropTypes.func,
476
+ "onAnimationEnd": PropTypes.func,
477
+ "onAnimationEndCapture": PropTypes.func,
478
+ "onAnimationIteration": PropTypes.func,
479
+ "onAnimationIterationCapture": PropTypes.func,
480
+ "onAnimationStart": PropTypes.func,
481
+ "onAnimationStartCapture": PropTypes.func,
482
+ "onAuxClick": PropTypes.func,
483
+ "onAuxClickCapture": PropTypes.func,
484
+ "onBeforeInput": PropTypes.func,
485
+ "onBeforeInputCapture": PropTypes.func,
486
+ "onBlur": PropTypes.func,
487
+ "onBlurCapture": PropTypes.func,
488
+ "onCanPlay": PropTypes.func,
489
+ "onCanPlayCapture": PropTypes.func,
490
+ "onCanPlayThrough": PropTypes.func,
491
+ "onCanPlayThroughCapture": PropTypes.func,
492
+ "onChange": PropTypes.func,
493
+ "onChangeCapture": PropTypes.func,
494
+ "onChangeDeferred": PropTypes.func,
495
+ "onClick": PropTypes.func,
496
+ "onClickCapture": PropTypes.func,
497
+ "onCompositionEnd": PropTypes.func,
498
+ "onCompositionEndCapture": PropTypes.func,
499
+ "onCompositionStart": PropTypes.func,
500
+ "onCompositionStartCapture": PropTypes.func,
501
+ "onCompositionUpdate": PropTypes.func,
502
+ "onCompositionUpdateCapture": PropTypes.func,
503
+ "onContextMenu": PropTypes.func,
504
+ "onContextMenuCapture": PropTypes.func,
505
+ "onCopy": PropTypes.func,
506
+ "onCopyCapture": PropTypes.func,
507
+ "onCut": PropTypes.func,
508
+ "onCutCapture": PropTypes.func,
509
+ "onDoubleClick": PropTypes.func,
510
+ "onDoubleClickCapture": PropTypes.func,
511
+ "onDrag": PropTypes.func,
512
+ "onDragCapture": PropTypes.func,
513
+ "onDragEnd": PropTypes.func,
514
+ "onDragEndCapture": PropTypes.func,
515
+ "onDragEnter": PropTypes.func,
516
+ "onDragEnterCapture": PropTypes.func,
517
+ "onDragExit": PropTypes.func,
518
+ "onDragExitCapture": PropTypes.func,
519
+ "onDragLeave": PropTypes.func,
520
+ "onDragLeaveCapture": PropTypes.func,
521
+ "onDragOver": PropTypes.func,
522
+ "onDragOverCapture": PropTypes.func,
523
+ "onDragStart": PropTypes.func,
524
+ "onDragStartCapture": PropTypes.func,
525
+ "onDrop": PropTypes.func,
526
+ "onDropCapture": PropTypes.func,
527
+ "onDurationChange": PropTypes.func,
528
+ "onDurationChangeCapture": PropTypes.func,
529
+ "onEmptied": PropTypes.func,
530
+ "onEmptiedCapture": PropTypes.func,
531
+ "onEncrypted": PropTypes.func,
532
+ "onEncryptedCapture": PropTypes.func,
533
+ "onEnded": PropTypes.func,
534
+ "onEndedCapture": PropTypes.func,
535
+ "onError": PropTypes.func,
536
+ "onErrorCapture": PropTypes.func,
537
+ "onFocus": PropTypes.func,
538
+ "onFocusCapture": PropTypes.func,
539
+ "onGotPointerCapture": PropTypes.func,
540
+ "onGotPointerCaptureCapture": PropTypes.func,
541
+ "onInput": PropTypes.func,
542
+ "onInputCapture": PropTypes.func,
543
+ "onInvalid": PropTypes.func,
544
+ "onInvalidCapture": PropTypes.func,
545
+ "onKeyDown": PropTypes.func,
546
+ "onKeyDownCapture": PropTypes.func,
547
+ "onKeyPress": PropTypes.func,
548
+ "onKeyPressCapture": PropTypes.func,
549
+ "onKeyUp": PropTypes.func,
550
+ "onKeyUpCapture": PropTypes.func,
551
+ "onLoad": PropTypes.func,
552
+ "onLoadCapture": PropTypes.func,
553
+ "onLoadedData": PropTypes.func,
554
+ "onLoadedDataCapture": PropTypes.func,
555
+ "onLoadedMetadata": PropTypes.func,
556
+ "onLoadedMetadataCapture": PropTypes.func,
557
+ "onLoadStart": PropTypes.func,
558
+ "onLoadStartCapture": PropTypes.func,
559
+ "onLostPointerCapture": PropTypes.func,
560
+ "onLostPointerCaptureCapture": PropTypes.func,
561
+ "onMouseDown": PropTypes.func,
562
+ "onMouseDownCapture": PropTypes.func,
563
+ "onMouseEnter": PropTypes.func,
564
+ "onMouseLeave": PropTypes.func,
565
+ "onMouseMove": PropTypes.func,
566
+ "onMouseMoveCapture": PropTypes.func,
567
+ "onMouseOut": PropTypes.func,
568
+ "onMouseOutCapture": PropTypes.func,
569
+ "onMouseOver": PropTypes.func,
570
+ "onMouseOverCapture": PropTypes.func,
571
+ "onMouseUp": PropTypes.func,
572
+ "onMouseUpCapture": PropTypes.func,
573
+ "onPaste": PropTypes.func,
574
+ "onPasteCapture": PropTypes.func,
575
+ "onPause": PropTypes.func,
576
+ "onPauseCapture": PropTypes.func,
577
+ "onPlay": PropTypes.func,
578
+ "onPlayCapture": PropTypes.func,
579
+ "onPlaying": PropTypes.func,
580
+ "onPlayingCapture": PropTypes.func,
581
+ "onPointerCancel": PropTypes.func,
582
+ "onPointerCancelCapture": PropTypes.func,
583
+ "onPointerDown": PropTypes.func,
584
+ "onPointerDownCapture": PropTypes.func,
585
+ "onPointerEnter": PropTypes.func,
586
+ "onPointerEnterCapture": PropTypes.func,
587
+ "onPointerLeave": PropTypes.func,
588
+ "onPointerLeaveCapture": PropTypes.func,
589
+ "onPointerMove": PropTypes.func,
590
+ "onPointerMoveCapture": PropTypes.func,
591
+ "onPointerOut": PropTypes.func,
592
+ "onPointerOutCapture": PropTypes.func,
593
+ "onPointerOver": PropTypes.func,
594
+ "onPointerOverCapture": PropTypes.func,
595
+ "onPointerUp": PropTypes.func,
596
+ "onPointerUpCapture": PropTypes.func,
597
+ "onProgress": PropTypes.func,
598
+ "onProgressCapture": PropTypes.func,
599
+ "onRateChange": PropTypes.func,
600
+ "onRateChangeCapture": PropTypes.func,
601
+ "onReset": PropTypes.func,
602
+ "onResetCapture": PropTypes.func,
603
+ "onScroll": PropTypes.func,
604
+ "onScrollCapture": PropTypes.func,
605
+ "onSeeked": PropTypes.func,
606
+ "onSeekedCapture": PropTypes.func,
607
+ "onSeeking": PropTypes.func,
608
+ "onSeekingCapture": PropTypes.func,
609
+ "onSelect": PropTypes.func,
610
+ "onSelectCapture": PropTypes.func,
611
+ "onStalled": PropTypes.func,
612
+ "onStalledCapture": PropTypes.func,
613
+ "onSubmit": PropTypes.func,
614
+ "onSubmitCapture": PropTypes.func,
615
+ "onSuspend": PropTypes.func,
616
+ "onSuspendCapture": PropTypes.func,
617
+ "onTimeUpdate": PropTypes.func,
618
+ "onTimeUpdateCapture": PropTypes.func,
619
+ "onTouchCancel": PropTypes.func,
620
+ "onTouchCancelCapture": PropTypes.func,
621
+ "onTouchEnd": PropTypes.func,
622
+ "onTouchEndCapture": PropTypes.func,
623
+ "onTouchMove": PropTypes.func,
624
+ "onTouchMoveCapture": PropTypes.func,
625
+ "onTouchStart": PropTypes.func,
626
+ "onTouchStartCapture": PropTypes.func,
627
+ "onTransitionEnd": PropTypes.func,
628
+ "onTransitionEndCapture": PropTypes.func,
629
+ "onVolumeChange": PropTypes.func,
630
+ "onVolumeChangeCapture": PropTypes.func,
631
+ "onWaiting": PropTypes.func,
632
+ "onWaitingCapture": PropTypes.func,
633
+ "onWheel": PropTypes.func,
634
+ "onWheelCapture": PropTypes.func,
635
+ "pattern": PropTypes.string,
636
+ "placeholder": PropTypes.string,
637
+ "positionedChildren": PropTypes.node,
638
+ "prefix": PropTypes.string,
639
+ "property": PropTypes.string,
640
+ "radioGroup": PropTypes.string,
641
+ "readOnly": PropTypes.bool,
642
+ "required": PropTypes.bool,
643
+ "resource": PropTypes.string,
644
+ "results": PropTypes.number,
645
+ "reverse": PropTypes.bool,
646
+ "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({
647
+ "__@iterator": PropTypes.func.isRequired,
648
+ "anchor": PropTypes.func.isRequired,
649
+ "big": PropTypes.func.isRequired,
650
+ "blink": PropTypes.func.isRequired,
651
+ "bold": PropTypes.func.isRequired,
652
+ "charAt": PropTypes.func.isRequired,
653
+ "charCodeAt": PropTypes.func.isRequired,
654
+ "codePointAt": PropTypes.func.isRequired,
655
+ "concat": PropTypes.func.isRequired,
656
+ "endsWith": PropTypes.func.isRequired,
657
+ "fixed": PropTypes.func.isRequired,
658
+ "fontcolor": PropTypes.func.isRequired,
659
+ "fontsize": PropTypes.func.isRequired,
660
+ "includes": PropTypes.func.isRequired,
661
+ "indexOf": PropTypes.func.isRequired,
662
+ "italics": PropTypes.func.isRequired,
663
+ "lastIndexOf": PropTypes.func.isRequired,
664
+ "length": PropTypes.number.isRequired,
665
+ "link": PropTypes.func.isRequired,
666
+ "localeCompare": PropTypes.func.isRequired,
667
+ "match": PropTypes.func.isRequired,
668
+ "matchAll": PropTypes.func.isRequired,
669
+ "normalize": PropTypes.func.isRequired,
670
+ "padEnd": PropTypes.func.isRequired,
671
+ "padStart": PropTypes.func.isRequired,
672
+ "repeat": PropTypes.func.isRequired,
673
+ "replace": PropTypes.func.isRequired,
674
+ "search": PropTypes.func.isRequired,
675
+ "slice": PropTypes.func.isRequired,
676
+ "small": PropTypes.func.isRequired,
677
+ "split": PropTypes.func.isRequired,
678
+ "startsWith": PropTypes.func.isRequired,
679
+ "strike": PropTypes.func.isRequired,
680
+ "sub": PropTypes.func.isRequired,
681
+ "substr": PropTypes.func.isRequired,
682
+ "substring": PropTypes.func.isRequired,
683
+ "sup": PropTypes.func.isRequired,
684
+ "toLocaleLowerCase": PropTypes.func.isRequired,
685
+ "toLocaleUpperCase": PropTypes.func.isRequired,
686
+ "toLowerCase": PropTypes.func.isRequired,
687
+ "toString": PropTypes.func.isRequired,
688
+ "toUpperCase": PropTypes.func.isRequired,
689
+ "trim": PropTypes.func.isRequired,
690
+ "trimEnd": PropTypes.func.isRequired,
691
+ "trimLeft": PropTypes.func.isRequired,
692
+ "trimRight": PropTypes.func.isRequired,
693
+ "trimStart": PropTypes.func.isRequired,
694
+ "valueOf": PropTypes.func.isRequired
695
+ })]),
696
+ "security": PropTypes.string,
697
+ "size": PropTypes.oneOf(["large", "medium", "small"]),
698
+ "slot": PropTypes.string,
699
+ "spellCheck": PropTypes.oneOfType([PropTypes.oneOf(["false", "true"]), PropTypes.bool]),
700
+ "src": PropTypes.string,
701
+ "step": PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
702
+ "style": PropTypes.object,
703
+ "suppressContentEditableWarning": PropTypes.bool,
704
+ "suppressHydrationWarning": PropTypes.bool,
705
+ "tabIndex": PropTypes.number,
706
+ "title": PropTypes.string,
707
+ "tooltipPosition": PropTypes.oneOf(["bottom", "left", "right", "top"]),
708
+ "translate": PropTypes.oneOf(["no", "yes"]),
709
+ "typeof": PropTypes.string,
710
+ "unselectable": PropTypes.oneOf(["off", "on"]),
711
+ "validationOnLabel": PropTypes.bool,
712
+ "value": PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string), PropTypes.number, PropTypes.string]),
713
+ "vocab": PropTypes.string,
714
+ "warning": PropTypes.oneOfType([PropTypes.string, PropTypes.bool]),
715
+ "warnOverLimit": PropTypes.bool,
716
+ "width": PropTypes.oneOfType([PropTypes.number, PropTypes.string])
381
717
  };
382
- export { Textbox as OriginalTextbox };
718
+ export { Textbox };
383
719
  export default Textbox;