@ringcentral/juno 3.0.0-alpha.1 → 3.0.0-alpha.10

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 (60) hide show
  1. package/components/Avatar/styles/StyledAvatarWrapper.d.ts +23 -1
  2. package/components/Avatar/styles/StyledPresenceWrapper.d.ts +4 -2
  3. package/components/Avatar/styles/StyledPresenceWrapper.js +2 -2
  4. package/components/Buttons/Button/Button.d.ts +58 -54
  5. package/components/Buttons/ButtonGroup/ButtonGroup.d.ts +1 -1
  6. package/components/Buttons/IconButton/IconButton.d.ts +63 -59
  7. package/components/Buttons/IconButton/utils/IconButtonUtils.d.ts +1 -1
  8. package/components/Buttons/ToggleButton/ToggleButton.d.ts +5 -1
  9. package/components/Card/CardContent/CardContent.d.ts +1 -1
  10. package/components/Card/CardHeader/CardHeader.d.ts +1 -1
  11. package/components/Card/CardMedia/CardMedia.d.ts +1 -1
  12. package/components/Dialog/DialogActions/DialogActions.d.ts +49 -49
  13. package/components/Dialog/DialogContent/DialogContent.d.ts +1 -1
  14. package/components/Dialog/DialogContentText/DialogContentText.d.ts +3 -3
  15. package/components/Dialog/DialogTitle/DialogTitle.d.ts +1 -1
  16. package/components/Divider/Divider.d.ts +1 -1
  17. package/components/Downshift/SuggestionList/utils/useSuggestionList.d.ts +10 -10
  18. package/components/Downshift/styles/DownshiftStyle.d.ts +63 -59
  19. package/components/Downshift/utils/useDownshift.d.ts +104 -104
  20. package/components/Downshift/utils/useDownshiftTag.d.ts +64 -64
  21. package/components/Forms/Checkbox/Checkbox.d.ts +5 -1
  22. package/components/Forms/FormHelperText/FormHelperText.d.ts +1 -1
  23. package/components/Forms/FormHelperText/styles/StyledFormHelperText.d.ts +1 -1
  24. package/components/Forms/Picker/DatePicker/styles/StyledCalendar.d.ts +4 -2
  25. package/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.d.ts +65 -60
  26. package/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.js +3 -3
  27. package/components/Forms/Picker/DatePicker/utils/DatePickerUtils.d.ts +1 -1
  28. package/components/Forms/Picker/TimePicker/styles/StyledPickerPopperWrap.d.ts +3 -1
  29. package/components/Forms/Picker/TimePicker/styles/StyledSelectionItem.d.ts +13 -1
  30. package/components/Forms/Picker/TimePicker/styles/StyledTimeIconButton.d.ts +13 -1
  31. package/components/Forms/Picker/utils/PickerTextField/PickerTextField.d.ts +1 -1
  32. package/components/Forms/Radio/Radio.d.ts +5 -1
  33. package/components/Forms/TextField/TextField.d.ts +60 -60
  34. package/components/Grid/Grid.d.ts +1 -1
  35. package/components/List/List/List.d.ts +1 -1
  36. package/components/List/ListItem/ListItem.d.ts +54 -50
  37. package/components/Menu/MenuItem/MenuItem.d.ts +113 -51
  38. package/components/Pagination/PaginationItem/PaginationItem.d.ts +2 -2
  39. package/components/PopupBox/PopupBox.js +3 -1
  40. package/components/Table/TableBody/TableBody.d.ts +1 -1
  41. package/components/Table/TableCell/TableCell.d.ts +53 -53
  42. package/components/Table/TableCell/utils/TableCellUtils.d.ts +1 -1
  43. package/components/Table/TableHead/TableHead.d.ts +1 -1
  44. package/components/TablePagination/styles/TablePaginationStyle.d.ts +104 -52
  45. package/components/Tag/Tag.d.ts +1 -1
  46. package/components/Tooltip/withTooltip/withTooltip.d.ts +3 -2
  47. package/components/Tooltip/withTooltip/withTooltip.js +6 -3
  48. package/components/Typography/Typography.d.ts +5 -1
  49. package/components/VirtualizedMenu/VirtualizedDivider/VirtualizedDivider.d.ts +1 -1
  50. package/components/Virtuoso/react-virtuoso/Virtuoso.d.ts +28 -28
  51. package/components/Virtuoso/react-virtuoso/VirtuosoGrid.d.ts +6 -6
  52. package/es6/components/Avatar/styles/StyledPresenceWrapper.js +2 -2
  53. package/es6/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.js +3 -3
  54. package/es6/components/Forms/Picker/TimePicker/styles/StyledSelectionItem.js +1 -1
  55. package/es6/components/PopupBox/PopupBox.js +3 -1
  56. package/es6/components/Tooltip/withTooltip/withTooltip.js +6 -3
  57. package/es6/foundation/styled-components.js +9 -3
  58. package/foundation/styled-components.d.ts +14 -4
  59. package/foundation/styled-components.js +9 -3
  60. package/package.json +2 -2
