@ringcentral/juno 3.0.0-alpha.1 → 3.0.0-alpha.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 (36) hide show
  1. package/components/Buttons/Button/Button.d.ts +53 -53
  2. package/components/Buttons/ButtonGroup/ButtonGroup.d.ts +1 -1
  3. package/components/Buttons/IconButton/IconButton.d.ts +58 -58
  4. package/components/Buttons/IconButton/utils/IconButtonUtils.d.ts +1 -1
  5. package/components/Card/CardContent/CardContent.d.ts +1 -1
  6. package/components/Card/CardHeader/CardHeader.d.ts +1 -1
  7. package/components/Card/CardMedia/CardMedia.d.ts +1 -1
  8. package/components/Dialog/DialogActions/DialogActions.d.ts +49 -49
  9. package/components/Dialog/DialogContent/DialogContent.d.ts +1 -1
  10. package/components/Dialog/DialogContentText/DialogContentText.d.ts +3 -3
  11. package/components/Dialog/DialogTitle/DialogTitle.d.ts +1 -1
  12. package/components/Divider/Divider.d.ts +1 -1
  13. package/components/Downshift/SuggestionList/utils/useSuggestionList.d.ts +10 -10
  14. package/components/Downshift/styles/DownshiftStyle.d.ts +58 -58
  15. package/components/Downshift/utils/useDownshift.d.ts +104 -104
  16. package/components/Downshift/utils/useDownshiftTag.d.ts +64 -64
  17. package/components/Forms/FormHelperText/FormHelperText.d.ts +1 -1
  18. package/components/Forms/FormHelperText/styles/StyledFormHelperText.d.ts +1 -1
  19. package/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.d.ts +58 -58
  20. package/components/Forms/Picker/utils/PickerTextField/PickerTextField.d.ts +1 -1
  21. package/components/Forms/TextField/TextField.d.ts +56 -56
  22. package/components/Grid/Grid.d.ts +1 -1
  23. package/components/List/List/List.d.ts +1 -1
  24. package/components/List/ListItem/ListItem.d.ts +49 -49
  25. package/components/Menu/MenuItem/MenuItem.d.ts +50 -50
  26. package/components/Pagination/PaginationItem/PaginationItem.d.ts +2 -2
  27. package/components/Table/TableBody/TableBody.d.ts +1 -1
  28. package/components/Table/TableCell/TableCell.d.ts +53 -53
  29. package/components/Table/TableCell/utils/TableCellUtils.d.ts +1 -1
  30. package/components/Table/TableHead/TableHead.d.ts +1 -1
  31. package/components/TablePagination/styles/TablePaginationStyle.d.ts +50 -50
  32. package/components/Tag/Tag.d.ts +1 -1
  33. package/components/VirtualizedMenu/VirtualizedDivider/VirtualizedDivider.d.ts +1 -1
  34. package/components/Virtuoso/react-virtuoso/Virtuoso.d.ts +25 -25
  35. package/components/Virtuoso/react-virtuoso/VirtuosoGrid.d.ts +6 -6
  36. package/package.json +2 -2
@@ -6,52 +6,18 @@ export declare const ArrowDownButton: import("styled-components").StyledComponen
6
6
  title?: NonNullable<import("react").ReactNode> | undefined;
7
7
  TooltipProps?: Partial<import("../../Tooltip/Tooltip").RcTooltipProps> | undefined;
8
8
  symbol?: import("../../Icon/Icon").SvgSymbol | undefined;
9
- children?: import("react").ReactNode;
10
- defaultChecked?: boolean | undefined;
11
- defaultValue?: string | number | readonly string[] | undefined;
12
- suppressContentEditableWarning?: boolean | undefined;
9
+ ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
10
+ key?: import("react").Key | null | undefined;
13
11
  suppressHydrationWarning?: boolean | undefined;
14
- accessKey?: string | undefined;
15
- autoFocus?: boolean | undefined;
16
- contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
17
- contextMenu?: string | undefined;
18
- dir?: string | undefined;
19
- draggable?: (boolean | "true" | "false") | undefined;
20
- hidden?: boolean | undefined;
21
12
  id?: string | undefined;
22
13
  lang?: string | undefined;
