@splunk/react-ui 4.4.1 → 4.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/Accordion.js +37 -21
  2. package/Anchor.js +2 -2
  3. package/Animation.js +2 -2
  4. package/AnimationToggle.js +2 -2
  5. package/Box.js +2 -2
  6. package/Button.js +36 -12
  7. package/ButtonGroup.js +27 -6
  8. package/ButtonSimple.js +6 -6
  9. package/CHANGELOG.md +61 -1
  10. package/Calendar.js +14 -14
  11. package/Card.js +49 -23
  12. package/CardLayout.js +31 -10
  13. package/Chip.js +77 -53
  14. package/Clickable.js +4 -4
  15. package/CloseButton.js +6 -6
  16. package/Code.js +4 -4
  17. package/CollapsiblePanel.js +6 -6
  18. package/Color.js +103 -56
  19. package/ColumnLayout.js +4 -4
  20. package/ComboBox.js +20 -15
  21. package/Concertina.js +73 -68
  22. package/ControlGroup.js +72 -24
  23. package/Date.js +11 -11
  24. package/DefinitionList.js +6 -6
  25. package/Dropdown.js +12 -12
  26. package/EventListener.js +168 -0
  27. package/FetchOptions.js +8 -8
  28. package/File.js +48 -37
  29. package/FormRows.js +340 -220
  30. package/Image.js +14 -14
  31. package/JSONTree.js +5 -5
  32. package/Layer.js +32 -20
  33. package/Link.js +6 -6
  34. package/List.js +2 -2
  35. package/Markdown.js +250 -88
  36. package/Menu.js +70 -64
  37. package/Message.js +18 -18
  38. package/Modal.js +68 -14
  39. package/ModalLayer.js +4 -4
  40. package/Monogram.js +12 -11
  41. package/Multiselect.js +122 -78
  42. package/Number.js +19 -16
  43. package/Paginator.js +10 -10
  44. package/Paragraph.js +2 -2
  45. package/Popover.js +52 -38
  46. package/Progress.js +8 -8
  47. package/RadioBar.js +56 -69
  48. package/RadioList.js +2 -2
  49. package/Resize.js +19 -15
  50. package/ResultsMenu.js +8 -8
  51. package/ScreenReaderContent.js +2 -2
  52. package/Scroll.js +16 -14
  53. package/ScrollContainerContext.js +5 -5
  54. package/Search.d.ts +2 -0
  55. package/Search.js +797 -0
  56. package/Select.js +63 -35
  57. package/SidePanel.js +6 -6
  58. package/Slider.js +29 -25
  59. package/SlidingPanels.js +4 -4
  60. package/StaticContent.js +2 -2
  61. package/StepBar.js +56 -52
  62. package/Switch.js +8 -8
  63. package/TabBar.js +126 -85
  64. package/TabLayout.js +4 -5
  65. package/Table.js +188 -138
  66. package/Text.js +69 -63
  67. package/Tooltip.js +11 -11
  68. package/TransitionOpen.js +9 -9
  69. package/WaitSpinner.js +3 -4
  70. package/package.json +6 -7
  71. package/types/src/Accordion/AccordionContext.d.ts +10 -0
  72. package/types/src/Accordion/Panel.d.ts +0 -9
  73. package/types/src/Button/Button.d.ts +4 -2
  74. package/types/src/ButtonGroup/ButtonGroupContext.d.ts +7 -0
  75. package/types/src/ButtonSimple/ButtonSimple.d.ts +5 -5
  76. package/types/src/Card/Card.d.ts +2 -0
  77. package/types/src/CardLayout/CardLayoutContext.d.ts +8 -0
  78. package/types/src/Color/Color.d.ts +2 -2
  79. package/types/src/ComboBox/ComboBox.d.ts +4 -3
  80. package/types/src/Concertina/ConcertinaContext.d.ts +8 -0
  81. package/types/src/Concertina/Panel.d.ts +2 -4
  82. package/types/src/ControlGroup/ControlGroup.d.ts +6 -1
  83. package/types/src/Date/Date.d.ts +3 -3
  84. package/types/src/EventListener/EventListener.d.ts +18 -0
  85. package/types/src/EventListener/index.d.ts +2 -0
  86. package/types/src/File/File.d.ts +6 -4
  87. package/types/src/FormRows/FormRows.d.ts +70 -12
  88. package/types/src/FormRows/FormRowsContext.d.ts +1 -0
  89. package/types/src/FormRows/Row.d.ts +9 -7
  90. package/types/src/Markdown/Markdown.d.ts +2 -0
  91. package/types/src/Markdown/renderers/MarkdownBlockquote.d.ts +14 -0
  92. package/types/src/Markdown/renderers/MarkdownCode.d.ts +15 -0
  93. package/types/src/Markdown/renderers/MarkdownCodeBlock.d.ts +16 -0
  94. package/types/src/Markdown/renderers/MarkdownHeading.d.ts +15 -0
  95. package/types/src/Markdown/renderers/MarkdownImage.d.ts +18 -0
  96. package/types/src/Markdown/renderers/MarkdownItem.d.ts +14 -0
  97. package/types/src/Markdown/renderers/MarkdownLink.d.ts +18 -0
  98. package/types/src/Markdown/renderers/MarkdownList.d.ts +26 -0
  99. package/types/src/Markdown/renderers/MarkdownParagraph.d.ts +14 -0
  100. package/types/src/Markdown/renderers/index.d.ts +10 -0
  101. package/types/src/Modal/Modal.d.ts +15 -3
  102. package/types/src/Monogram/Monogram.d.ts +5 -1
  103. package/types/src/Multiselect/Compact.d.ts +12 -4
  104. package/types/src/Multiselect/Multiselect.d.ts +14 -4
  105. package/types/src/Multiselect/Normal.d.ts +7 -2
  106. package/types/src/Number/Number.d.ts +11 -7
  107. package/types/src/Popover/Popover.d.ts +2 -2
  108. package/types/src/RadioBar/Option.d.ts +4 -14
  109. package/types/src/RadioBar/RadioBar.d.ts +2 -2
  110. package/types/src/RadioBar/RadioBarContext.d.ts +9 -0
  111. package/types/src/Scroll/Inner.d.ts +1 -1
  112. package/types/src/ScrollContainerContext/ScrollContainerContext.d.ts +4 -4
  113. package/types/src/Search/Option.d.ts +60 -0
  114. package/types/src/Search/Search.d.ts +97 -0
  115. package/types/src/Search/index.d.ts +2 -0
  116. package/types/src/Select/Select.d.ts +6 -2
  117. package/types/src/Select/SelectBase.d.ts +12 -5
  118. package/types/src/Slider/Slider.d.ts +2 -2
  119. package/types/src/StepBar/Step.d.ts +1 -13
  120. package/types/src/StepBar/StepBarContext.d.ts +8 -0
  121. package/types/src/TabBar/Tab.d.ts +5 -13
  122. package/types/src/TabBar/TabBarContext.d.ts +14 -0
  123. package/types/src/Table/Body.d.ts +1 -1
  124. package/types/src/Table/Head.d.ts +1 -1
  125. package/types/src/Table/Row.d.ts +10 -3
  126. package/types/src/Table/Table.d.ts +3 -2
  127. package/types/src/Text/Text.d.ts +11 -7
  128. package/types/src/icons/Sort.d.ts +3 -0
  129. package/types/src/usePrevious/index.d.ts +2 -0
  130. package/types/src/usePrevious/usePrevious.d.ts +12 -0
  131. package/usePrevious.js +137 -0