@@ -37,7 +37,69 @@ type RcMenuItemProps = {
37
37
  */
38
38
  focusVariant?: RcBaseFocusVariant<'highlight' | 'focusRing'>;
39
39
  } & RcMenuItemClassesType & Pick<RcListItemProps, 'color' | 'highlighted' | 'focused'> & WithTooltipProps & RcBaseProps<ComponentProps<typeof MuiMenuItem>, 'classes' | 'title'>;
40
- declare const RcMenuItem: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<Omit<WithTooltipProps<Omit<{
40
+ declare const RcMenuItem: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<{
41
+ title?: NonNullable<React.ReactNode> | undefined;
42
+ useRcTooltip?: boolean | undefined;
43
+ TooltipProps?: Partial<import("../../Tooltip/Tooltip").RcTooltipProps> | undefined;
44
+ } & Omit<Omit<Omit<{
45
+ /** MenuItem size */
46
+ size?: "medium" | "large" | undefined;
47
+ /** The component used for the root node. Either a string to use a HTML element or a component. */
48
+ component?: React.ElementType | undefined;
49
+ /** checked for that should render checked icon */
50
+ type?: RcMenuItemType | undefined;
51
+ /** if type to be `checked`, the checked prop for that should render checked icon */
52
+ checked?: boolean | undefined;
53
+ /** MenuItem with icon, can use `RcListItemIcon` */
54
+ icon?: ReactNode;
55
+ /** pass to the icon, can use RcIcon with symbol prop */
56
+ symbol?: RcIconProps['symbol'];
57
+ /** MenuItem with avatar, can use ListItemAvatar */
58
+ avatar?: React.ReactElement<any, string | React.JSXElementConstructor<any>> | undefined;
59
+ /** MenuItem with subAction, can use ListItemSecondaryAction */
60
+ secondaryAction?: ReactNode;
61
+ /**
62
+ * Set focus style for component.
63
+ *
64
+ * @default 'highlight'
65
+ */
66
+ focusVariant?: "highlight" | "focusRing" | undefined;
67
+ } & RcMenuItemClassesType & Pick<RcListItemProps, "color" | "focused" | "highlighted"> & {
68
+ title?: NonNullable<React.ReactNode> | undefined;
69
+ useRcTooltip?: boolean | undefined;
70
+ TooltipProps?: Partial<import("../../Tooltip/Tooltip").RcTooltipProps> | undefined;
71
+ } & Omit<{}, "title"> & RcBaseProps<{
72
+ button?: true | undefined;
73
+ } & {
74
+ alignItems?: "center" | "flex-start" | undefined;
75
+ autoFocus?: boolean | undefined;
76
+ button?: boolean | undefined;
77
+ ContainerComponent?: React.ElementType<React.HTMLAttributes<HTMLDivElement>, keyof React.JSX.IntrinsicElements> | undefined;
78
+ ContainerProps?: React.HTMLAttributes<HTMLDivElement> | undefined;
79
+ dense?: boolean | undefined;
80
+ disabled?: boolean | undefined;
81
+ disableGutters?: boolean | undefined;
82
+ divider?: boolean | undefined;
83
+ focusVisibleClassName?: string | undefined;
84
+ selected?: boolean | undefined;
85
+ } & {
86
+ action?: React.Ref<import("@material-ui/core").ButtonBaseActions> | undefined;
87
+ buttonRef?: React.Ref<unknown> | undefined;
88
+ centerRipple?: boolean | undefined;
89
+ children?: React.ReactNode;
90
+ disabled?: boolean | undefined;
91
+ disableRipple?: boolean | undefined;
92
+ disableTouchRipple?: boolean | undefined;
93
+ focusRipple?: boolean | undefined;
94
+ focusVisibleClassName?: string | undefined;
95
+ onFocusVisible?: React.FocusEventHandler<any> | undefined;
96
+ tabIndex?: string | number | undefined;
97
+ TouchRippleProps?: Partial<import("@material-ui/core/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
98
+ } & import("@material-ui/core/OverridableComponent").CommonProps<import("@material-ui/core").ExtendButtonBaseTypeMap<import("@material-ui/core/MenuItem").MenuItemTypeMap<{
99
+ button?: true | undefined;
100
+ }, "li">>> & Pick<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
101
+ ref?: ((instance: HTMLLIElement | null) => void) | React.RefObject<HTMLLIElement> | null | undefined;
102
+ }, "ref" | "key" | "suppressHydrationWarning" | "color" | "id" | "lang" | "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" | "slot" | "title" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "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">, "title" | "classes"> & RcMenuItemInnerProps, "ref"> & React.RefAttributes<any>, "ref">, "title"> & React.RefAttributes<any>> & React.ComponentType<WithTooltipProps<Omit<Omit<{
41
103
  /** MenuItem size */
42
104
  size?: "medium" | "large" | undefined;
43
105
  /** The component used for the root node. Either a string to use a HTML element or a component. */
@@ -59,7 +121,7 @@ declare const RcMenuItem: import("styled-components").StyledComponent<React.Forw
59
121
  *
60
122
  * @default 'highlight'
61
123
  */
62
- focusVariant?: "focusRing" | "highlight" | undefined;
124
+ focusVariant?: "highlight" | "focusRing" | undefined;
63
125
  } & RcMenuItemClassesType & Pick<RcListItemProps, "color" | "focused" | "highlighted"> & {
64
126
  title?: NonNullable<React.ReactNode> | undefined;
65
127
  useRcTooltip?: boolean | undefined;
@@ -95,7 +157,7 @@ declare const RcMenuItem: import("styled-components").StyledComponent<React.Forw
95
157
  button?: true | undefined;
96
158
  }, "li">>> & Pick<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & {
97
159
  ref?: ((instance: HTMLLIElement | null) => void) | React.RefObject<HTMLLIElement> | null | undefined;
98
- }, "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "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" | "key">, "classes" | "title"> & RcMenuItemInnerProps, "ref"> & React.RefAttributes<any>>, "ref"> & React.RefAttributes<any>>, import("../../../foundation").RcTheme, {
160
+ }, "ref" | "key" | "suppressHydrationWarning" | "color" | "id" | "lang" | "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" | "slot" | "title" | "translate" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "accessKey" | "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">, "title" | "classes"> & RcMenuItemInnerProps, "ref"> & React.RefAttributes<any>, "ref">>>, import("../../../foundation").RcTheme, {
99
161
  /** The component used for the root node. Either a string to use a HTML element or a component. */
100
162
  component?: React.ElementType | undefined;
101
163
  /** checked for that should render checked icon */
@@ -117,52 +179,14 @@ declare const RcMenuItem: import("styled-components").StyledComponent<React.Forw
117
179
  title?: NonNullable<React.ReactNode> | undefined;
118
180
  useRcTooltip?: boolean | undefined;
119
181
  TooltipProps?: Partial<import("../../Tooltip/Tooltip").RcTooltipProps> | undefined;
120
- children?: React.ReactNode;
121
- defaultChecked?: boolean | undefined;
122
- defaultValue?: string | number | readonly string[] | undefined;
123
- suppressContentEditableWarning?: boolean | undefined;
182
+ ref?: ((instance: HTMLLIElement | null) => void) | React.RefObject<HTMLLIElement> | null | undefined;
183
+ key?: React.Key | null | undefined;
124
184
  suppressHydrationWarning?: boolean | undefined;
125
- accessKey?: string | undefined;
126
- autoFocus?: boolean | undefined;
127
- contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
128
- contextMenu?: string | undefined;
129
- dir?: string | undefined;
130
- draggable?: (boolean | "true" | "false") | undefined;
131
- hidden?: boolean | undefined;
132
185
  id?: string | undefined;
133
186
  lang?: string | undefined;
134
- nonce?: string | undefined;
135
- slot?: string | undefined;
136
- spellCheck?: (boolean | "true" | "false") | undefined;
137
187
  style?: React.CSSProperties | undefined;
138
- tabIndex?: string | number | undefined;
139
- translate?: "yes" | "no" | undefined;
140
- radioGroup?: string | undefined;
141
188
  role?: React.AriaRole | undefined;
142
- about?: string | undefined;
143
- content?: string | undefined;
144
- datatype?: string | undefined;
145
- inlist?: any;
146
- prefix?: string | undefined;
147
- property?: string | undefined;
148
- rel?: string | undefined;
149
- resource?: string | undefined;
150
- rev?: string | undefined;
151
- typeof?: string | undefined;
152
- vocab?: string | undefined;
153
- autoCapitalize?: string | undefined;
154
- autoCorrect?: string | undefined;
155
- autoSave?: string | undefined;
156
- itemProp?: string | undefined;
157
- itemScope?: boolean | undefined;
158
- itemType?: string | undefined;
159
- itemID?: string | undefined;
160
- itemRef?: string | undefined;
161
- results?: number | undefined;
162
- security?: string | undefined;
163
- unselectable?: "on" | "off" | undefined;
164
- inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
165
- is?: string | undefined;
189
+ tabIndex?: string | number | undefined;
166
190
  "aria-activedescendant"?: string | undefined;
167
191
  "aria-atomic"?: (boolean | "true" | "false") | undefined;
168
192
  "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
@@ -175,17 +199,17 @@ declare const RcMenuItem: import("styled-components").StyledComponent<React.Forw
175
199
  "aria-colindextext"?: string | undefined;
176
200
  "aria-colspan"?: number | undefined;
177
201
  "aria-controls"?: string | undefined;
178
- "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
202
+ "aria-current"?: boolean | "date" | "time" | "true" | "false" | "page" | "step" | "location" | undefined;
179
203
  "aria-describedby"?: string | undefined;
180
204
  "aria-description"?: string | undefined;
181
205
  "aria-details"?: string | undefined;
182
206
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
183
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
207
+ "aria-dropeffect"?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
184
208
  "aria-errormessage"?: string | undefined;
185
209
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
186
210
  "aria-flowto"?: string | undefined;
187
211
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
188
- "aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
212
+ "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
189
213
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
190
214
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
191
215
  "aria-keyshortcuts"?: string | undefined;
@@ -216,6 +240,7 @@ declare const RcMenuItem: import("styled-components").StyledComponent<React.Forw
216
240
  "aria-valuemin"?: number | undefined;
217
241
  "aria-valuenow"?: number | undefined;
218
242
  "aria-valuetext"?: string | undefined;
243
+ children?: React.ReactNode;
219
244
  dangerouslySetInnerHTML?: {
220
245
  __html: string | TrustedHTML;
221
246
  } | undefined;
@@ -381,10 +406,47 @@ declare const RcMenuItem: import("styled-components").StyledComponent<React.Forw
381
406
  onAnimationIterationCapture?: React.AnimationEventHandler<HTMLLIElement> | undefined;
382
407
  onTransitionEnd?: React.TransitionEventHandler<HTMLLIElement> | undefined;
383
408
  onTransitionEndCapture?: React.TransitionEventHandler<HTMLLIElement> | undefined;
409
+ slot?: string | undefined;
410
+ translate?: "no" | "yes" | undefined;
411
+ defaultChecked?: boolean | undefined;
412
+ defaultValue?: string | number | readonly string[] | undefined;
413
+ suppressContentEditableWarning?: boolean | undefined;
414
+ accessKey?: string | undefined;
415
+ autoFocus?: boolean | undefined;
416
+ contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
417
+ contextMenu?: string | undefined;
418
+ dir?: string | undefined;
419
+ draggable?: (boolean | "true" | "false") | undefined;
420
+ hidden?: boolean | undefined;
421
+ nonce?: string | undefined;
422
+ spellCheck?: (boolean | "true" | "false") | undefined;
423
+ radioGroup?: string | undefined;
424
+ about?: string | undefined;
425
+ content?: string | undefined;
426
+ datatype?: string | undefined;
427
+ inlist?: any;
428
+ prefix?: string | undefined;
429
+ property?: string | undefined;
430
+ rel?: string | undefined;
431
+ resource?: string | undefined;
432
+ rev?: string | undefined;
433
+ typeof?: string | undefined;
434
+ vocab?: string | undefined;
435
+ autoCapitalize?: string | undefined;
436
+ autoCorrect?: string | undefined;
437
+ autoSave?: string | undefined;
438
+ itemProp?: string | undefined;
439
+ itemScope?: boolean | undefined;
440
+ itemType?: string | undefined;
441
+ itemID?: string | undefined;
442
+ itemRef?: string | undefined;
443
+ results?: number | undefined;
444
+ security?: string | undefined;
445
+ unselectable?: "off" | "on" | undefined;
446
+ inputMode?: "search" | "text" | "none" | "email" | "tel" | "url" | "numeric" | "decimal" | undefined;
447
+ is?: string | undefined;
384
448
  value?: string | number | readonly string[] | undefined;
385
449
  innerRef?: React.Ref<any> | undefined;
386
- ref?: ((instance: HTMLLIElement | null) => void) | React.RefObject<HTMLLIElement> | null | undefined;
387
- key?: React.Key | null | undefined;
388
450
  disabled?: boolean | undefined;
389
451
  action?: React.Ref<import("@material-ui/core").ButtonBaseActions> | undefined;
390
452
  buttonRef?: React.Ref<unknown> | undefined;
@@ -404,7 +466,7 @@ declare const RcMenuItem: import("styled-components").StyledComponent<React.Forw
404
466
  disableGutters?: boolean | undefined;
405
467
  size: "medium" | "large";
406
468
  button: true;
407
- focusVariant: "focusRing" | "highlight";
408
- }, "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" | "innerRef" | "ref" | "button" | "type" | "key" | "icon" | "useRcTooltip" | "TooltipProps" | "disabled" | "action" | "buttonRef" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "onFocusVisible" | "TouchRippleProps" | "component" | "focusVariant" | "avatar" | "divider" | "selected" | "checked" | "focused" | "dense" | "alignItems" | "ContainerComponent" | "ContainerProps" | "disableGutters" | "secondaryAction" | "highlighted">;
469
+ focusVariant: "highlight" | "focusRing";
470
+ }, "symbol" | "ref" | "key" | "suppressHydrationWarning" | "color" | "id" | "lang" | "style" | "type" | "role" | "tabIndex" | "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" | "button" | "slot" | "title" | "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" | "innerRef" | "icon" | "useRcTooltip" | "TooltipProps" | "disabled" | "action" | "buttonRef" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "onFocusVisible" | "TouchRippleProps" | "component" | "focusVariant" | "avatar" | "divider" | "selected" | "checked" | "focused" | "dense" | "alignItems" | "ContainerComponent" | "ContainerProps" | "disableGutters" | "secondaryAction" | "highlighted">;
409
471
  export { RcMenuItem };