23
- nonce?: string | undefined;
24
- slot?: string | undefined;
25
- spellCheck?: (boolean | "true" | "false") | undefined;
14
+ name?: string | undefined;
26
15
  style?: import("react").CSSProperties | undefined;
27
- tabIndex?: string | number | undefined;
28
- translate?: "yes" | "no" | undefined;
29
- radioGroup?: string | undefined;
30
16
  role?: import("react").AriaRole | undefined;
31
- about?: string | undefined;
32
- content?: string | undefined;
33
- datatype?: string | undefined;
34
- inlist?: any;
35
- prefix?: string | undefined;
36
- property?: string | undefined;
37
- rel?: string | undefined;
38
- resource?: string | undefined;
39
- rev?: string | undefined;
40
- typeof?: string | undefined;
41
- vocab?: string | undefined;
42
- autoCapitalize?: string | undefined;
43
- autoCorrect?: string | undefined;
44
- autoSave?: string | undefined;
45
- itemProp?: string | undefined;
46
- itemScope?: boolean | undefined;
47
- itemType?: string | undefined;
48
- itemID?: string | undefined;
49
- itemRef?: string | undefined;
50
- results?: number | undefined;
51
- security?: string | undefined;
52
- unselectable?: "on" | "off" | undefined;
53
- inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
54
- is?: string | undefined;
17
+ tabIndex?: string | number | undefined;
18
+ elevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
19
+ href?: string | undefined;
20
+ radius?: "circle" | "round" | "sm" | "md" | "lg" | "xl" | "xxl" | "zero" | undefined;
55
21
  "aria-activedescendant"?: string | undefined;
56
22
  "aria-atomic"?: (boolean | "true" | "false") | undefined;
57
23
  "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
@@ -64,17 +30,17 @@ export declare const ArrowDownButton: import("styled-components").StyledComponen
64
30
  "aria-colindextext"?: string | undefined;
65
31
  "aria-colspan"?: number | undefined;
66
32
  "aria-controls"?: string | undefined;
67
- "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
33
+ "aria-current"?: boolean | "date" | "time" | "true" | "false" | "page" | "step" | "location" | undefined;
68
34
  "aria-describedby"?: string | undefined;
69
35
  "aria-description"?: string | undefined;
70
36
  "aria-details"?: string | undefined;
71
37
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
72
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
38
+ "aria-dropeffect"?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
73
39
  "aria-errormessage"?: string | undefined;
74
40
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
75
41
  "aria-flowto"?: string | undefined;
76
42
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
77
- "aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
43
+ "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
78
44
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
79
45
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
80
46
  "aria-keyshortcuts"?: string | undefined;
@@ -105,6 +71,7 @@ export declare const ArrowDownButton: import("styled-components").StyledComponen
105
71
  "aria-valuemin"?: number | undefined;
106
72
  "aria-valuenow"?: number | undefined;
107
73
  "aria-valuetext"?: string | undefined;
74
+ children?: import("react").ReactNode;
108
75
  dangerouslySetInnerHTML?: {
109
76
  __html: string | TrustedHTML;
110
77
  } | undefined;
@@ -270,20 +237,54 @@ export declare const ArrowDownButton: import("styled-components").StyledComponen
270
237
  onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
271
238
  onTransitionEnd?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
272
239
  onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
240
+ form?: string | undefined;
241
+ slot?: string | undefined;
242
+ download?: boolean | undefined;
243
+ translate?: "no" | "yes" | undefined;
244
+ defaultChecked?: boolean | undefined;
245
+ defaultValue?: string | number | readonly string[] | undefined;
246
+ suppressContentEditableWarning?: boolean | undefined;
247
+ accessKey?: string | undefined;
248
+ autoFocus?: boolean | undefined;
249
+ contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
250
+ contextMenu?: string | undefined;
251
+ dir?: string | undefined;
252
+ draggable?: (boolean | "true" | "false") | undefined;
253
+ hidden?: boolean | undefined;
254
+ nonce?: string | undefined;
255
+ spellCheck?: (boolean | "true" | "false") | undefined;
256
+ radioGroup?: string | undefined;
257
+ about?: string | undefined;
258
+ content?: string | undefined;
259
+ datatype?: string | undefined;
260
+ inlist?: any;
261
+ prefix?: string | undefined;
262
+ property?: string | undefined;
263
+ rel?: string | undefined;
264
+ resource?: string | undefined;
265
+ rev?: string | undefined;
266
+ typeof?: string | undefined;
267
+ vocab?: string | undefined;
268
+ autoCapitalize?: string | undefined;
269
+ autoCorrect?: string | undefined;
270
+ autoSave?: string | undefined;
271
+ itemProp?: string | undefined;
272
+ itemScope?: boolean | undefined;
273
+ itemType?: string | undefined;
274
+ itemID?: string | undefined;
275
+ itemRef?: string | undefined;
276
+ results?: number | undefined;
277
+ security?: string | undefined;
278
+ unselectable?: "off" | "on" | undefined;
279
+ inputMode?: "search" | "text" | "none" | "email" | "tel" | "url" | "numeric" | "decimal" | undefined;
280
+ is?: string | undefined;
273
281
  value?: string | number | readonly string[] | undefined;
