@ringcentral/juno 3.0.0-alpha.1 → 3.0.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/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/package.json +2 -2
|
@@ -26,54 +26,13 @@ export declare const useDownshiftTag: <T extends RcDownshiftSelectedItem = RcDow
|
|
|
26
26
|
value?: string | undefined;
|
|
27
27
|
}, e?: ChangeEvent<{}>) => boolean;
|
|
28
28
|
getTagListBoxProps: (props?: Omit<HTMLAttributes<HTMLElement>, 'color'>) => {
|
|
29
|
-
children?: import("react").ReactNode;
|
|
30
|
-
defaultChecked?: boolean | undefined;
|
|
31
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
32
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
33
29
|
suppressHydrationWarning?: boolean | undefined;
|
|
34
|
-
accessKey?: string | undefined;
|
|
35
|
-
autoFocus?: boolean | undefined;
|
|
36
30
|
className?: string | undefined;
|
|
37
|
-
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
38
|
-
contextMenu?: string | undefined;
|
|
39
|
-
dir?: string | undefined;
|
|
40
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
41
|
-
hidden?: boolean | undefined;
|
|
42
31
|
id?: string | undefined;
|
|
43
32
|
lang?: string | undefined;
|
|
44
|
-
nonce?: string | undefined;
|
|
45
|
-
slot?: string | undefined;
|
|
46
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
47
33
|
style?: import("react").CSSProperties | undefined;
|
|
48
|
-
tabIndex?: number | undefined;
|
|
49
|
-
title?: string | undefined;
|
|
50
|
-
translate?: "yes" | "no" | undefined;
|
|
51
|
-
radioGroup?: string | undefined;
|
|
52
34
|
role?: import("react").AriaRole | undefined;
|
|
53
|
-
|
|
54
|
-
content?: string | undefined;
|
|
55
|
-
datatype?: string | undefined;
|
|
56
|
-
inlist?: any;
|
|
57
|
-
prefix?: string | undefined;
|
|
58
|
-
property?: string | undefined;
|
|
59
|
-
rel?: string | undefined;
|
|
60
|
-
resource?: string | undefined;
|
|
61
|
-
rev?: string | undefined;
|
|
62
|
-
typeof?: string | undefined;
|
|
63
|
-
vocab?: string | undefined;
|
|
64
|
-
autoCapitalize?: string | undefined;
|
|
65
|
-
autoCorrect?: string | undefined;
|
|
66
|
-
autoSave?: string | undefined;
|
|
67
|
-
itemProp?: string | undefined;
|
|
68
|
-
itemScope?: boolean | undefined;
|
|
69
|
-
itemType?: string | undefined;
|
|
70
|
-
itemID?: string | undefined;
|
|
71
|
-
itemRef?: string | undefined;
|
|
72
|
-
results?: number | undefined;
|
|
73
|
-
security?: string | undefined;
|
|
74
|
-
unselectable?: "on" | "off" | undefined;
|
|
75
|
-
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
76
|
-
is?: string | undefined;
|
|
35
|
+
tabIndex?: number | undefined;
|
|
77
36
|
"aria-activedescendant"?: string | undefined;
|
|
78
37
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
79
38
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
@@ -86,17 +45,17 @@ export declare const useDownshiftTag: <T extends RcDownshiftSelectedItem = RcDow
|
|
|
86
45
|
"aria-colindextext"?: string | undefined;
|
|
87
46
|
"aria-colspan"?: number | undefined;
|
|
88
47
|
"aria-controls"?: string | undefined;
|
|
89
|
-
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" |
|
|
48
|
+
"aria-current"?: boolean | "date" | "time" | "true" | "false" | "page" | "step" | "location" | undefined;
|
|
90
49
|
"aria-describedby"?: string | undefined;
|
|
91
50
|
"aria-description"?: string | undefined;
|
|
92
51
|
"aria-details"?: string | undefined;
|
|
93
52
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
94
|
-
"aria-dropeffect"?: "link" | "
|
|
53
|
+
"aria-dropeffect"?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
95
54
|
"aria-errormessage"?: string | undefined;
|
|
96
55
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
97
56
|
"aria-flowto"?: string | undefined;
|
|
98
57
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
99
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
58
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
100
59
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
101
60
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
102
61
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -127,6 +86,7 @@ export declare const useDownshiftTag: <T extends RcDownshiftSelectedItem = RcDow
|
|
|
127
86
|
"aria-valuemin"?: number | undefined;
|
|
128
87
|
"aria-valuenow"?: number | undefined;
|
|
129
88
|
"aria-valuetext"?: string | undefined;
|
|
89
|
+
children?: import("react").ReactNode;
|
|
130
90
|
dangerouslySetInnerHTML?: {
|
|
131
91
|
__html: string | TrustedHTML;
|
|
132
92
|
} | undefined;
|
|
@@ -292,32 +252,22 @@ export declare const useDownshiftTag: <T extends RcDownshiftSelectedItem = RcDow
|
|
|
292
252
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
293
253
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
294
254
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
255
|
+
slot?: string | undefined;
|
|
256
|
+
title?: string | undefined;
|
|
257
|
+
translate?: "no" | "yes" | undefined;
|
|
298
258
|
defaultChecked?: boolean | undefined;
|
|
299
259
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
300
260
|
suppressContentEditableWarning?: boolean | undefined;
|
|
301
|
-
suppressHydrationWarning?: boolean | undefined;
|
|
302
261
|
accessKey?: string | undefined;
|
|
303
262
|
autoFocus?: boolean | undefined;
|
|
304
|
-
className?: string | undefined;
|
|
305
263
|
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
306
264
|
contextMenu?: string | undefined;
|
|
307
265
|
dir?: string | undefined;
|
|
308
266
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
309
267
|
hidden?: boolean | undefined;
|
|
310
|
-
id?: string | undefined;
|
|
311
|
-
lang?: string | undefined;
|
|
312
268
|
nonce?: string | undefined;
|
|
313
|
-
slot?: string | undefined;
|
|
314
269
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
315
|
-
style?: import("react").CSSProperties | undefined;
|
|
316
|
-
tabIndex?: number | undefined;
|
|
317
|
-
title?: string | undefined;
|
|
318
|
-
translate?: "yes" | "no" | undefined;
|
|
319
270
|
radioGroup?: string | undefined;
|
|
320
|
-
role?: import("react").AriaRole | undefined;
|
|
321
271
|
about?: string | undefined;
|
|
322
272
|
content?: string | undefined;
|
|
323
273
|
datatype?: string | undefined;
|
|
@@ -332,7 +282,6 @@ export declare const useDownshiftTag: <T extends RcDownshiftSelectedItem = RcDow
|
|
|
332
282
|
autoCapitalize?: string | undefined;
|
|
333
283
|
autoCorrect?: string | undefined;
|
|
334
284
|
autoSave?: string | undefined;
|
|
335
|
-
color?: string | undefined;
|
|
336
285
|
itemProp?: string | undefined;
|
|
337
286
|
itemScope?: boolean | undefined;
|
|
338
287
|
itemType?: string | undefined;
|
|
@@ -340,9 +289,20 @@ export declare const useDownshiftTag: <T extends RcDownshiftSelectedItem = RcDow
|
|
|
340
289
|
itemRef?: string | undefined;
|
|
341
290
|
results?: number | undefined;
|
|
342
291
|
security?: string | undefined;
|
|
343
|
-
unselectable?: "
|
|
344
|
-
inputMode?: "search" | "text" | "none" | "
|
|
292
|
+
unselectable?: "off" | "on" | undefined;
|
|
293
|
+
inputMode?: "search" | "text" | "none" | "email" | "tel" | "url" | "numeric" | "decimal" | undefined;
|
|
345
294
|
is?: string | undefined;
|
|
295
|
+
};
|
|
296
|
+
getTagProps: ({ index, selectedItem, ...restTagProps }: RcDownshiftGetSelectedItemProps<T>) => {
|
|
297
|
+
[arbitrary: string]: any;
|
|
298
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
299
|
+
className?: string | undefined;
|
|
300
|
+
color?: string | undefined;
|
|
301
|
+
id?: string | undefined;
|
|
302
|
+
lang?: string | undefined;
|
|
303
|
+
style?: import("react").CSSProperties | undefined;
|
|
304
|
+
role?: import("react").AriaRole | undefined;
|
|
305
|
+
tabIndex?: number | undefined;
|
|
346
306
|
"aria-activedescendant"?: string | undefined;
|
|
347
307
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
348
308
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
@@ -355,17 +315,17 @@ export declare const useDownshiftTag: <T extends RcDownshiftSelectedItem = RcDow
|
|
|
355
315
|
"aria-colindextext"?: string | undefined;
|
|
356
316
|
"aria-colspan"?: number | undefined;
|
|
357
317
|
"aria-controls"?: string | undefined;
|
|
358
|
-
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" |
|
|
318
|
+
"aria-current"?: boolean | "date" | "time" | "true" | "false" | "page" | "step" | "location" | undefined;
|
|
359
319
|
"aria-describedby"?: string | undefined;
|
|
360
320
|
"aria-description"?: string | undefined;
|
|
361
321
|
"aria-details"?: string | undefined;
|
|
362
322
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
363
|
-
"aria-dropeffect"?: "link" | "
|
|
323
|
+
"aria-dropeffect"?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
364
324
|
"aria-errormessage"?: string | undefined;
|
|
365
325
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
366
326
|
"aria-flowto"?: string | undefined;
|
|
367
327
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
368
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
328
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
369
329
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
370
330
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
371
331
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -561,6 +521,46 @@ export declare const useDownshiftTag: <T extends RcDownshiftSelectedItem = RcDow
|
|
|
561
521
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
562
522
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
563
523
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
524
|
+
slot?: string | undefined;
|
|
525
|
+
title?: string | undefined;
|
|
526
|
+
translate?: "no" | "yes" | undefined;
|
|
527
|
+
defaultChecked?: boolean | undefined;
|
|
528
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
529
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
530
|
+
accessKey?: string | undefined;
|
|
531
|
+
autoFocus?: boolean | undefined;
|
|
532
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
533
|
+
contextMenu?: string | undefined;
|
|
534
|
+
dir?: string | undefined;
|
|
535
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
536
|
+
hidden?: boolean | undefined;
|
|
537
|
+
nonce?: string | undefined;
|
|
538
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
539
|
+
radioGroup?: string | undefined;
|
|
540
|
+
about?: string | undefined;
|
|
541
|
+
content?: string | undefined;
|
|
542
|
+
datatype?: string | undefined;
|
|
543
|
+
inlist?: any;
|
|
544
|
+
prefix?: string | undefined;
|
|
545
|
+
property?: string | undefined;
|
|
546
|
+
rel?: string | undefined;
|
|
547
|
+
resource?: string | undefined;
|
|
548
|
+
rev?: string | undefined;
|
|
549
|
+
typeof?: string | undefined;
|
|
550
|
+
vocab?: string | undefined;
|
|
551
|
+
autoCapitalize?: string | undefined;
|
|
552
|
+
autoCorrect?: string | undefined;
|
|
553
|
+
autoSave?: string | undefined;
|
|
554
|
+
itemProp?: string | undefined;
|
|
555
|
+
itemScope?: boolean | undefined;
|
|
556
|
+
itemType?: string | undefined;
|
|
557
|
+
itemID?: string | undefined;
|
|
558
|
+
itemRef?: string | undefined;
|
|
559
|
+
results?: number | undefined;
|
|
560
|
+
security?: string | undefined;
|
|
561
|
+
unselectable?: "off" | "on" | undefined;
|
|
562
|
+
inputMode?: "search" | "text" | "none" | "email" | "tel" | "url" | "numeric" | "decimal" | undefined;
|
|
563
|
+
is?: string | undefined;
|
|
564
564
|
};
|
|
565
565
|
focusTag: (tagToFocus: number, focus?: any) => void;
|
|
566
566
|
addTag: (selectedItem: T) => void;
|
|
@@ -13,6 +13,6 @@ declare const RcFormHelperText: import("styled-components").StyledComponent<Reac
|
|
|
13
13
|
variant?: "outlined" | "filled" | "standard" | undefined;
|
|
14
14
|
} & import("@material-ui/core/OverridableComponent").CommonProps<import("@material-ui/core/FormHelperText").FormHelperTextTypeMap<{}, "p">> & Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & {
|
|
15
15
|
ref?: ((instance: HTMLParagraphElement | null) => void) | React.RefObject<HTMLParagraphElement> | null | undefined;
|
|
16
|
-
}, "
|
|
16
|
+
}, "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>;
|
|
17
17
|
export { RcFormHelperText };
|
|
18
18
|
export type { RcFormHelperTextProps };
|
|
@@ -10,4 +10,4 @@ export declare const StyledFormHelperText: import("styled-components").StyledCom
|
|
|
10
10
|
variant?: "outlined" | "filled" | "standard" | undefined;
|
|
11
11
|
} & import("@material-ui/core/OverridableComponent").CommonProps<import("@material-ui/core/FormHelperText").FormHelperTextTypeMap<{}, "p">> & Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & {
|
|
12
12
|
ref?: ((instance: HTMLParagraphElement | null) => void) | React.RefObject<HTMLParagraphElement> | null | undefined;
|
|
13
|
-
}, "
|
|
13
|
+
}, "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,52 +10,18 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
|
|
|
10
10
|
title?: NonNullable<import("react").ReactNode> | undefined;
|
|
11
11
|
TooltipProps?: Partial<import("../../../../Tooltip/Tooltip").RcTooltipProps> | undefined;
|
|
12
12
|
symbol?: import("../../../../Icon/Icon").SvgSymbol | undefined;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
defaultValue?: string | number | readonly string[] | undefined;
|
|
16
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
13
|
+
ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
|
|
14
|
+
key?: import("react").Key | null | undefined;
|
|
17
15
|
suppressHydrationWarning?: boolean | undefined;
|
|
18
|
-
accessKey?: string | undefined;
|
|
19
|
-
autoFocus?: boolean | undefined;
|
|
20
|
-
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
21
|
-
contextMenu?: string | undefined;
|
|
22
|
-
dir?: string | undefined;
|
|
23
|
-
draggable?: (boolean | "true" | "false") | undefined;
|
|
24
|
-
hidden?: boolean | undefined;
|
|
25
16
|
id?: string | undefined;
|
|
26
17
|
lang?: string | undefined;
|
|
27
|
-
|
|
28
|
-
slot?: string | undefined;
|
|
29
|
-
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
18
|
+
name?: string | undefined;
|
|
30
19
|
style?: import("react").CSSProperties | undefined;
|
|
31
|
-
tabIndex?: string | number | undefined;
|
|
32
|
-
translate?: "yes" | "no" | undefined;
|
|
33
|
-
radioGroup?: string | undefined;
|
|
34
20
|
role?: import("react").AriaRole | undefined;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
prefix?: string | undefined;
|
|
40
|
-
property?: string | undefined;
|
|
41
|
-
rel?: string | undefined;
|
|
42
|
-
resource?: string | undefined;
|
|
43
|
-
rev?: string | undefined;
|
|
44
|
-
typeof?: string | undefined;
|
|
45
|
-
vocab?: string | undefined;
|
|
46
|
-
autoCapitalize?: string | undefined;
|
|
47
|
-
autoCorrect?: string | undefined;
|
|
48
|
-
autoSave?: string | undefined;
|
|
49
|
-
itemProp?: string | undefined;
|
|
50
|
-
itemScope?: boolean | undefined;
|
|
51
|
-
itemType?: string | undefined;
|
|
52
|
-
itemID?: string | undefined;
|
|
53
|
-
itemRef?: string | undefined;
|
|
54
|
-
results?: number | undefined;
|
|
55
|
-
security?: string | undefined;
|
|
56
|
-
unselectable?: "on" | "off" | undefined;
|
|
57
|
-
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
58
|
-
is?: string | undefined;
|
|
21
|
+
tabIndex?: string | number | undefined;
|
|
22
|
+
elevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
|
|
23
|
+
href?: string | undefined;
|
|
24
|
+
radius?: "circle" | "round" | "sm" | "md" | "lg" | "xl" | "xxl" | "zero" | undefined;
|
|
59
25
|
"aria-activedescendant"?: string | undefined;
|
|
60
26
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
61
27
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
@@ -68,17 +34,17 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
|
|
|
68
34
|
"aria-colindextext"?: string | undefined;
|
|
69
35
|
"aria-colspan"?: number | undefined;
|
|
70
36
|
"aria-controls"?: string | undefined;
|
|
71
|
-
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" |
|
|
37
|
+
"aria-current"?: boolean | "date" | "time" | "true" | "false" | "page" | "step" | "location" | undefined;
|
|
72
38
|
"aria-describedby"?: string | undefined;
|
|
73
39
|
"aria-description"?: string | undefined;
|
|
74
40
|
"aria-details"?: string | undefined;
|
|
75
41
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
76
|
-
"aria-dropeffect"?: "link" | "
|
|
42
|
+
"aria-dropeffect"?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
|
|
77
43
|
"aria-errormessage"?: string | undefined;
|
|
78
44
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
79
45
|
"aria-flowto"?: string | undefined;
|
|
80
46
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
81
|
-
"aria-haspopup"?: boolean | "dialog" | "menu" | "
|
|
47
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
|
|
82
48
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
83
49
|
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
84
50
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -109,6 +75,7 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
|
|
|
109
75
|
"aria-valuemin"?: number | undefined;
|
|
110
76
|
"aria-valuenow"?: number | undefined;
|
|
111
77
|
"aria-valuetext"?: string | undefined;
|
|
78
|
+
children?: import("react").ReactNode;
|
|
112
79
|
dangerouslySetInnerHTML?: {
|
|
113
80
|
__html: string | TrustedHTML;
|
|
114
81
|
} | undefined;
|
|
@@ -274,20 +241,54 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
|
|
|
274
241
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
|
|
275
242
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
276
243
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
|
|
244
|
+
form?: string | undefined;
|
|
245
|
+
slot?: string | undefined;
|
|
246
|
+
download?: boolean | undefined;
|
|
247
|
+
translate?: "no" | "yes" | undefined;
|
|
248
|
+
defaultChecked?: boolean | undefined;
|
|
249
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
250
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
251
|
+
accessKey?: string | undefined;
|
|
252
|
+
autoFocus?: boolean | undefined;
|
|
253
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
254
|
+
contextMenu?: string | undefined;
|
|
255
|
+
dir?: string | undefined;
|
|
256
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
257
|
+
hidden?: boolean | undefined;
|
|
258
|
+
nonce?: string | undefined;
|
|
259
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
260
|
+
radioGroup?: string | undefined;
|
|
261
|
+
about?: string | undefined;
|
|
262
|
+
content?: string | undefined;
|
|
263
|
+
datatype?: string | undefined;
|
|
264
|
+
inlist?: any;
|
|
265
|
+
prefix?: string | undefined;
|
|
266
|
+
property?: string | undefined;
|
|
267
|
+
rel?: string | undefined;
|
|
268
|
+
resource?: string | undefined;
|
|
269
|
+
rev?: string | undefined;
|
|
270
|
+
typeof?: string | undefined;
|
|
271
|
+
vocab?: string | undefined;
|
|
272
|
+
autoCapitalize?: string | undefined;
|
|
273
|
+
autoCorrect?: string | undefined;
|
|
274
|
+
autoSave?: string | undefined;
|
|
275
|
+
itemProp?: string | undefined;
|
|
276
|
+
itemScope?: boolean | undefined;
|
|
277
|
+
itemType?: string | undefined;
|
|
278
|
+
itemID?: string | undefined;
|
|
279
|
+
itemRef?: string | undefined;
|
|
280
|
+
results?: number | undefined;
|
|
281
|
+
security?: string | undefined;
|
|
282
|
+
unselectable?: "off" | "on" | undefined;
|
|
283
|
+
inputMode?: "search" | "text" | "none" | "email" | "tel" | "url" | "numeric" | "decimal" | undefined;
|
|
284
|
+
is?: string | undefined;
|
|
277
285
|
value?: string | number | readonly string[] | undefined;
|
|
278
286
|
innerRef?: import("react").Ref<any> | undefined;
|
|
279
|
-
ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
|
|
280
|
-
radius?: "circle" | "sm" | "md" | "lg" | "xl" | "round" | "xxl" | "zero" | undefined;
|
|
281
|
-
form?: string | undefined;
|
|
282
|
-
name?: string | undefined;
|
|
283
|
-
key?: import("react").Key | null | undefined;
|
|
284
287
|
iconColor?: import("../../../../../foundation").RcPaletteProp | undefined;
|
|
285
288
|
iconSize?: import("../../../../Icon").IconSize | undefined;
|
|
286
289
|
loading?: boolean | undefined;
|
|
287
290
|
CircularProgressProps?: import("../../../../Progress/CircularProgress/CircularProgress").RcCircularProgressProps | undefined;
|
|
288
291
|
tooltipForceHide?: boolean | undefined;
|
|
289
|
-
download?: boolean | undefined;
|
|
290
|
-
href?: string | undefined;
|
|
291
292
|
disabled?: boolean | undefined;
|
|
292
293
|
formAction?: string | undefined;
|
|
293
294
|
formEncType?: string | undefined;
|
|
@@ -312,7 +313,6 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
|
|
|
312
313
|
shouldPersistBg?: boolean | undefined;
|
|
313
314
|
stretchIcon?: boolean | undefined;
|
|
314
315
|
useColorWhenDisabled?: boolean | undefined;
|
|
315
|
-
elevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
|
|
316
316
|
activeElevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
|
|
317
317
|
disabledFakeBorder?: boolean | undefined;
|
|
318
318
|
IconProps?: import("../../../../Icon/Icon").RcIconProps | undefined;
|
|
@@ -323,9 +323,9 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
|
|
|
323
323
|
type: "button" | "reset" | "submit";
|
|
324
324
|
focusRipple: boolean;
|
|
325
325
|
disableTouchRipple: boolean;
|
|
326
|
-
classes: Partial<import("@material-ui/styles").ClassNameMap<"
|
|
326
|
+
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>>;
|
|
327
327
|
useRcTooltip: boolean;
|
|
328
|
-
focusVariant: "
|
|
328
|
+
focusVariant: "highlight" | "focusRing";
|
|
329
329
|
} & {
|
|
330
330
|
variant?: import("../../../../Buttons/IconButton/IconButton").RcIconButtonVariant | undefined;
|
|
331
331
|
size?: import("../../../../Buttons/IconButton/IconButton").RcIconButtonSize | undefined;
|
|
@@ -333,13 +333,13 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
|
|
|
333
333
|
invisible?: boolean | undefined;
|
|
334
334
|
stretchIcon?: boolean | undefined;
|
|
335
335
|
useColorWhenDisabled?: boolean | undefined;
|
|
336
|
-
radius?: "circle" | "
|
|
336
|
+
radius?: "circle" | "round" | "sm" | "md" | "lg" | "xl" | "xxl" | "zero" | undefined;
|
|
337
337
|
elevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
|
|
338
338
|
activeElevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
|
|
339
339
|
disabledFakeBorder?: boolean | undefined;
|
|
340
340
|
IconProps?: import("../../../../Icon/Icon").RcIconProps | undefined;
|
|
341
|
-
focusVariant?: "
|
|
342
|
-
} & import("../../../../Buttons/IconButton/deprecated/IconButtonProps").RcIconButtonDeprecatedProps & Pick<import("../../../../Icon/Icon").RcIconProps, "symbol" | "color" | "iconColor" | "iconSize" | "loading" | "CircularProgressProps"> & import("../../../../../foundation").RcClassesProps<"
|
|
341
|
+
focusVariant?: "highlight" | "focusRing" | undefined;
|
|
342
|
+
} & import("../../../../Buttons/IconButton/deprecated/IconButtonProps").RcIconButtonDeprecatedProps & Pick<import("../../../../Icon/Icon").RcIconProps, "symbol" | "color" | "iconColor" | "iconSize" | "loading" | "CircularProgressProps"> & import("../../../../../foundation").RcClassesProps<"round" | "icon" | "inverse" | "outline" | "invisible" | "contained" | "persistBg"> & import("../../../../../foundation").RcBaseProps<{
|
|
343
343
|
action?: import("react").Ref<import("@material-ui/core").ButtonBaseActions> | undefined;
|
|
344
344
|
buttonRef?: import("react").Ref<unknown> | undefined;
|
|
345
345
|
centerRipple?: boolean | undefined;
|
|
@@ -354,5 +354,5 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
|
|
|
354
354
|
TouchRippleProps?: Partial<import("@material-ui/core/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
355
355
|
} & import("@material-ui/core/OverridableComponent").CommonProps<import("@material-ui/core").ExtendButtonBaseTypeMap<import("@material-ui/core").ButtonBaseTypeMap<{}, "button">>> & Pick<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
356
356
|
ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
|
|
357
|
-
}, "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">;
|
|
357
|
+
}, "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">;
|
|
358
358
|
export { StyledCurrentMonth, SwitchHeaderButton, SwitchHeaderButtonWrapper, SwitchHeaderWrapper, };
|
|
@@ -45,6 +45,6 @@ declare const PickerTextField: React.ForwardRefExoticComponent<{
|
|
|
45
45
|
ActionSymbol?: SvgSymbol | undefined;
|
|
46
46
|
/** can manual trigger close by ref */
|
|
47
47
|
action?: React.Ref<PickerTextFieldRef> | undefined;
|
|
48
|
-
} & Pick<RcTextFieldProps, "
|
|
48
|
+
} & Pick<RcTextFieldProps, "className" | "id" | "radius" | "onFocus" | "onBlur" | "onKeyDown" | "onClick" | "label" | "autoFocus" | "size" | "value" | "variant" | "error" | "disabled" | "placeholder" | "required" | "fullWidth" | "gutterBottom" | "inputRef" | "InputProps" | "helperText" | "clearBtn" | "clearButtonProps" | "validate"> & React.RefAttributes<any>>;
|
|
49
49
|
export { PickerTextField };
|
|
50
50
|
export type { PickerTextFieldProps, PickerTextFieldRef };
|