410
472
  export type { RcMenuItemClassesType, RcMenuItemProps, RcMenuItemSize, RcMenuItemType, };
@@ -15,10 +15,10 @@ declare const RcPaginationItem: import("@material-ui/core/OverridableComponent")
15
15
  selected?: boolean | undefined;
16
16
  shape?: "round" | "rounded" | undefined;
17
17
  size?: "small" | "medium" | "large" | undefined;
18
- type?: "page" | "first" | "last" | "next" | "previous" | "start-ellipsis" | "end-ellipsis" | undefined;
18
+ type?: "page" | "previous" | "first" | "last" | "next" | "start-ellipsis" | "end-ellipsis" | undefined;
19
19
  variant?: "text" | "outlined" | undefined;
20
20
  } & import("@material-ui/core/OverridableComponent").CommonProps<import("@material-ui/lab/PaginationItem").PaginationItemTypeMap<{}, "div">> & Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
21
21
  ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
22
- }, "children" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "slot" | "spellCheck" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "content" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "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" | "ref" | "key">>>;
22
+ }, "ref" | "key" | "suppressHydrationWarning" | "id" | "lang" | "role" | "tabIndex" | "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" | "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">>>;
23
23
  export { RcPaginationItem };
24
24
  export type { RcPaginationItemProps };