274
282
  innerRef?: import("react").Ref<any> | undefined;
275
- ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
276
- radius?: "circle" | "sm" | "md" | "lg" | "xl" | "round" | "xxl" | "zero" | undefined;
277
- form?: string | undefined;
278
- name?: string | undefined;
279
- key?: import("react").Key | null | undefined;
280
283
  iconColor?: import("../../../foundation").RcPaletteProp | undefined;
281
284
  iconSize?: import("../..").IconSize | undefined;
282
285
  loading?: boolean | undefined;
283
286
  CircularProgressProps?: import("../../Progress/CircularProgress/CircularProgress").RcCircularProgressProps | undefined;
284
287
  tooltipForceHide?: boolean | undefined;
285
- download?: boolean | undefined;
286
- href?: string | undefined;
287
288
  disabled?: boolean | undefined;
288
289
  formAction?: string | undefined;
289
290
  formEncType?: string | undefined;
@@ -308,7 +309,6 @@ export declare const ArrowDownButton: import("styled-components").StyledComponen
308
309
  shouldPersistBg?: boolean | undefined;
309
310
  stretchIcon?: boolean | undefined;
310
311
  useColorWhenDisabled?: boolean | undefined;
311
- elevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
312
312
  activeElevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
313
313
  disabledFakeBorder?: boolean | undefined;
314
314
  IconProps?: import("../../Icon/Icon").RcIconProps | undefined;
@@ -319,9 +319,9 @@ export declare const ArrowDownButton: import("styled-components").StyledComponen
319
319
  type: "button" | "reset" | "submit";
320
320
  focusRipple: boolean;
321
321
  disableTouchRipple: boolean;
322
- classes: Partial<import("@material-ui/styles").ClassNameMap<"icon" | "round" | "inverse" | "outline" | "invisible" | "contained" | "persistBg">> & Partial<import("@material-ui/styles").ClassNameMap<import("@material-ui/core").ButtonBaseClassKey>>;
322
+ classes: Partial<import("@material-ui/styles").ClassNameMap<"round" | "icon" | "inverse" | "outline" | "invisible" | "contained" | "persistBg">> & Partial<import("@material-ui/styles").ClassNameMap<import("@material-ui/core").ButtonBaseClassKey>>;
323
323
  useRcTooltip: boolean;
