@ringcentral/juno 3.0.0-alpha.0 → 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.
- package/components/Buttons/Button/Button.d.ts +53 -53
- package/components/Buttons/ButtonGroup/ButtonGroup.d.ts +1 -1
- package/components/Buttons/IconButton/IconButton.d.ts +58 -58
- package/components/Buttons/IconButton/utils/IconButtonUtils.d.ts +1 -1
- package/components/Card/CardContent/CardContent.d.ts +1 -1
- package/components/Card/CardHeader/CardHeader.d.ts +1 -1
- package/components/Card/CardMedia/CardMedia.d.ts +1 -1
- package/components/Dialog/DialogActions/DialogActions.d.ts +49 -49
- package/components/Dialog/DialogContent/DialogContent.d.ts +1 -1
- package/components/Dialog/DialogContentText/DialogContentText.d.ts +3 -3
- package/components/Dialog/DialogTitle/DialogTitle.d.ts +1 -1
- package/components/Divider/Divider.d.ts +1 -1
- package/components/Downshift/SuggestionList/utils/useSuggestionList.d.ts +10 -10
- package/components/Downshift/styles/DownshiftStyle.d.ts +58 -58
- package/components/Downshift/utils/useDownshift.d.ts +104 -104
- package/components/Downshift/utils/useDownshiftTag.d.ts +64 -64
- package/components/Forms/FormHelperText/FormHelperText.d.ts +1 -1
- package/components/Forms/FormHelperText/styles/StyledFormHelperText.d.ts +1 -1
- package/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.d.ts +58 -58
- package/components/Forms/Picker/utils/PickerTextField/PickerTextField.d.ts +1 -1
- package/components/Forms/TextField/TextField.d.ts +56 -56
- package/components/Grid/Grid.d.ts +1 -1
- package/components/List/List/List.d.ts +1 -1
- package/components/List/ListItem/ListItem.d.ts +49 -49
- package/components/Menu/MenuItem/MenuItem.d.ts +50 -50
- package/components/Pagination/PaginationItem/PaginationItem.d.ts +2 -2
- package/components/Table/TableBody/TableBody.d.ts +1 -1
- package/components/Table/TableCell/TableCell.d.ts +53 -53
- package/components/Table/TableCell/utils/TableCellUtils.d.ts +1 -1
- package/components/Table/TableHead/TableHead.d.ts +1 -1
- package/components/TablePagination/styles/TablePaginationStyle.d.ts +50 -50
- package/components/Tag/Tag.d.ts +1 -1
- package/components/Transitions/ZoomFrom/ZoomFrom.js +1 -7
- package/components/Transitions/ZoomInFadeOut/ZoomInFadeOut.js +4 -7
- package/components/VirtualizedMenu/VirtualizedDivider/VirtualizedDivider.d.ts +1 -1
- package/components/Virtuoso/react-virtuoso/Virtuoso.d.ts +25 -25
- package/components/Virtuoso/react-virtuoso/VirtuosoGrid.d.ts +6 -6
- package/es6/components/Transitions/ZoomFrom/ZoomFrom.js +1 -7
- package/es6/components/Transitions/ZoomInFadeOut/ZoomInFadeOut.js +4 -7
- package/es6/foundation/hooks/useAudio/useAudio.js +1 -1
- package/es6/foundation/theme/useThemeProps.js +1 -1
- package/foundation/hooks/useAudio/useAudio.d.ts +1 -1
- package/foundation/hooks/useAudio/useAudio.js +1 -1
- package/foundation/theme/useThemeProps.d.ts +1 -1
- package/foundation/theme/useThemeProps.js +1 -1
- package/package.json +2 -3
|
@@ -66,58 +66,22 @@ declare const RcButton: import("styled-components").StyledComponent<React.Forwar
|
|
|
66
66
|
/** component for render root button, default is `button` */
|
|
67
67
|
component?: React.ElementType<any, keyof React.JSX.IntrinsicElements> | undefined;
|
|
68
68
|
/** border radius for button */
|
|
69
|
-
radius?: "circle" | "
|
|
69
|
+
radius?: "circle" | "round" | "sm" | "md" | "lg" | "xl" | "xxl" | "zero" | undefined;
|
|
70
70
|
/** should keep elevation when type is `container` */
|
|
71
71
|
keepElevation?: boolean | undefined;
|
|
72
72
|
/** @deprecated Icon, please use startIcon with `<RcIcon />` */
|
|
73
73
|
IconProps?: RcIconProps | undefined;
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
defaultChecked?: boolean | undefined;
|
|
77
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
78
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
74
|
+
ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
|
|
75
|
+
key?: React.Key | null | undefined;
|
|
79
76
|
suppressHydrationWarning?: boolean | undefined;
|
|
80
|
-
accessKey?: string | undefined;
|
|
81
|
-
autoFocus?: boolean | undefined;
|
|
82
|
-
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
83
|
-
contextMenu?: string | undefined;
|
|
84
|
-
dir?: string | undefined;
|
|
85
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
86
|
-
hidden?: boolean | undefined;
|
|
87
77
|
id?: string | undefined;
|
|
88
78
|
lang?: string | undefined;
|
|
89
|
-
|
|
90
|
-
slot?: string | undefined;
|
|
91
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
79
|
+
name?: string | undefined;
|
|
92
80
|
style?: React.CSSProperties | undefined;
|
|
93
|
-
|
|
94
|
-
translate?: "yes" | "no" | undefined;
|
|
95
|
-
radioGroup?: string | undefined;
|
|
81
|
+
type?: "button" | "reset" | "submit" | undefined;
|
|
96
82
|
role?: React.AriaRole | undefined;
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
datatype?: string | undefined;
|
|
100
|
-
inlist?: any;
|
|
101
|
-
prefix?: string | undefined;
|
|
102
|
-
property?: string | undefined;
|
|
103
|
-
rel?: string | undefined;
|
|
104
|
-
resource?: string | undefined;
|
|
105
|
-
rev?: string | undefined;
|
|
106
|
-
typeof?: string | undefined;
|
|
107
|
-
vocab?: string | undefined;
|
|
108
|
-
autoCapitalize?: string | undefined;
|
|
109
|
-
autoCorrect?: string | undefined;
|
|
110
|
-
autoSave?: string | undefined;
|
|
111
|
-
itemProp?: string | undefined;
|
|
112
|
-
itemScope?: boolean | undefined;
|
|
113
|
-
itemType?: string | undefined;
|
|
114
|
-
itemID?: string | undefined;
|
|
115
|
-
itemRef?: string | undefined;
|
|
116
|
-
results?: number | undefined;
|
|
117
|
-
security?: string | undefined;
|
|
118
|
-
unselectable?: "on" | "off" | undefined;
|
|
119
|
-
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
120
|
-
is?: string | undefined;
|
|
83
|
+
tabIndex?: string | number | undefined;
|
|
84
|
+
href?: string | undefined;
|
|
121
85
|
"aria-activedescendant"?: string | undefined;
|
|
122
86
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
123
87
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
@@ -130,17 +94,17 @@ declare const RcButton: import("styled-components").StyledComponent<React.Forwar
|
|
|
130
94
|
"aria-colindextext"?: string | undefined;
|
|
131
95
|
"aria-colspan"?: number | undefined;
|
|
132
96
|
"aria-controls"?: string | undefined;
|
|
133
|
-
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" |
|
|
97
|
+
"aria-current"?: boolean | "date" | "time" | "true" | "false" | "page" | "step" | "location" | undefined;
|
|
134
98
|
"aria-describedby"?: string | undefined;
|
|
135
99
|
"aria-description"?: string | undefined;
|
|
136
100
|
"aria-details"?: string | undefined;
|
|
137
101
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
138
|
-
"aria-dropeffect"?: "link" | "
|
|
102
|
+
"aria-dropeffect"?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
139
103
|
"aria-errormessage"?: string | undefined;
|
|
140
104
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
141
105
|
"aria-flowto"?: string | undefined;
|
|
142
106
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
143
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
107
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
144
108
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
145
109
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
146
110
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -171,6 +135,7 @@ declare const RcButton: import("styled-components").StyledComponent<React.Forwar
|
|
|
171
135
|
"aria-valuemin"?: number | undefined;
|
|
172
136
|
"aria-valuenow"?: number | undefined;
|
|
173
137
|
"aria-valuetext"?: string | undefined;
|
|
138
|
+
children?: React.ReactNode;
|
|
174
139
|
dangerouslySetInnerHTML?: {
|
|
175
140
|
__html: string | TrustedHTML;
|
|
176
141
|
} | undefined;
|
|
@@ -336,14 +301,49 @@ declare const RcButton: import("styled-components").StyledComponent<React.Forwar
|
|
|
336
301
|
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
337
302
|
onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
338
303
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
304
|
+
form?: string | undefined;
|
|
305
|
+
slot?: string | undefined;
|
|
306
|
+
translate?: "no" | "yes" | undefined;
|
|
307
|
+
classes?: Partial<import("@material-ui/styles").ClassNameMap<import("@material-ui/core/Button").ButtonClassKey>> | undefined;
|
|
308
|
+
defaultChecked?: boolean | undefined;
|
|
309
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
310
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
311
|
+
accessKey?: string | undefined;
|
|
312
|
+
autoFocus?: boolean | undefined;
|
|
313
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
314
|
+
contextMenu?: string | undefined;
|
|
315
|
+
dir?: string | undefined;
|
|
316
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
317
|
+
hidden?: boolean | undefined;
|
|
318
|
+
nonce?: string | undefined;
|
|
319
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
320
|
+
radioGroup?: string | undefined;
|
|
321
|
+
about?: string | undefined;
|
|
322
|
+
content?: string | undefined;
|
|
323
|
+
datatype?: string | undefined;
|
|
324
|
+
inlist?: any;
|
|
325
|
+
prefix?: string | undefined;
|
|
326
|
+
property?: string | undefined;
|
|
327
|
+
rel?: string | undefined;
|
|
328
|
+
resource?: string | undefined;
|
|
329
|
+
rev?: string | undefined;
|
|
330
|
+
typeof?: string | undefined;
|
|
331
|
+
vocab?: string | undefined;
|
|
332
|
+
autoCapitalize?: string | undefined;
|
|
333
|
+
autoCorrect?: string | undefined;
|
|
334
|
+
autoSave?: string | undefined;
|
|
335
|
+
itemProp?: string | undefined;
|
|
336
|
+
itemScope?: boolean | undefined;
|
|
337
|
+
itemType?: string | undefined;
|
|
338
|
+
itemID?: string | undefined;
|
|
339
|
+
itemRef?: string | undefined;
|
|
340
|
+
results?: number | undefined;
|
|
341
|
+
security?: string | undefined;
|
|
342
|
+
unselectable?: "off" | "on" | undefined;
|
|
343
|
+
inputMode?: "search" | "text" | "none" | "email" | "tel" | "url" | "numeric" | "decimal" | undefined;
|
|
344
|
+
is?: string | undefined;
|
|
339
345
|
value?: string | number | readonly string[] | undefined;
|
|
340
346
|
innerRef?: React.Ref<any> | undefined;
|
|
341
|
-
ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
|
|
342
|
-
form?: string | undefined;
|
|
343
|
-
type?: "button" | "reset" | "submit" | undefined;
|
|
344
|
-
name?: string | undefined;
|
|
345
|
-
key?: React.Key | null | undefined;
|
|
346
|
-
href?: string | undefined;
|
|
347
347
|
disabled?: boolean | undefined;
|
|
348
348
|
formAction?: string | undefined;
|
|
349
349
|
formEncType?: string | undefined;
|
|
@@ -368,6 +368,6 @@ declare const RcButton: import("styled-components").StyledComponent<React.Forwar
|
|
|
368
368
|
variant: RcButtonVariant;
|
|
369
369
|
loadingMode: RcButtonColorLoadingMode;
|
|
370
370
|
focusVariant: "ripple" | "focusRing";
|
|
371
|
-
}, "
|
|
371
|
+
}, "ref" | "key" | "suppressHydrationWarning" | "color" | "id" | "lang" | "name" | "style" | "type" | "role" | "tabIndex" | "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" | "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" | "loading" | "CircularProgressProps" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "action" | "buttonRef" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusVisibleClassName" | "onFocusVisible" | "TouchRippleProps" | "component" | "IconProps" | "focusVariant" | "disableFocusRipple" | "disableElevation" | "endIcon" | "fullWidth" | "startIcon" | "disabledVariant" | "loadingMode" | "keepElevation">;
|
|
372
372
|
export { RcButton };
|
|
373
373
|
export type { RcButtonColor, RcButtonColorLoadingMode, RcButtonProps, RcButtonSize, RcButtonVariant, };
|
|
@@ -15,6 +15,6 @@ declare const RcButtonGroup: import("styled-components").StyledComponent<React.F
|
|
|
15
15
|
variant?: "text" | "contained" | "outlined" | undefined;
|
|
16
16
|
} & import("@material-ui/core/OverridableComponent").CommonProps<import("@material-ui/core/ButtonGroup").ButtonGroupTypeMap<{}, "div">> & Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
17
17
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
18
|
-
}, "
|
|
18
|
+
}, "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" | "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">, "color" | "size" | "variant">, "ref"> & React.RefAttributes<any>>, import("../../../foundation").RcTheme, {}, never>;
|
|
19
19
|
export { RcButtonGroup };
|
|
20
20
|
export type { RcButtonGroupProps };
|
|
@@ -52,52 +52,18 @@ declare const RcIconButton: import("styled-components").StyledComponent<React.Fo
|
|
|
52
52
|
title?: NonNullable<React.ReactNode> | undefined;
|
|
53
53
|
TooltipProps?: Partial<import("../../Tooltip/Tooltip").RcTooltipProps> | undefined;
|
|
54
54
|
symbol?: import("../../Icon/Icon").SvgSymbol | undefined;
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
58
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
55
|
+
ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
|
|
56
|
+
key?: React.Key | null | undefined;
|
|
59
57
|
suppressHydrationWarning?: boolean | undefined;
|
|
60
|
-
accessKey?: string | undefined;
|
|
61
|
-
autoFocus?: boolean | undefined;
|
|
62
|
-
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
63
|
-
contextMenu?: string | undefined;
|
|
64
|
-
dir?: string | undefined;
|
|
65
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
66
|
-
hidden?: boolean | undefined;
|
|
67
58
|
id?: string | undefined;
|
|
68
59
|
lang?: string | undefined;
|
|
69
|
-
|
|
70
|
-
slot?: string | undefined;
|
|
71
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
60
|
+
name?: string | undefined;
|
|
72
61
|
style?: React.CSSProperties | undefined;
|
|
73
|
-
tabIndex?: string | number | undefined;
|
|
74
|
-
translate?: "yes" | "no" | undefined;
|
|
75
|
-
radioGroup?: string | undefined;
|
|
76
62
|
role?: React.AriaRole | undefined;
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
prefix?: string | undefined;
|
|
82
|
-
property?: string | undefined;
|
|
83
|
-
rel?: string | undefined;
|
|
84
|
-
resource?: string | undefined;
|
|
85
|
-
rev?: string | undefined;
|
|
86
|
-
typeof?: string | undefined;
|
|
87
|
-
vocab?: string | undefined;
|
|
88
|
-
autoCapitalize?: string | undefined;
|
|
89
|
-
autoCorrect?: string | undefined;
|
|
90
|
-
autoSave?: string | undefined;
|
|
91
|
-
itemProp?: string | undefined;
|
|
92
|
-
itemScope?: boolean | undefined;
|
|
93
|
-
itemType?: string | undefined;
|
|
94
|
-
itemID?: string | undefined;
|
|
95
|
-
itemRef?: string | undefined;
|
|
96
|
-
results?: number | undefined;
|
|
97
|
-
security?: string | undefined;
|
|
98
|
-
unselectable?: "on" | "off" | undefined;
|
|
99
|
-
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
100
|
-
is?: string | undefined;
|
|
63
|
+
tabIndex?: string | number | undefined;
|
|
64
|
+
elevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
|
|
65
|
+
href?: string | undefined;
|
|
66
|
+
radius?: "circle" | "round" | "sm" | "md" | "lg" | "xl" | "xxl" | "zero" | undefined;
|
|
101
67
|
"aria-activedescendant"?: string | undefined;
|
|
102
68
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
103
69
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
@@ -110,17 +76,17 @@ declare const RcIconButton: import("styled-components").StyledComponent<React.Fo
|
|
|
110
76
|
"aria-colindextext"?: string | undefined;
|
|
111
77
|
"aria-colspan"?: number | undefined;
|
|
112
78
|
"aria-controls"?: string | undefined;
|
|
113
|
-
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" |
|
|
79
|
+
"aria-current"?: boolean | "date" | "time" | "true" | "false" | "page" | "step" | "location" | undefined;
|
|
114
80
|
"aria-describedby"?: string | undefined;
|
|
115
81
|
"aria-description"?: string | undefined;
|
|
116
82
|
"aria-details"?: string | undefined;
|
|
117
83
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
118
|
-
"aria-dropeffect"?: "link" | "
|
|
84
|
+
"aria-dropeffect"?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
119
85
|
"aria-errormessage"?: string | undefined;
|
|
120
86
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
121
87
|
"aria-flowto"?: string | undefined;
|
|
122
88
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
123
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
89
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
124
90
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
125
91
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
126
92
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -151,6 +117,7 @@ declare const RcIconButton: import("styled-components").StyledComponent<React.Fo
|
|
|
151
117
|
"aria-valuemin"?: number | undefined;
|
|
152
118
|
"aria-valuenow"?: number | undefined;
|
|
153
119
|
"aria-valuetext"?: string | undefined;
|
|
120
|
+
children?: React.ReactNode;
|
|
154
121
|
dangerouslySetInnerHTML?: {
|
|
155
122
|
__html: string | TrustedHTML;
|
|
156
123
|
} | undefined;
|
|
@@ -316,20 +283,54 @@ declare const RcIconButton: import("styled-components").StyledComponent<React.Fo
|
|
|
316
283
|
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
317
284
|
onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
318
285
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
286
|
+
form?: string | undefined;
|
|
287
|
+
slot?: string | undefined;
|
|
288
|
+
download?: boolean | undefined;
|
|
289
|
+
translate?: "no" | "yes" | undefined;
|
|
290
|
+
defaultChecked?: boolean | undefined;
|
|
291
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
292
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
293
|
+
accessKey?: string | undefined;
|
|
294
|
+
autoFocus?: boolean | undefined;
|
|
295
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
296
|
+
contextMenu?: string | undefined;
|
|
297
|
+
dir?: string | undefined;
|
|
298
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
299
|
+
hidden?: boolean | undefined;
|
|
300
|
+
nonce?: string | undefined;
|
|
301
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
302
|
+
radioGroup?: string | undefined;
|
|
303
|
+
about?: string | undefined;
|
|
304
|
+
content?: string | undefined;
|
|
305
|
+
datatype?: string | undefined;
|
|
306
|
+
inlist?: any;
|
|
307
|
+
prefix?: string | undefined;
|
|
308
|
+
property?: string | undefined;
|
|
309
|
+
rel?: string | undefined;
|
|
310
|
+
resource?: string | undefined;
|
|
311
|
+
rev?: string | undefined;
|
|
312
|
+
typeof?: string | undefined;
|
|
313
|
+
vocab?: string | undefined;
|
|
314
|
+
autoCapitalize?: string | undefined;
|
|
315
|
+
autoCorrect?: string | undefined;
|
|
316
|
+
autoSave?: string | undefined;
|
|
317
|
+
itemProp?: string | undefined;
|
|
318
|
+
itemScope?: boolean | undefined;
|
|
319
|
+
itemType?: string | undefined;
|
|
320
|
+
itemID?: string | undefined;
|
|
321
|
+
itemRef?: string | undefined;
|
|
322
|
+
results?: number | undefined;
|
|
323
|
+
security?: string | undefined;
|
|
324
|
+
unselectable?: "off" | "on" | undefined;
|
|
325
|
+
inputMode?: "search" | "text" | "none" | "email" | "tel" | "url" | "numeric" | "decimal" | undefined;
|
|
326
|
+
is?: string | undefined;
|
|
319
327
|
value?: string | number | readonly string[] | undefined;
|
|
320
328
|
innerRef?: React.Ref<any> | undefined;
|
|
321
|
-
ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
|
|
322
|
-
radius?: "circle" | "sm" | "md" | "lg" | "xl" | "round" | "xxl" | "zero" | undefined;
|
|
323
|
-
form?: string | undefined;
|
|
324
|
-
name?: string | undefined;
|
|
325
|
-
key?: React.Key | null | undefined;
|
|
326
329
|
iconColor?: import("../../../foundation").RcPaletteProp | undefined;
|
|
327
330
|
iconSize?: import("../../Icon").IconSize | undefined;
|
|
328
331
|
loading?: boolean | undefined;
|
|
329
332
|
CircularProgressProps?: import("../../Progress/CircularProgress/CircularProgress").RcCircularProgressProps | undefined;
|
|
330
333
|
tooltipForceHide?: boolean | undefined;
|
|
331
|
-
download?: boolean | undefined;
|
|
332
|
-
href?: string | undefined;
|
|
333
334
|
disabled?: boolean | undefined;
|
|
334
335
|
formAction?: string | undefined;
|
|
335
336
|
formEncType?: string | undefined;
|
|
@@ -354,7 +355,6 @@ declare const RcIconButton: import("styled-components").StyledComponent<React.Fo
|
|
|
354
355
|
shouldPersistBg?: boolean | undefined;
|
|
355
356
|
stretchIcon?: boolean | undefined;
|
|
356
357
|
useColorWhenDisabled?: boolean | undefined;
|
|
357
|
-
elevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
|
|
358
358
|
activeElevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
|
|
359
359
|
disabledFakeBorder?: boolean | undefined;
|
|
360
360
|
IconProps?: RcIconProps | undefined;
|
|
@@ -365,9 +365,9 @@ declare const RcIconButton: import("styled-components").StyledComponent<React.Fo
|
|
|
365
365
|
type: "button" | "reset" | "submit";
|
|
366
366
|
focusRipple: boolean;
|
|
367
367
|
disableTouchRipple: boolean;
|
|
368
|
-
classes: Partial<import("@material-ui/styles").ClassNameMap<"
|
|
368
|
+
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>>;
|
|
369
369
|
useRcTooltip: boolean;
|
|
370
|
-
focusVariant: "
|
|
370
|
+
focusVariant: "highlight" | "focusRing";
|
|
371
371
|
} & {
|
|
372
372
|
/** variant, default with `round` */
|
|
373
373
|
variant?: RcIconButtonVariant | undefined;
|
|
@@ -382,7 +382,7 @@ declare const RcIconButton: import("styled-components").StyledComponent<React.Fo
|
|
|
382
382
|
/** still use color when disabled */
|
|
383
383
|
useColorWhenDisabled?: boolean | undefined;
|
|
384
384
|
/** custom border radius for tag, default is `lg` */
|
|
385
|
-
radius?: "circle" | "
|
|
385
|
+
radius?: "circle" | "round" | "sm" | "md" | "lg" | "xl" | "xxl" | "zero" | undefined;
|
|
386
386
|
/**
|
|
387
387
|
* `box-shadow` with token
|
|
388
388
|
* 0 ~ 24 for different elevation shadow
|
|
@@ -408,8 +408,8 @@ declare const RcIconButton: import("styled-components").StyledComponent<React.Fo
|
|
|
408
408
|
*
|
|
409
409
|
* @default 'highlight'
|
|
410
410
|
*/
|
|
411
|
-
focusVariant?: "
|
|
412
|
-
} & RcIconButtonDeprecatedProps & Pick<RcIconProps, "symbol" | "color" | "iconColor" | "iconSize" | "loading" | "CircularProgressProps"> & RcClassesProps<"
|
|
411
|
+
focusVariant?: "highlight" | "focusRing" | undefined;
|
|
412
|
+
} & RcIconButtonDeprecatedProps & Pick<RcIconProps, "symbol" | "color" | "iconColor" | "iconSize" | "loading" | "CircularProgressProps"> & RcClassesProps<"round" | "icon" | "inverse" | "outline" | "invisible" | "contained" | "persistBg"> & RcBaseProps<{
|
|
413
413
|
action?: React.Ref<import("@material-ui/core").ButtonBaseActions> | undefined;
|
|
414
414
|
buttonRef?: React.Ref<unknown> | undefined;
|
|
415
415
|
centerRipple?: boolean | undefined;
|
|
@@ -427,6 +427,6 @@ declare const RcIconButton: import("styled-components").StyledComponent<React.Fo
|
|
|
427
427
|
TouchRippleProps?: Partial<import("@material-ui/core/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
428
428
|
} & import("@material-ui/core/OverridableComponent").CommonProps<import("@material-ui/core").ExtendButtonBaseTypeMap<import("@material-ui/core").ButtonBaseTypeMap<{}, "button">>> & Pick<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
429
429
|
ref?: ((instance: HTMLButtonElement | null) => void) | React.RefObject<HTMLButtonElement> | null | undefined;
|
|
430
|
-
}, "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">;
|
|
430
|
+
}, "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">;
|
|
431
431
|
export { RcIconButton };
|
|
432
432
|
export type { RcIconButtonProps, RcIconButtonSize, RcIconButtonVariant };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UnitMap } from '../../../../foundation';
|
|
2
2
|
import { RcIconButtonSize } from '../IconButton';
|
|
3
|
-
export declare const RcIconButtonClasses: Partial<UnitMap<"icon" | import("@material-ui/core").ButtonBaseClassKey | "
|
|
3
|
+
export declare const RcIconButtonClasses: Partial<UnitMap<"round" | "icon" | import("@material-ui/core").ButtonBaseClassKey | "inverse" | "outline" | "invisible" | "contained" | "persistBg", any>>;
|
|
4
4
|
export declare const RcIconButtonTouchRippleClasses: Partial<UnitMap<import("@material-ui/core/ButtonBase/TouchRipple").TouchRippleClassKey, any>>;
|
|
5
5
|
export declare const RcIconButtonSizes: Record<NonNullable<RcIconButtonSize | undefined>, number>;
|
|
6
6
|
export declare const RcIconButtonFocusVisibleInsetSize: UnitMap<RcIconButtonSize, number>;
|
|
@@ -6,6 +6,6 @@ declare const RcCardContent: import("styled-components").StyledComponent<React.F
|
|
|
6
6
|
children?: React.ReactNode;
|
|
7
7
|
} & import("@material-ui/core/OverridableComponent").CommonProps<import("@material-ui/core/CardContent").CardContentTypeMap<{}, "div">> & Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
8
8
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
9
|
-
}, "
|
|
9
|
+
}, "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" | "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>;
|
|
10
10
|
export { RcCardContent };
|
|
11
11
|
export type { RcCardContentProps };
|
|
@@ -22,6 +22,6 @@ declare const RcCardHeader: import("@material-ui/core/OverridableComponent").Ove
|
|
|
22
22
|
}> | undefined;
|
|
23
23
|
} & import("@material-ui/core/OverridableComponent").CommonProps<import("@material-ui/core/CardHeader").CardHeaderTypeMap<{}, "div", "span", "span">> & Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
24
24
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
25
|
-
}, "
|
|
25
|
+
}, "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" | "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">>>;
|
|
26
26
|
export { RcCardHeader };
|
|
27
27
|
export type { RcCardHeaderProps };
|