@@ -29,7 +29,9 @@ var _RcPopupBox = (0, react_1.forwardRef)(function (inProps, ref) {
29
29
  react_1.default.createElement(Dialog_1.RcDialogTitle, tslib_1.__assign({ "data-test-automation-id": 'DialogTitle' }, TitleProps), title),
30
30
  react_1.default.createElement(Dialog_1.RcDialogContent, tslib_1.__assign({ "data-test-automation-id": 'DialogContent' }, ContentProps), typeof children === 'string' ? (react_1.default.createElement(Dialog_1.RcDialogContentText, null, children)) : (children)),
31
31
  footer !== null && (react_1.default.createElement(Dialog_1.RcDialogActions, tslib_1.__assign({ "data-test-automation-id": 'DialogActions' }, ActionsProps), footer || (react_1.default.createElement(react_1.default.Fragment, null,
32
- cancelButtonText && (react_1.default.createElement(Button_1.RcButton, tslib_1.__assign({ fullWidth: isXsmall, variant: "text", onClick: function (e) { return onCancel === null || onCancel === void 0 ? void 0 : onCancel(e, 'cancelClick'); }, "data-test-automation-id": "DialogCancelButton", disabled: loading }, cancelButtonProps), cancelButtonText)),
32
+ cancelButtonText && (react_1.default.createElement(Button_1.RcButton, tslib_1.__assign({ fullWidth: isXsmall, variant: "text", onClick: function (e) {
33
+ return onCancel === null || onCancel === void 0 ? void 0 : onCancel(e, 'cancelClick');
34
+ }, "data-test-automation-id": "DialogCancelButton", disabled: loading }, cancelButtonProps), cancelButtonText)),
33
35
  confirmButtonText && (react_1.default.createElement(Button_1.RcButton, tslib_1.__assign({ fullWidth: isXsmall, onClick: onConfirm, variant: "contained", "data-test-automation-id": "DialogOKButton", disabled: loading, loading: loading }, confirmButtonProps), confirmButtonText)))))))));