@@ -0,0 +1,18 @@
1
+ import React from 'react';
2
+ /**
3
+ * This is a private component.
4
+ * Please see the Readme file for more information.
5
+ */
6
+ declare type CustomEvent = string | keyof DocumentEventMap | keyof HTMLElementEventMap | keyof WindowEventMap | Event;
7
+ interface EventListenerProp {
8
+ children?: React.ReactNode;
9
+ target: Document | HTMLElement | Window | null | undefined;
10
+ eventType: string;
11
+ listener: (evt: CustomEvent) => void;
12
+ options?: boolean | AddEventListenerOptions;
13
+ }
14
+ declare function EventListener(props: EventListenerProp): JSX.Element;
15
+ declare namespace EventListener {
16
+ var propTypes: React.WeakValidationMap<EventListenerProp>;
17
+ }
18
+ export default EventListener;
@@ -0,0 +1,2 @@
1
+ export { default } from './EventListener';
2
+ export * from './EventListener';
@@ -30,7 +30,7 @@ declare type FileRequestRetryHandler = (data: {
30
30
  }) => void;
31
31
  interface FilePropsBase {
32
32
  /** The accept attribute for the file browser. This does not filter dropped items,
33
- * which must be filtered manually. */
33
+ * which must be filtered manually. In prisma themes, File will create a default "supports" message based on this value. */
34
34
  accept?: string;
35
35
  /** Allow the user to upload multiple files. */
36
36
  allowMultiple?: boolean;
@@ -48,7 +48,7 @@ interface FilePropsBase {
48
48
  error?: boolean;
49
49
  /** There can only be one File component on the page as it will take all files dropped on the page. */
50
50
  fullscreen?: boolean;
51
- /** Show help text on the full-screen File. */
51
+ /** Show help text. */
52
52
  help?: React.ReactNode;
53
53
  /** The name is returned with onRequestAdd and onRequestRemove events,
54
54
  * which can be used to identify the
@@ -65,6 +65,8 @@ interface FilePropsBase {
65
65
  * the event and an object with the Item's index and name: `(event, {index, name})`.
66
66
  * @includeTheme prisma */
67
67
  onRequestRetry?: FileRequestRetryHandler;
68
+ /** A message for which file types are supported. */
69
+ supportsMessage?: React.ReactNode;
68
70
  /** @private */
69
71
  splunkTheme: AnyTheme;
70
72
  }
@@ -95,9 +97,9 @@ declare class File extends Component<FileProps, FileState> {
95
97
  private addFiles;
96
98
  render(): JSX.Element;
97
99
  }
98
- declare const HoistedFileWithTheme: React.ForwardRefExoticComponent<Pick<Pick<Pick<ClassComponentProps<FilePropsBase, Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, "div", never>, "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "name" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "disabled" | "accept" | "help" | "elementRef" | "splunkTheme" | "error" | "onRequestRemove" | "fullscreen" | "onRequestRetry" | "allowMultiple" | "dropAnywhere" | "onRequestAdd"> & Pick<PropTypes.InferProps<React.WeakValidationMap<ClassComponentProps<FilePropsBase, Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, "div", never>>>, "inlist"> & Pick<ClassComponentProps<FilePropsBase, Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, "div", never>, never>, "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "name" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "accept" | "help" | "elementRef" | "splunkTheme" | "onRequestRemove" | "fullscreen" | "onRequestRetry" | "onRequestAdd"> & Partial<Pick<Pick<ClassComponentProps<FilePropsBase, Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, "div", never>, "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "name" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "disabled" | "accept" | "help" | "elementRef" | "splunkTheme" | "error" | "onRequestRemove" | "fullscreen" | "onRequestRetry" | "allowMultiple" | "dropAnywhere" | "onRequestAdd"> & Pick<PropTypes.InferProps<React.WeakValidationMap<ClassComponentProps<FilePropsBase, Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, "div", never>>>, "inlist"> & Pick<ClassComponentProps<FilePropsBase, Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, "div", never>, never>, "disabled" | "error" | "allowMultiple" | "dropAnywhere">> & Partial<Pick<Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, never>> & {
100
+ declare const HoistedFileWithTheme: React.ForwardRefExoticComponent<Pick<Pick<Pick<ClassComponentProps<FilePropsBase, Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, "div", never>, "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "name" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "disabled" | "accept" | "help" | "elementRef" | "error" | "splunkTheme" | "onRequestRemove" | "fullscreen" | "onRequestRetry" | "allowMultiple" | "dropAnywhere" | "onRequestAdd" | "supportsMessage"> & Pick<PropTypes.InferProps<React.WeakValidationMap<ClassComponentProps<FilePropsBase, Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, "div", never>>>, "inlist"> & Pick<ClassComponentProps<FilePropsBase, Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, "div", never>, never>, "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "name" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "accept" | "help" | "elementRef" | "splunkTheme" | "onRequestRemove" | "fullscreen" | "onRequestRetry" | "onRequestAdd" | "supportsMessage"> & Partial<Pick<Pick<ClassComponentProps<FilePropsBase, Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, "div", never>, "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "name" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "disabled" | "accept" | "help" | "elementRef" | "error" | "splunkTheme" | "onRequestRemove" | "fullscreen" | "onRequestRetry" | "allowMultiple" | "dropAnywhere" | "onRequestAdd" | "supportsMessage"> & Pick<PropTypes.InferProps<React.WeakValidationMap<ClassComponentProps<FilePropsBase, Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, "div", never>>>, "inlist"> & Pick<ClassComponentProps<FilePropsBase, Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, "div", never>, never>, "disabled" | "error" | "allowMultiple" | "dropAnywhere">> & Partial<Pick<Required<Pick<FilePropsBase, "disabled" | "error" | "allowMultiple" | "dropAnywhere">>, never>> & {
99
101
  ref?: ((instance: File | null) => void) | React.RefObject<File> | null | undefined;
100
- }, "ref" | "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "name" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "disabled" | "accept" | "help" | "elementRef" | "error" | "onRequestRemove" | "fullscreen" | "onRequestRetry" | "allowMultiple" | "dropAnywhere" | "onRequestAdd">> & {
102
+ }, "ref" | "slot" | "style" | "title" | "children" | "onChange" | "onPause" | "name" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "disabled" | "accept" | "help" | "elementRef" | "error" | "onRequestRemove" | "fullscreen" | "onRequestRetry" | "allowMultiple" | "dropAnywhere" | "onRequestAdd" | "supportsMessage">> & {
101
103
  Item: typeof Item;
102
104
  };
