@ringcentral/juno 3.0.0-alpha.1 → 3.0.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/Avatar/styles/StyledAvatarWrapper.d.ts +23 -1
- package/components/Avatar/styles/StyledPresenceWrapper.d.ts +4 -2
- package/components/Avatar/styles/StyledPresenceWrapper.js +2 -2
- package/components/Buttons/Button/Button.d.ts +58 -54
- package/components/Buttons/ButtonGroup/ButtonGroup.d.ts +1 -1
- package/components/Buttons/IconButton/IconButton.d.ts +63 -59
- package/components/Buttons/IconButton/utils/IconButtonUtils.d.ts +1 -1
- package/components/Buttons/ToggleButton/ToggleButton.d.ts +5 -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 +63 -59
- package/components/Downshift/utils/useDownshift.d.ts +104 -104
- package/components/Downshift/utils/useDownshiftTag.d.ts +64 -64
- package/components/Forms/Checkbox/Checkbox.d.ts +5 -1
- 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/StyledCalendar.d.ts +4 -2
- package/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.d.ts +65 -60
- package/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.js +3 -3
- package/components/Forms/Picker/DatePicker/utils/DatePickerUtils.d.ts +1 -1
- package/components/Forms/Picker/TimePicker/styles/StyledPickerPopperWrap.d.ts +3 -1
- package/components/Forms/Picker/TimePicker/styles/StyledSelectionItem.d.ts +13 -1
- package/components/Forms/Picker/TimePicker/styles/StyledTimeIconButton.d.ts +13 -1
- package/components/Forms/Picker/utils/PickerTextField/PickerTextField.d.ts +1 -1
- package/components/Forms/Radio/Radio.d.ts +5 -1
- package/components/Forms/TextField/TextField.d.ts +60 -60
- package/components/Grid/Grid.d.ts +1 -1
- package/components/List/List/List.d.ts +1 -1
- package/components/List/ListItem/ListItem.d.ts +54 -50
- package/components/Menu/MenuItem/MenuItem.d.ts +113 -51
- package/components/Pagination/PaginationItem/PaginationItem.d.ts +2 -2
- package/components/PopupBox/PopupBox.js +3 -1
- 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 +104 -52
- package/components/Tag/Tag.d.ts +1 -1
- package/components/Tooltip/withTooltip/withTooltip.d.ts +3 -2
- package/components/Tooltip/withTooltip/withTooltip.js +6 -3
- package/components/Typography/Typography.d.ts +5 -1
- package/components/VirtualizedMenu/VirtualizedDivider/VirtualizedDivider.d.ts +1 -1
- package/components/Virtuoso/react-virtuoso/Virtuoso.d.ts +28 -28
- package/components/Virtuoso/react-virtuoso/VirtuosoGrid.d.ts +6 -6
- package/es6/components/Avatar/styles/StyledPresenceWrapper.js +2 -2
- package/es6/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.js +3 -3
- package/es6/components/Forms/Picker/TimePicker/styles/StyledSelectionItem.js +1 -1
- package/es6/components/PopupBox/PopupBox.js +3 -1
- package/es6/components/Tooltip/withTooltip/withTooltip.js +6 -3
- package/es6/foundation/styled-components.js +9 -3
- package/foundation/styled-components.d.ts +14 -4
- package/foundation/styled-components.js +9 -3
- 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;
|
|
@@ -9,6 +9,10 @@ type RcCheckboxProps = {
|
|
|
9
9
|
/** @deprecated using size to replace that */
|
|
10
10
|
iconSize?: RcIconButtonSize;
|
|
11
11
|
} & RcCheckedStyledProps<RcCheckboxFormControlLabelProps> & RcBaseProps<ComponentProps<typeof MuiCheckbox>, 'size' | 'color' | 'title' | 'edge'>;
|
|
12
|
-
declare const RcCheckbox: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<
|
|
12
|
+
declare const RcCheckbox: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<{
|
|
13
|
+
title?: NonNullable<React.ReactNode> | undefined;
|
|
14
|
+
useRcTooltip?: boolean | undefined;
|
|
15
|
+
TooltipProps?: Partial<import("../../Tooltip/Tooltip").RcTooltipProps> | undefined;
|
|
16
|
+
} & Omit<Omit<Omit<RcCheckboxProps, "ref"> & React.RefAttributes<any>, "ref">, "title"> & React.RefAttributes<any>> & React.ComponentType<import("../../Tooltip/withTooltip/withTooltip").WithTooltipProps<Omit<Omit<RcCheckboxProps, "ref"> & React.RefAttributes<any>, "ref">>>, import("../../../foundation").RcTheme, {}, never>;
|
|
13
17
|
export { RcCheckbox };
|
|
14
18
|
export type { RcCheckboxFormControlLabelProps, RcCheckboxLabelPlacement, RcCheckboxProps, };
|
|
@@ -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>;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { RcDatePickerProps } from '../DatePicker';
|
|
2
2
|
declare const CalendarSlideTransitionWrapper: import("styled-components").StyledComponent<any, import("../../../../../foundation").RcTheme, object, string | number | symbol>;
|
|
3
3
|
declare const ProgressContainer: import("styled-components").StyledComponent<"div", import("../../../../../foundation").RcTheme, {}, never>;
|
|
4
|
-
|
|
4
|
+
type WeekWrapperProps = Pick<RcDatePickerProps, 'size'>;
|
|
5
|
+
declare const WeekWrapper: import("styled-components").StyledComponent<"div", import("../../../../../foundation").RcTheme, WeekWrapperProps, never>;
|
|
5
6
|
declare const StyledDaysHeader: import("styled-components").StyledComponent<"div", import("../../../../../foundation").RcTheme, StyledDayLabelProps, never>;
|
|
6
7
|
type StyledDayLabelProps = Pick<RcDatePickerProps, 'size'>;
|
|
7
8
|
declare const StyledDayLabel: import("styled-components").StyledComponent<import("@material-ui/core/OverridableComponent").OverridableComponent<import("@material-ui/core/Typography").TypographyTypeMap<{}, "span">>, import("../../../../../foundation").RcTheme, StyledDayLabelProps, never>;
|
|
8
|
-
|
|
9
|
+
type DatePickerWrapperProps = Pick<RcDatePickerProps, 'size'>;
|
|
10
|
+
declare const DatePickerWrapper: import("styled-components").StyledComponent<"div", import("../../../../../foundation").RcTheme, DatePickerWrapperProps, never>;
|
|
9
11
|
declare const DaysWrapper: import("styled-components").StyledComponent<"div", import("../../../../../foundation").RcTheme, {}, never>;
|
|
10
12
|
declare const DayFooterWrapper: import("styled-components").StyledComponent<"div", import("../../../../../foundation").RcTheme, {}, never>;
|
|
11
13
|
export { CalendarSlideTransitionWrapper, DatePickerWrapper, DayFooterWrapper, DaysWrapper, ProgressContainer, StyledDayLabel, StyledDaysHeader, WeekWrapper, };
|