34
36
  });
35
37
  /**
@@ -4,5 +4,5 @@ import { RcBaseProps } from '../../../foundation';
4
4
  type RcTableBodyProps = {} & RcBaseProps<ComponentProps<typeof MuiTableBody>>;
5
5
  declare const RcTableBody: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<Omit<RcBaseProps<import("@material-ui/core/OverridableComponent").CommonProps<import("@material-ui/core").TableHeadTypeMap<{}, "thead">> & Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & {
6
6
  ref?: ((instance: HTMLTableSectionElement | null) => void) | React.RefObject<HTMLTableSectionElement> | null | undefined;
7
- }, "children" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "slot" | "spellCheck" | "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" | "ref" | "key">>, "ref"> & React.RefAttributes<any>>, import("../../../foundation").RcTheme, {}, never>;
7
+ }, "ref" | "key" | "suppressHydrationWarning" | "color" | "id" | "lang" | "role" | "tabIndex" | "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" | "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">>, "ref"> & React.RefAttributes<any>>, import("../../../foundation").RcTheme, {}, never>;
8
8
  export { RcTableBody, RcTableBodyProps };
@@ -31,56 +31,18 @@ declare const RcTableCell: import("styled-components").StyledComponent<React.For
31
31
  /**
32
32
  * Override or extend the styles applied to the component.
33
33
  */