103
105
  export default HoistedFileWithTheme;
@@ -1,8 +1,8 @@
1
- import React from 'react';
1
+ import React, { Component } from 'react';
2
2
  import PropTypes from 'prop-types';
3
3
  import Row from './Row';
4
4
  import type { RowRequestRemoveHandler, RowWithoutSortable } from './Row';
5
- import { ComponentProps } from '../utils/types';
5
+ import { ClassComponentProps } from '../utils/types';
6
6
  /** @public */
7
7
  declare type FormRowsRequestMoveHandler = (data: {
8
8
  fromIndex: number;
@@ -23,20 +23,78 @@ interface FormRowsPropsBase {
23
23
  header?: React.ReactNode;
24
24
  /** Replaces Add Row Button with custom content or controls. */
25
25
  menu?: React.ReactNode;
26
- /** Callback when add button is clicked. */
26
+ /** Callback when the "Add" button is clicked. If `onRequestAdd` is defined, 'onRequestRemove' should be defined in `<FormRows.Row>`. Neither should be defined for a reorder-only variant of `<FormRows>`. */
27
27
  onRequestAdd?: React.MouseEventHandler<HTMLButtonElement | HTMLAnchorElement>;
28
28
  /** Callback when sort action completes. Omit this to make rows unsortable. */
29
29
  onRequestMove?: FormRowsRequestMoveHandler;
30
30
  }
31
- declare type FormRowsProps = ComponentProps<FormRowsPropsBase, 'div'>;
32
- declare function FormRows(props: FormRowsProps): JSX.Element;
33
- declare namespace FormRows {
34
- var addRow: (element: React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>, items: React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>[]) => React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>[];
35
- var moveRow: (fromIndex: number, toIndex: number, items: React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>[]) => React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>[];
36
- var removeRow: (index: number, items: React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>[]) => React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>[];
37
- var propTypes: React.WeakValidationMap<ComponentProps<FormRowsPropsBase, "div", never>>;
38
- var defaultProps: ComponentProps<FormRowsPropsBase, "div", never>;
39
- var Row: React.ComponentClass<Pick<ComponentProps<import("./Row").RowPropsBase, "div", never>, "slot" | "style" | "title" | "children" | "value" | "onChange" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "elementRef" | "onRequestRemove" | "index" | "rowIndex"> & Pick<PropTypes.InferProps<React.WeakValidationMap<ComponentProps<import("./Row").RowPropsBase, "div", never>>>, "inlist"> & Pick<ComponentProps<import("./Row").RowPropsBase, "div", never>, never>, any>;
31
+ declare const defaultProps: Required<Pick<FormRowsPropsBase, 'addLabel' | 'disabled' | 'header'>>;
32
+ declare type FormRowsProps = ClassComponentProps<FormRowsPropsBase, typeof defaultProps, 'div'>;
33
+ declare class FormRows extends Component<FormRowsProps, {}> {
34
+ static propTypes: React.WeakValidationMap<ClassComponentProps<FormRowsPropsBase, Required<Pick<FormRowsPropsBase, "header" | "disabled" | "addLabel">>, "div", never>>;
35
+ static defaultProps: Required<Pick<FormRowsPropsBase, "header" | "disabled" | "addLabel">>;
36
+ static Row: React.ComponentClass<Pick<import("./Row").RowPropsBase, "children" | "value" | "elementRef" | "onRequestRemove" | "index" | "rowIndex"> & Pick<PropTypes.InferProps<React.WeakValidationMap<import("./Row").RowPropsBase>>, never> & Pick<import("./Row").RowPropsBase, never>, any>;
37
+ /**
38
+ * Static function for adding a row.
39
+ *
40
+ * Example Use:
41
+ *
42
+ * onRequestAdd() => {
43
+ * this.setState(state => ({
44
+ * items: FormRows.addRow(
45
+ * <FormRows.Row
46
+ * index={state.items.length}
47
+ * key={createDOMID()}
48
+ * onRequestRemove={this.handleRequestRemove}
49
+ * >
50
+ * <Text />
51
+ * </FormRows.Row>,
52
+ * state.items
53
+ * ),
54
+ * }));
55
+ * };
56
+ *
57
+ * @param element Row element to add.
58
+ * @param items Array of current FormRows to add to.
59
+ * @return New array of FormRows with new Row added.
60
+ */
61
+ static addRow(element: React.ReactElement, items: React.ReactElement[]): React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>[];
62
+ /**
63
+ * Static function for moving a row.
64
+ *
65
+ * Example Use:
66
+ *
67
+ * onRequestMove({ fromIndex, toIndex }) => {
68
+ * this.setState(state => ({
69
+ * items: FormRows.moveRow(fromIndex, toIndex, state.items),
70
+ * }));
71
+ * };
72
+ *
73
+ * @param fromIndex Current index of row to move.
74
+ * @param toIndex New index to move row to.
75
+ * @param items Array of current FormRows.
76
+ * @return New array of FormRows arranged in new order.
77
+ */
78
+ static moveRow(fromIndex: number, toIndex: number, items: React.ReactElement[]): React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>[];
79
+ /**
80
+ * Static function for removing a row.
81
+ *
82
+ * Example Use:
83
+ *
84
+ * onRequestRemove(e, { index }) => {
85
+ * this.setState(state => ({
86
+ * items: FormRows.removeRow(index, state.items),
87
+ * }));
88
+ * };
89
+ *
90
+ * @param index Index of Row to delete.
91
+ * @param items Array of current FormRows.
92
+ * @return New array of FormRows with Row of given index deleted.
93
+ */
94
+ static removeRow(index: number, items: React.ReactElement[]): React.ReactElement<any, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>[];
95
+ private handleKeyDown;
96
+ private handleSortEnd;
97
+ render(): JSX.Element;
40
98
  }
41
99
  export default FormRows;
42
100
  export { Row };
@@ -3,6 +3,7 @@ import { RowKeyDownHandler } from './Row';
3
3
  export interface FormRowsContext {
4
4
  disabledDeleteButton: boolean | undefined;
5
5
  onKeyDown?: RowKeyDownHandler;
6
+ hasOnRequestAdd?: boolean;
6
7
  sortable: boolean;
7
8
  }
8
9
  export declare const FormRowsContext: import("react").Context<FormRowsContext>;
@@ -1,6 +1,6 @@
1
- import React from 'react';
1
+ import React, { Component } from 'react';
2
2
  import PropTypes from 'prop-types';
3
- import { ComponentProps } from '../utils/types';
3
+ import FormRowsContext from './FormRowsContext';
4
4
  declare type RowKeyDownHandler = (event: React.KeyboardEvent<HTMLDivElement>, data: {
5
5
  index: number;
6
6
  }) => void;
@@ -27,11 +27,13 @@ interface RowPropsBase {
27
27
  /** The contents of Row */
28
28
  value?: React.ReactNode;
29
29
  }
30
- declare type RowProps = ComponentProps<RowPropsBase, 'div'>;
31
- declare function Row({ children, elementRef, onRequestRemove, rowIndex, ...otherProps }: RowProps): JSX.Element;
32
- declare namespace Row {
33
- var propTypes: React.WeakValidationMap<ComponentProps<RowPropsBase, "div", never>>;
30
+ declare class Row extends Component<RowPropsBase, {}> {
31
+ static propTypes: React.WeakValidationMap<RowPropsBase>;
32
+ static contextType: React.Context<FormRowsContext>;
33
+ private handleKeyDown;
34
+ private handleRequestRemove;
35
+ render(): JSX.Element;
34
36
  }
35
- declare const SortableRow: React.ComponentClass<Pick<ComponentProps<RowPropsBase, "div", never>, "slot" | "style" | "title" | "children" | "value" | "onChange" | "onPause" | "className" | "color" | "id" | "lang" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "about" | "datatype" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "elementRef" | "onRequestRemove" | "index" | "rowIndex"> & Pick<PropTypes.InferProps<React.WeakValidationMap<ComponentProps<RowPropsBase, "div", never>>>, "inlist"> & Pick<ComponentProps<RowPropsBase, "div", never>, never>, any>;
37
+ declare const SortableRow: React.ComponentClass<Pick<RowPropsBase, "children" | "value" | "elementRef" | "onRequestRemove" | "index" | "rowIndex"> & Pick<PropTypes.InferProps<React.WeakValidationMap<RowPropsBase>>, never> & Pick<RowPropsBase, never>, any>;
36
38
  export default SortableRow;
37
39
  export type { Row as RowWithoutSortable, RowKeyDownHandler, RowPropsBase, RowRequestRemoveHandler };
@@ -1,6 +1,7 @@
1
1
  import React from 'react';
2
2
  import PropTypes from 'prop-types';
3
3
  import { ComponentProps } from '../utils/types';
4
+ import * as Renderers from './renderers';
4
5
  /** @public */
5
6
  declare type BlockquoteRenderer = (data: {
6
7
  children: React.ReactNode[];
@@ -129,4 +130,5 @@ declare namespace Markdown {
129
130
  };
130
131
  }
131
132
  export default Markdown;
133
+ export { Renderers };
132
134
  export { BlockquoteRenderer, CodeBlockRenderer, CodeRenderer, HeadingRenderer, ImageRenderer, ItemRenderer, LinkRenderer, ListRenderer, ParagraphRenderer, };
@@ -0,0 +1,14 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { ComponentProps } from '../../utils/types';
4
+ interface MarkdownBlockquotePropsBase {
5
+ children: React.ReactNode[];
6
+ }
7
+ declare type MarkdownBlockquoteProps = ComponentProps<MarkdownBlockquotePropsBase, 'blockquote'>;
8
+ declare function MarkdownBlockquote({ children }: MarkdownBlockquoteProps): JSX.Element;
9
+ declare namespace MarkdownBlockquote {
10
+ var propTypes: {
11
+ children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
12
+ };
13
+ }
14
+ export default MarkdownBlockquote;
@@ -0,0 +1,15 @@
1
+ /// <reference types="react" />
2
+ import PropTypes from 'prop-types';
3
+ import { ComponentProps } from '../../utils/types';
4
+ interface MarkdownCodePropsBase {
5
+ inline: true;
6
+ literal: string;
7
+ }
8
+ declare type MarkdownCodeProps = ComponentProps<MarkdownCodePropsBase, 'code'>;
9
+ declare function MarkdownCode({ literal }: MarkdownCodeProps): JSX.Element;
10
+ declare namespace MarkdownCode {
11
+ var propTypes: {
12
+ literal: PropTypes.Requireable<string>;
13
+ };
14
+ }
15
+ export default MarkdownCode;
@@ -0,0 +1,16 @@
1
+ /// <reference types="react" />
2
+ import PropTypes from 'prop-types';
3
+ import { ComponentProps } from '../../utils/types';
4
+ interface MarkdownCodeBlockPropsBase {
5
+ language?: string;
6
+ literal: string;
7
+ }
8
+ declare type MarkdownCodeBlockProps = ComponentProps<MarkdownCodeBlockPropsBase, 'div'>;
9
+ declare function MarkdownCodeBlock({ literal, language }: MarkdownCodeBlockProps): JSX.Element;
10
+ declare namespace MarkdownCodeBlock {
11
+ var propTypes: {
12
+ literal: PropTypes.Requireable<string>;
13
+ language: PropTypes.Requireable<string>;
14
+ };
15
+ }
16
+ export default MarkdownCodeBlock;
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { ComponentProps } from '../../utils/types';
4
+ interface MarkdownHeadingPropsBase {
5
+ children: React.ReactNode[];
6
+ level: 1 | 2 | 3 | 4 | 5 | 6;
7
+ }
8
+ declare type MarkdownHeadingProps = ComponentProps<MarkdownHeadingPropsBase, 'h1'>;
9
+ declare function MarkdownHeading({ level, children }: MarkdownHeadingProps): JSX.Element;
10
+ declare namespace MarkdownHeading {
11
+ var propTypes: {
12
+ children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
13
+ };
14
+ }
15
+ export default MarkdownHeading;
@@ -0,0 +1,18 @@
1
+ /// <reference types="react" />
2
+ import PropTypes from 'prop-types';
3
+ import { ComponentProps } from '../../utils/types';
4
+ interface MarkdownImagePropsBase {
5
+ alt: string;
6
+ src: string;
7
+ title?: string;
8
+ }
9
+ declare type MarkdownImageProps = ComponentProps<MarkdownImagePropsBase, 'img'>;
10
+ declare function MarkdownImage({ src, title, alt }: MarkdownImageProps): JSX.Element;
11
+ declare namespace MarkdownImage {
12
+ var propTypes: {
13
+ alt: PropTypes.Requireable<string>;
14
+ src: PropTypes.Requireable<string>;
15
+ title: PropTypes.Requireable<string>;
16
+ };
17
+ }
18
+ export default MarkdownImage;
@@ -0,0 +1,14 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { ComponentProps } from '../../utils/types';
4
+ interface MarkdownItemPropsBase {
5
+ children: React.ReactNode[];
6
+ }
7
+ declare type MarkdownItemProps = ComponentProps<MarkdownItemPropsBase, 'li'>;
8
+ declare function MarkdownItem({ children }: MarkdownItemProps): JSX.Element;
9
+ declare namespace MarkdownItem {
10
+ var propTypes: {
11
+ children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
12
+ };
13
+ }
14
+ export default MarkdownItem;
@@ -0,0 +1,18 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { ComponentProps } from '../../utils/types';
4
+ interface MarkdownLinkPropsBase {
5
+ children: React.ReactNode[];
6
+ href: string;
7
+ title?: string;
8
+ }
9
+ declare type MarkdownLinkProps = ComponentProps<MarkdownLinkPropsBase, 'a'>;
10
+ declare function MarkdownLink({ href, title, children }: MarkdownLinkProps): JSX.Element;
11
+ declare namespace MarkdownLink {
12
+ var propTypes: {
13
+ children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
14
+ href: PropTypes.Requireable<string>;
15
+ title: PropTypes.Requireable<string>;
16
+ };
17
+ }
18
+ export default MarkdownLink;
@@ -0,0 +1,26 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { ComponentProps } from '../../utils/types';
4
+ interface MarkdownListPropsBase {
5
+ children: React.ReactNode[];
6
+ start: number | null;
7
+ tight: boolean;
8
+ type: 'bullet' | 'ordered';
9
+ }
10
+ interface MarkdownListOrderedPropsBase extends MarkdownListPropsBase {
11
+ type: 'ordered';
12
+ }
13
+ interface MarkdownListUnorderedPropsBase extends MarkdownListPropsBase {
14
+ type: 'bullet';
15
+ }
16
+ declare type MarkdownListOrderedProps = ComponentProps<MarkdownListOrderedPropsBase, 'ol'>;
17
+ declare type MarkdownListUnorderedProps = ComponentProps<MarkdownListUnorderedPropsBase, 'ul'>;
18
+ declare type MarkdownListProps = MarkdownListOrderedProps | MarkdownListUnorderedProps;
19
+ declare function MarkdownList({ children, type }: MarkdownListProps): JSX.Element;
20
+ declare namespace MarkdownList {
21
+ var propTypes: {
22
+ children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
23
+ type: PropTypes.Requireable<string>;
24
+ };
25
+ }
26
+ export default MarkdownList;
@@ -0,0 +1,14 @@
1
+ import React from 'react';
2
+ import PropTypes from 'prop-types';
3
+ import { ComponentProps } from '../../utils/types';
4
+ interface MarkdownParagraphPropsBase {
5
+ children: React.ReactNode[];
6
+ }
7
+ declare type MarkdownParagraphProps = ComponentProps<MarkdownParagraphPropsBase, 'p'>;
8
+ declare function MarkdownParagraph({ children }: MarkdownParagraphProps): JSX.Element;
9
+ declare namespace MarkdownParagraph {
10
+ var propTypes: {
11
+ children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
12
+ };
13
+ }
14
+ export default MarkdownParagraph;
@@ -0,0 +1,10 @@
1
+ import MarkdownBlockquote from './MarkdownBlockquote';
2
+ import MarkdownCode from './MarkdownCode';
3
+ import MarkdownCodeBlock from './MarkdownCodeBlock';
4
+ import MarkdownHeading from './MarkdownHeading';
5
+ import MarkdownImage from './MarkdownImage';
6
+ import MarkdownLink from './MarkdownLink';
7
+ import MarkdownList from './MarkdownList';
8
+ import MarkdownItem from './MarkdownItem';
9
+ import MarkdownParagraph from './MarkdownParagraph';
10
+ export { MarkdownBlockquote, MarkdownCodeBlock, MarkdownCode, MarkdownHeading, MarkdownImage, MarkdownItem, MarkdownLink, MarkdownList, MarkdownParagraph, };
@@ -8,6 +8,9 @@ declare type ModalRequestCloseHandler = (data: {
8
8
  event: React.MouseEvent<HTMLDivElement> | MouseEvent | KeyboardEvent | TouchEvent;
9
9
  reason: 'clickAway' | 'escapeKey';
10
10
  }) => void;
11
+ declare type ModalInitialFocus = 'first' | 'container' | (React.Component & {
12
+ focus: () => {};
13
+ }) | HTMLElement | null;
11
14
  interface ModalPropsBase {
12
15
  /**
13
16
  * Any renderable children can be passed to the `Modal`.
@@ -16,6 +19,11 @@ interface ModalPropsBase {
16
19
  * `Modal.Header`, `Modal.Body`, and `Modal.Footer`.
17
20
  */
18
21
  children?: React.ReactNode;
22
+ /**
23
+ * Allows focus to be set to a component other than the default.
24
+ * Supports `first` (first focusable element in the modal), `container` (focus the modal itself), or a ref.
25
+ */
26
+ initialFocus?: ModalInitialFocus;
19
27
  /**
20
28
  * Called when a close event occurs. The callback is passed the event
21
29
  * and a reason, which is either 'escapeKey' or 'clickAway'.
@@ -30,17 +38,21 @@ interface ModalPropsBase {
30
38
  */
31
39
  open?: boolean;
32
40
  }
33
- declare const defaultProps: Required<Pick<ModalPropsBase, 'open'>>;
41
+ declare const defaultProps: Required<Pick<ModalPropsBase, 'initialFocus' | 'open'>>;
34
42
  declare type ModalProps = ClassComponentProps<ModalPropsBase, typeof defaultProps, 'div'>;
35
43
  declare class Modal extends Component<ModalProps> {
36
44
  private el;
37
- static propTypes: React.WeakValidationMap<ClassComponentProps<ModalPropsBase, Required<Pick<ModalPropsBase, "open">>, "div", never>>;
38
- static defaultProps: Required<Pick<ModalPropsBase, "open">>;
45
+ private initialFocusTimeoutId;
46
+ private initialFocus;
47
+ static propTypes: React.WeakValidationMap<ClassComponentProps<ModalPropsBase, Required<Pick<ModalPropsBase, "open" | "initialFocus">>, "div", never>>;
48
+ static defaultProps: Required<Pick<ModalPropsBase, "open" | "initialFocus">>;
39
49
  static Header: typeof Header;
40
50
  static Body: typeof Body;
41
51
  static Footer: typeof Footer;
52
+ componentDidUpdate(prevProps: ModalProps): void;
42
53
  private getDefaultMotionStyle;
43
54
  private getMotionStyle;
55
+ private handleInitialFocus;
44
56
  private handleModalMount;
45
57
  private handleModalKeyDown;
46
58
  private handleRequestClose;