324
- focusVariant: "focusRing" | "highlight";
324
+ focusVariant: "highlight" | "focusRing";
325
325
  } & {
326
326
  variant?: import("../../Buttons/IconButton/IconButton").RcIconButtonVariant | undefined;
327
327
  size?: import("../../Buttons/IconButton/IconButton").RcIconButtonSize | undefined;
@@ -329,13 +329,13 @@ export declare const ArrowDownButton: import("styled-components").StyledComponen
329
329
  invisible?: boolean | undefined;
330
330
  stretchIcon?: boolean | undefined;
331
331
  useColorWhenDisabled?: boolean | undefined;
332
- radius?: "circle" | "sm" | "md" | "lg" | "xl" | "round" | "xxl" | "zero" | undefined;
332
+ radius?: "circle" | "round" | "sm" | "md" | "lg" | "xl" | "xxl" | "zero" | undefined;
333
333
  elevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
334
334
  activeElevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
335
335
  disabledFakeBorder?: boolean | undefined;
336
336
  IconProps?: import("../../Icon/Icon").RcIconProps | undefined;
337
- focusVariant?: "focusRing" | "highlight" | undefined;
338
- } & import("../../Buttons/IconButton/deprecated/IconButtonProps").RcIconButtonDeprecatedProps & Pick<import("../../Icon/Icon").RcIconProps, "symbol" | "color" | "iconColor" | "iconSize" | "loading" | "CircularProgressProps"> & import("../../../foundation").RcClassesProps<"icon" | "round" | "inverse" | "outline" | "invisible" | "contained" | "persistBg"> & import("../../../foundation").RcBaseProps<{
337
+ focusVariant?: "highlight" | "focusRing" | undefined;
338
+ } & import("../../Buttons/IconButton/deprecated/IconButtonProps").RcIconButtonDeprecatedProps & Pick<import("../../Icon/Icon").RcIconProps, "symbol" | "color" | "iconColor" | "iconSize" | "loading" | "CircularProgressProps"> & import("../../../foundation").RcClassesProps<"round" | "icon" | "inverse" | "outline" | "invisible" | "contained" | "persistBg"> & import("../../../foundation").RcBaseProps<{
339
339
  action?: import("react").Ref<import("@material-ui/core").ButtonBaseActions> | undefined;
340
340
  buttonRef?: import("react").Ref<unknown> | undefined;
341
341
  centerRipple?: boolean | undefined;
@@ -350,6 +350,6 @@ export declare const ArrowDownButton: import("styled-components").StyledComponen
350
350
  TouchRippleProps?: Partial<import("@material-ui/core/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
351
351
  } & import("@material-ui/core/OverridableComponent").CommonProps<import("@material-ui/core").ExtendButtonBaseTypeMap<import("@material-ui/core").ButtonBaseTypeMap<{}, "button">>> & Pick<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
352
352
  ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
353
- }, "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "slot" | "spellCheck" | "title" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "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-rowindextext" | "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" | "onChange" | "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" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "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" | "value" | "ref" | "form" | "type" | "name" | "key" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget">, "color">, "symbol" | "classes" | "children" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "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-rowindextext" | "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" | "onChange" | "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" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "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" | "size" | "value" | "variant" | "innerRef" | "ref" | "radius" | "form" | "type" | "name" | "key" | "iconColor" | "iconSize" | "loading" | "CircularProgressProps" | "tooltipForceHide" | "useRcTooltip" | "TooltipProps" | "download" | "href" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "action" | "buttonRef" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "onFocusVisible" | "TouchRippleProps" | "invisible" | "tooltipTitle" | "tooltipPlacement" | "disableToolTip" | "popperProps" | "externalLink" | "ariaLabel" | "aRef" | "shouldPersistBg" | "stretchIcon" | "useColorWhenDisabled" | "elevation" | "activeElevation" | "disabledFakeBorder" | "IconProps" | "focusVariant" | "alwaysEnableTooltip">;
353
+ }, "ref" | "key" | "suppressHydrationWarning" | "color" | "id" | "lang" | "name" | "type" | "role" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "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-rowindextext" | "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" | "onChange" | "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" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "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" | "form" | "slot" | "title" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "nonce" | "spellCheck" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "value" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget">, "color">, "symbol" | "ref" | "key" | "suppressHydrationWarning" | "color" | "id" | "lang" | "name" | "style" | "type" | "role" | "tabIndex" | "elevation" | "href" | "radius" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "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-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "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" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "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" | "form" | "slot" | "title" | "download" | "translate" | "classes" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "nonce" | "spellCheck" | "radioGroup" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "size" | "value" | "variant" | "innerRef" | "iconColor" | "iconSize" | "loading" | "CircularProgressProps" | "tooltipForceHide" | "useRcTooltip" | "TooltipProps" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "action" | "buttonRef" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "onFocusVisible" | "TouchRippleProps" | "invisible" | "tooltipTitle" | "tooltipPlacement" | "disableToolTip" | "popperProps" | "externalLink" | "ariaLabel" | "aRef" | "shouldPersistBg" | "stretchIcon" | "useColorWhenDisabled" | "activeElevation" | "disabledFakeBorder" | "IconProps" | "focusVariant" | "alwaysEnableTooltip">;
354
354
  export declare const EndAdornment: import("styled-components").StyledComponent<"div", import("../../../foundation").RcTheme, {}, never>;
355
355
  export declare const DownshiftStyle: RcThemedStyled<RcDownshiftProps, any>;