34
- classes?: Partial<Record<"root" | "body" | "footer" | "head" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "paddingCheckbox" | "paddingNone" | "stickyHeader" | "activeSort" | "sortIcon" | "sortButton", string>> | undefined;
35
- children?: React.ReactNode;
36
- defaultChecked?: boolean | undefined;
37
- defaultValue?: string | number | readonly string[] | undefined;
38
- suppressContentEditableWarning?: boolean | undefined;
34
+ classes?: Partial<Record<"body" | "footer" | "head" | "root" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "paddingCheckbox" | "paddingNone" | "stickyHeader" | "activeSort" | "sortIcon" | "sortButton", string>> | undefined;
35
+ ref?: React.Ref<unknown> | undefined;
39
36
  suppressHydrationWarning?: boolean | undefined;
40
- accessKey?: string | undefined;
41
- autoFocus?: boolean | undefined;
42
37
  className?: string | undefined;
43
- contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
44
- contextMenu?: string | undefined;
45
- dir?: string | undefined;
46
- draggable?: (boolean | "true" | "false") | undefined;
47
- hidden?: boolean | undefined;
38
+ color?: string | undefined;
39
+ height?: string | number | undefined;
48
40
  id?: string | undefined;
49
41
  lang?: string | undefined;
50
- nonce?: string | undefined;
51
- slot?: string | undefined;
52
- spellCheck?: (boolean | "true" | "false") | undefined;
53
42
  style?: React.CSSProperties | undefined;
54
- tabIndex?: number | undefined;
55
- title?: string | undefined;
56
- translate?: "yes" | "no" | undefined;
57
- radioGroup?: string | undefined;
43
+ width?: string | number | undefined;
58
44
  role?: React.AriaRole | undefined;
59
- about?: string | undefined;
60
- content?: string | undefined;
61
- datatype?: string | undefined;
62
- inlist?: any;
63
- prefix?: string | undefined;
64
- property?: string | undefined;
65
- rel?: string | undefined;
66
- resource?: string | undefined;
67
- rev?: string | undefined;
68
- typeof?: string | undefined;
69
- vocab?: string | undefined;
70
- autoCapitalize?: string | undefined;
71
- autoCorrect?: string | undefined;
72
- autoSave?: string | undefined;
73
- color?: string | undefined;
74
- itemProp?: string | undefined;
75
- itemScope?: boolean | undefined;
76
- itemType?: string | undefined;
77
- itemID?: string | undefined;
78
- itemRef?: string | undefined;
79
- results?: number | undefined;
80
- security?: string | undefined;
81
- unselectable?: "on" | "off" | undefined;
82
- inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
83
- is?: string | undefined;
45
+ tabIndex?: number | undefined;
84
46
  "aria-activedescendant"?: string | undefined;
85
47
  "aria-atomic"?: (boolean | "true" | "false") | undefined;
86
48
  "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
@@ -93,17 +55,17 @@ declare const RcTableCell: import("styled-components").StyledComponent<React.For
93
55
  "aria-colindextext"?: string | undefined;
94
56
  "aria-colspan"?: number | undefined;
95
57
  "aria-controls"?: string | undefined;
96
- "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
58
+ "aria-current"?: boolean | "date" | "time" | "true" | "false" | "page" | "step" | "location" | undefined;
97
59
  "aria-describedby"?: string | undefined;
98
60
  "aria-description"?: string | undefined;
99
61
  "aria-details"?: string | undefined;
100
62
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
101
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
63
+ "aria-dropeffect"?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
102
64
  "aria-errormessage"?: string | undefined;
103
65
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
104
66
  "aria-flowto"?: string | undefined;
105
67
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
106
- "aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
68
+ "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
107
69
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
108
70
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
109
71
  "aria-keyshortcuts"?: string | undefined;
@@ -134,6 +96,7 @@ declare const RcTableCell: import("styled-components").StyledComponent<React.For
134
96
  "aria-valuemin"?: number | undefined;
135
97
  "aria-valuenow"?: number | undefined;
136
98
  "aria-valuetext"?: string | undefined;
99
+ children?: React.ReactNode;
137
100
  dangerouslySetInnerHTML?: {
138
101
  __html: string | TrustedHTML;
139
102
  } | undefined;
@@ -299,19 +262,56 @@ declare const RcTableCell: import("styled-components").StyledComponent<React.For
299
262
  onAnimationIterationCapture?: (React.AnimationEventHandler<HTMLTableHeaderCellElement> & React.AnimationEventHandler<HTMLTableDataCellElement>) | undefined;
300
263
  onTransitionEnd?: (React.TransitionEventHandler<HTMLTableHeaderCellElement> & React.TransitionEventHandler<HTMLTableDataCellElement>) | undefined;
301
264
  onTransitionEndCapture?: (React.TransitionEventHandler<HTMLTableHeaderCellElement> & React.TransitionEventHandler<HTMLTableDataCellElement>) | undefined;
265
+ abbr?: string | undefined;
266
+ slot?: string | undefined;
267
+ title?: string | undefined;
268
+ translate?: "no" | "yes" | undefined;
269
+ defaultChecked?: boolean | undefined;
270
+ defaultValue?: string | number | readonly string[] | undefined;
271
+ suppressContentEditableWarning?: boolean | undefined;
272
+ accessKey?: string | undefined;
273
+ autoFocus?: boolean | undefined;
274
+ contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
275
+ contextMenu?: string | undefined;
276
+ dir?: string | undefined;
277
+ draggable?: (boolean | "true" | "false") | undefined;
278
+ hidden?: boolean | undefined;
279
+ nonce?: string | undefined;
280
+ spellCheck?: (boolean | "true" | "false") | undefined;
281
+ radioGroup?: string | undefined;
282
+ about?: string | undefined;
283
+ content?: string | undefined;
284
+ datatype?: string | undefined;
285
+ inlist?: any;
286
+ prefix?: string | undefined;
287
+ property?: string | undefined;
288
+ rel?: string | undefined;
289
+ resource?: string | undefined;
290
+ rev?: string | undefined;
291
+ typeof?: string | undefined;
292
+ vocab?: string | undefined;
293
+ autoCapitalize?: string | undefined;
294
+ autoCorrect?: string | undefined;
295
+ autoSave?: string | undefined;
296
+ itemProp?: string | undefined;
297
+ itemScope?: boolean | undefined;
298
+ itemType?: string | undefined;
299
+ itemID?: string | undefined;
300
+ itemRef?: string | undefined;
301
+ results?: number | undefined;
302
+ security?: string | undefined;
303
+ unselectable?: "off" | "on" | undefined;
304
+ inputMode?: "search" | "text" | "none" | "email" | "tel" | "url" | "numeric" | "decimal" | undefined;
305
+ is?: string | undefined;
302
306
  variant?: "body" | "footer" | "head" | undefined;
303
307
  innerRef?: React.Ref<any> | undefined;
304
- ref?: React.Ref<unknown> | undefined;
305
- abbr?: string | undefined;
306
308
  component?: React.ElementType<import("@material-ui/core/TableCell").TableCellBaseProps, keyof React.JSX.IntrinsicElements> | undefined;
307
- height?: string | number | undefined;
308
- width?: string | number | undefined;
309
309
  align?: "center" | "inherit" | "left" | "right" | "justify" | undefined;
310
310
  colSpan?: number | undefined;
311
311
  headers?: string | undefined;
312
312
  rowSpan?: number | undefined;
313
313
  scope?: string | undefined;
314
- valign?: "bottom" | "top" | "baseline" | "middle" | undefined;
314
+ valign?: "baseline" | "middle" | "bottom" | "top" | undefined;
315
315
  padding?: import("@material-ui/core/TableCell").Padding | undefined;
316
- }, "classes" | "children" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "className" | "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" | "variant" | "innerRef" | "ref" | "abbr" | "component" | "height" | "width" | "align" | "colSpan" | "headers" | "rowSpan" | "scope" | "valign" | "padding" | "sortDirection" | "activeSort">;
316
+ }, "ref" | "suppressHydrationWarning" | "className" | "color" | "height" | "id" | "lang" | "style" | "width" | "role" | "tabIndex" | "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" | "abbr" | "slot" | "title" | "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" | "variant" | "innerRef" | "component" | "align" | "colSpan" | "headers" | "rowSpan" | "scope" | "valign" | "padding" | "sortDirection" | "activeSort">;
317
317
  export { RcTableCell, RcTableCellProps };
@@ -1 +1 @@
1
- export declare const RcTableCellClasses: Partial<import("../../../../foundation").UnitMap<"root" | "body" | "footer" | "head" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "paddingCheckbox" | "paddingNone" | "stickyHeader" | "activeSort" | "sortIcon" | "sortButton", any>>;
1
+ export declare const RcTableCellClasses: Partial<import("../../../../foundation").UnitMap<"body" | "footer" | "head" | "root" | "alignLeft" | "alignCenter" | "alignRight" | "alignJustify" | "paddingCheckbox" | "paddingNone" | "stickyHeader" | "activeSort" | "sortIcon" | "sortButton", any>>;