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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/components/Avatar/styles/StyledAvatarWrapper.d.ts +23 -1
  2. package/components/Avatar/styles/StyledPresenceWrapper.d.ts +4 -2
  3. package/components/Avatar/styles/StyledPresenceWrapper.js +2 -2
  4. package/components/Buttons/Button/Button.d.ts +58 -54
  5. package/components/Buttons/ButtonGroup/ButtonGroup.d.ts +1 -1
  6. package/components/Buttons/IconButton/IconButton.d.ts +63 -59
  7. package/components/Buttons/IconButton/utils/IconButtonUtils.d.ts +1 -1
  8. package/components/Buttons/ToggleButton/ToggleButton.d.ts +5 -1
  9. package/components/Card/CardContent/CardContent.d.ts +1 -1
  10. package/components/Card/CardHeader/CardHeader.d.ts +1 -1
  11. package/components/Card/CardMedia/CardMedia.d.ts +1 -1
  12. package/components/Dialog/DialogActions/DialogActions.d.ts +49 -49
  13. package/components/Dialog/DialogContent/DialogContent.d.ts +1 -1
  14. package/components/Dialog/DialogContentText/DialogContentText.d.ts +3 -3
  15. package/components/Dialog/DialogTitle/DialogTitle.d.ts +1 -1
  16. package/components/Divider/Divider.d.ts +1 -1
  17. package/components/Downshift/SuggestionList/utils/useSuggestionList.d.ts +10 -10
  18. package/components/Downshift/styles/DownshiftStyle.d.ts +63 -59
  19. package/components/Downshift/utils/useDownshift.d.ts +104 -104
  20. package/components/Downshift/utils/useDownshiftTag.d.ts +64 -64
  21. package/components/Forms/Checkbox/Checkbox.d.ts +5 -1
  22. package/components/Forms/FormHelperText/FormHelperText.d.ts +1 -1
  23. package/components/Forms/FormHelperText/styles/StyledFormHelperText.d.ts +1 -1
  24. package/components/Forms/Picker/DatePicker/styles/StyledCalendar.d.ts +4 -2
  25. package/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.d.ts +65 -60
  26. package/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.js +3 -3
  27. package/components/Forms/Picker/DatePicker/utils/DatePickerUtils.d.ts +1 -1
  28. package/components/Forms/Picker/TimePicker/styles/StyledPickerPopperWrap.d.ts +3 -1
  29. package/components/Forms/Picker/TimePicker/styles/StyledSelectionItem.d.ts +13 -1
  30. package/components/Forms/Picker/TimePicker/styles/StyledTimeIconButton.d.ts +13 -1
  31. package/components/Forms/Picker/utils/PickerTextField/PickerTextField.d.ts +1 -1
  32. package/components/Forms/Radio/Radio.d.ts +5 -1
  33. package/components/Forms/TextField/TextField.d.ts +60 -60
  34. package/components/Grid/Grid.d.ts +1 -1
  35. package/components/List/List/List.d.ts +1 -1
  36. package/components/List/ListItem/ListItem.d.ts +54 -50
  37. package/components/Menu/MenuItem/MenuItem.d.ts +113 -51
  38. package/components/Pagination/PaginationItem/PaginationItem.d.ts +2 -2
  39. package/components/PopupBox/PopupBox.js +3 -1
  40. package/components/Table/TableBody/TableBody.d.ts +1 -1
  41. package/components/Table/TableCell/TableCell.d.ts +53 -53
  42. package/components/Table/TableCell/utils/TableCellUtils.d.ts +1 -1
  43. package/components/Table/TableHead/TableHead.d.ts +1 -1
  44. package/components/TablePagination/styles/TablePaginationStyle.d.ts +104 -52
  45. package/components/Tag/Tag.d.ts +1 -1
  46. package/components/Tooltip/withTooltip/withTooltip.d.ts +3 -2
  47. package/components/Tooltip/withTooltip/withTooltip.js +6 -3
  48. package/components/Typography/Typography.d.ts +5 -1
  49. package/components/VirtualizedMenu/VirtualizedDivider/VirtualizedDivider.d.ts +1 -1
  50. package/components/Virtuoso/react-virtuoso/Virtuoso.d.ts +28 -28
  51. package/components/Virtuoso/react-virtuoso/VirtuosoGrid.d.ts +6 -6
  52. package/es6/components/Avatar/styles/StyledPresenceWrapper.js +2 -2
  53. package/es6/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.js +3 -3
  54. package/es6/components/Forms/Picker/TimePicker/styles/StyledSelectionItem.js +1 -1
  55. package/es6/components/PopupBox/PopupBox.js +3 -1
  56. package/es6/components/Tooltip/withTooltip/withTooltip.js +6 -3
  57. package/es6/foundation/styled-components.js +9 -3
  58. package/foundation/styled-components.d.ts +14 -4
  59. package/foundation/styled-components.js +9 -3
  60. package/package.json +2 -2
@@ -3,59 +3,30 @@
3
3
  import { DatePickerHeaderProps } from '../DatePickerHeader';
4
4
  type StyledCurrentMonthProps = Pick<DatePickerHeaderProps, 'view'>;
5
5
  declare const StyledCurrentMonth: import("styled-components").StyledComponent<"button", import("../../../../../foundation").RcTheme, StyledCurrentMonthProps, never>;
6
- declare const SwitchHeaderWrapper: import("styled-components").StyledComponent<"div", import("../../../../../foundation").RcTheme, Pick<DatePickerHeaderProps, "size">, never>;
6
+ type SwitchHeaderWrapperProps = Pick<DatePickerHeaderProps, 'size'>;
7
+ declare const SwitchHeaderWrapper: import("styled-components").StyledComponent<"div", import("../../../../../foundation").RcTheme, SwitchHeaderWrapperProps, never>;
7
8
  type SwitchHeaderProps = Pick<DatePickerHeaderProps, 'size' | 'view'>;
8
9
  declare const SwitchHeaderButtonWrapper: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Omit<import("../../../../Buttons/IconButtonGroup/IconButtonGroup").RcIconButtonGroupProps, "ref"> & import("react").RefAttributes<any>>, import("../../../../../foundation").RcTheme, SwitchHeaderProps, never>;
9
- declare const SwitchHeaderButton: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Omit<import("../../../../Tooltip/withTooltip/withTooltip").WithTooltipProps<Omit<import("../../../../Buttons/IconButton/IconButton").RcIconButtonProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>>, "ref"> & import("react").RefAttributes<any>>, import("../../../../../foundation").RcTheme, {
10
+ declare const SwitchHeaderButton: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<{
11
+ title?: NonNullable<import("react").ReactNode> | undefined;
12
+ useRcTooltip?: boolean | undefined;
13
+ TooltipProps?: Partial<import("../../../../Tooltip/Tooltip").RcTooltipProps> | undefined;
14
+ } & Omit<Omit<Omit<import("../../../../Buttons/IconButton/IconButton").RcIconButtonProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>, "ref">, "title"> & import("react").RefAttributes<HTMLButtonElement>> & import("react").ComponentType<import("../../../../Tooltip/withTooltip/withTooltip").WithTooltipProps<Omit<Omit<import("../../../../Buttons/IconButton/IconButton").RcIconButtonProps, "ref"> & import("react").RefAttributes<HTMLButtonElement>, "ref">>>, import("../../../../../foundation").RcTheme, {
10
15
  title?: NonNullable<import("react").ReactNode> | undefined;
11
16
  TooltipProps?: Partial<import("../../../../Tooltip/Tooltip").RcTooltipProps> | undefined;
12
17
  symbol?: import("../../../../Icon/Icon").SvgSymbol | undefined;
13
- children?: import("react").ReactNode;
14
- defaultChecked?: boolean | undefined;
15
- defaultValue?: string | number | readonly string[] | undefined;
16
- suppressContentEditableWarning?: boolean | undefined;
18
+ ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
19
+ key?: import("react").Key | null | undefined;
17
20
  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
21
  id?: string | undefined;
26
22
  lang?: string | undefined;
27
- nonce?: string | undefined;
28
- slot?: string | undefined;
29
- spellCheck?: (boolean | "true" | "false") | undefined;
23
+ name?: string | undefined;
30
24
  style?: import("react").CSSProperties | undefined;
31
- tabIndex?: string | number | undefined;
32
- translate?: "yes" | "no" | undefined;
33
- radioGroup?: string | undefined;
34
25
  role?: import("react").AriaRole | undefined;
35
- about?: string | undefined;
36
- content?: string | undefined;
37
- datatype?: string | undefined;
38
- inlist?: any;
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;
26
+ tabIndex?: string | number | undefined;
27
+ elevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
28
+ href?: string | undefined;
29
+ radius?: "circle" | "round" | "sm" | "md" | "lg" | "xl" | "xxl" | "zero" | undefined;
59
30
  "aria-activedescendant"?: string | undefined;
60
31
  "aria-atomic"?: (boolean | "true" | "false") | undefined;
61
32
  "aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
@@ -68,17 +39,17 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
68
39
  "aria-colindextext"?: string | undefined;
69
40
  "aria-colspan"?: number | undefined;
70
41
  "aria-controls"?: string | undefined;
71
- "aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
42
+ "aria-current"?: boolean | "date" | "time" | "true" | "false" | "page" | "step" | "location" | undefined;
72
43
  "aria-describedby"?: string | undefined;
73
44
  "aria-description"?: string | undefined;
74
45
  "aria-details"?: string | undefined;
75
46
  "aria-disabled"?: (boolean | "true" | "false") | undefined;
76
- "aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
47
+ "aria-dropeffect"?: "link" | "copy" | "none" | "execute" | "move" | "popup" | undefined;
77
48
  "aria-errormessage"?: string | undefined;
78
49
  "aria-expanded"?: (boolean | "true" | "false") | undefined;
79
50
  "aria-flowto"?: string | undefined;
80
51
  "aria-grabbed"?: (boolean | "true" | "false") | undefined;
81
- "aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
52
+ "aria-haspopup"?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "true" | "false" | undefined;
82
53
  "aria-hidden"?: (boolean | "true" | "false") | undefined;
83
54
  "aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
84
55
  "aria-keyshortcuts"?: string | undefined;
@@ -109,6 +80,7 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
109
80
  "aria-valuemin"?: number | undefined;
110
81
  "aria-valuenow"?: number | undefined;
111
82
  "aria-valuetext"?: string | undefined;
83
+ children?: import("react").ReactNode;
112
84
  dangerouslySetInnerHTML?: {
113
85
  __html: string | TrustedHTML;
114
86
  } | undefined;
@@ -274,20 +246,54 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
274
246
  onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLButtonElement> | undefined;
275
247
  onTransitionEnd?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
276
248
  onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLButtonElement> | undefined;
249
+ form?: string | undefined;
250
+ slot?: string | undefined;
251
+ download?: boolean | undefined;
252
+ translate?: "no" | "yes" | undefined;
253
+ defaultChecked?: boolean | undefined;
254
+ defaultValue?: string | number | readonly string[] | undefined;
255
+ suppressContentEditableWarning?: boolean | undefined;
256
+ accessKey?: string | undefined;
257
+ autoFocus?: boolean | undefined;
258
+ contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
259
+ contextMenu?: string | undefined;
260
+ dir?: string | undefined;
261
+ draggable?: (boolean | "true" | "false") | undefined;
262
+ hidden?: boolean | undefined;
263
+ nonce?: string | undefined;
264
+ spellCheck?: (boolean | "true" | "false") | undefined;
265
+ radioGroup?: string | undefined;
266
+ about?: string | undefined;
267
+ content?: string | undefined;
268
+ datatype?: string | undefined;
269
+ inlist?: any;
270
+ prefix?: string | undefined;
271
+ property?: string | undefined;
272
+ rel?: string | undefined;
273
+ resource?: string | undefined;
274
+ rev?: string | undefined;
275
+ typeof?: string | undefined;
276
+ vocab?: string | undefined;
277
+ autoCapitalize?: string | undefined;
278
+ autoCorrect?: string | undefined;
279
+ autoSave?: string | undefined;
280
+ itemProp?: string | undefined;
281
+ itemScope?: boolean | undefined;
282
+ itemType?: string | undefined;
283
+ itemID?: string | undefined;
284
+ itemRef?: string | undefined;
285
+ results?: number | undefined;
286
+ security?: string | undefined;
287
+ unselectable?: "off" | "on" | undefined;
288
+ inputMode?: "search" | "text" | "none" | "email" | "tel" | "url" | "numeric" | "decimal" | undefined;
289
+ is?: string | undefined;
277
290
  value?: string | number | readonly string[] | undefined;
278
291
  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
292
  iconColor?: import("../../../../../foundation").RcPaletteProp | undefined;
285
293
  iconSize?: import("../../../../Icon").IconSize | undefined;
286
294
  loading?: boolean | undefined;
287
295
  CircularProgressProps?: import("../../../../Progress/CircularProgress/CircularProgress").RcCircularProgressProps | undefined;
288
296
  tooltipForceHide?: boolean | undefined;
289
- download?: boolean | undefined;
290
- href?: string | undefined;
291
297
  disabled?: boolean | undefined;
292
298
  formAction?: string | undefined;
293
299
  formEncType?: string | undefined;
@@ -312,7 +318,6 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
312
318
  shouldPersistBg?: boolean | undefined;
313
319
  stretchIcon?: boolean | undefined;
314
320
  useColorWhenDisabled?: boolean | undefined;
315
- elevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
316
321
  activeElevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
317
322
  disabledFakeBorder?: boolean | undefined;
318
323
  IconProps?: import("../../../../Icon/Icon").RcIconProps | undefined;
@@ -323,9 +328,9 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
323
328
  type: "button" | "reset" | "submit";
324
329
  focusRipple: boolean;
325
330
  disableTouchRipple: boolean;
326
- classes: Partial<import("@material-ui/styles").ClassNameMap<"icon" | "round" | "inverse" | "outline" | "invisible" | "contained" | "persistBg">> & Partial<import("@material-ui/styles").ClassNameMap<import("@material-ui/core").ButtonBaseClassKey>>;
331
+ 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
332
  useRcTooltip: boolean;
328
- focusVariant: "focusRing" | "highlight";
333
+ focusVariant: "highlight" | "focusRing";
329
334
  } & {
330
335
  variant?: import("../../../../Buttons/IconButton/IconButton").RcIconButtonVariant | undefined;
331
336
  size?: import("../../../../Buttons/IconButton/IconButton").RcIconButtonSize | undefined;
@@ -333,13 +338,13 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
333
338
  invisible?: boolean | undefined;
334
339
  stretchIcon?: boolean | undefined;
335
340
  useColorWhenDisabled?: boolean | undefined;
336
- radius?: "circle" | "sm" | "md" | "lg" | "xl" | "round" | "xxl" | "zero" | undefined;
341
+ radius?: "circle" | "round" | "sm" | "md" | "lg" | "xl" | "xxl" | "zero" | undefined;
337
342
  elevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
338
343
  activeElevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
339
344
  disabledFakeBorder?: boolean | undefined;
340
345
  IconProps?: import("../../../../Icon/Icon").RcIconProps | undefined;
341
- focusVariant?: "focusRing" | "highlight" | undefined;
342
- } & import("../../../../Buttons/IconButton/deprecated/IconButtonProps").RcIconButtonDeprecatedProps & Pick<import("../../../../Icon/Icon").RcIconProps, "symbol" | "color" | "iconColor" | "iconSize" | "loading" | "CircularProgressProps"> & import("../../../../../foundation").RcClassesProps<"icon" | "round" | "inverse" | "outline" | "invisible" | "contained" | "persistBg"> & import("../../../../../foundation").RcBaseProps<{
346
+ focusVariant?: "highlight" | "focusRing" | undefined;
347
+ } & 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
348
  action?: import("react").Ref<import("@material-ui/core").ButtonBaseActions> | undefined;
344
349
  buttonRef?: import("react").Ref<unknown> | undefined;
345
350
  centerRipple?: boolean | undefined;
@@ -354,5 +359,5 @@ declare const SwitchHeaderButton: import("styled-components").StyledComponent<im
354
359
  TouchRippleProps?: Partial<import("@material-ui/core/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
355
360
  } & 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
361
  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">;
362
+ }, "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
363
  export { StyledCurrentMonth, SwitchHeaderButton, SwitchHeaderButtonWrapper, SwitchHeaderWrapper, };
@@ -8,9 +8,9 @@ var utils_1 = require("../../../../Buttons/IconButton/utils");
8
8
  var Icon_1 = require("../../../../Icon");
9
9
  var utils_2 = require("../utils");
10
10
  var monthInactiveStyle = (0, foundation_1.css)(templateObject_1 || (templateObject_1 = tslib_1.__makeTemplateObject(["\n &,\n ", " {\n color: ", ";\n }\n"], ["\n &,\n ", " {\n color: ", ";\n }\n"])), Icon_1.RcIcon, foundation_1.focusVisibleColor);
11
- var StyledCurrentMonth = foundation_1.styled.button(templateObject_2 || (templateObject_2 = tslib_1.__makeTemplateObject(["\n background: none;\n border: none;\n cursor: pointer;\n outline: inherit;\n\n ", ";\n position: relative;\n cursor: pointer;\n margin-left: ", ";\n color: ", ";\n ", ";\n border-radius: ", ";\n\n padding: ", ";\n\n ", ";\n\n ", " {\n margin-left: ", ";\n transform: rotate(", "deg);\n color: ", ";\n }\n\n ", " {\n ", ";\n }\n\n ", " {\n &:hover {\n ", ";\n }\n }\n"], ["\n background: none;\n border: none;\n cursor: pointer;\n outline: inherit;\n\n ", ";\n position: relative;\n cursor: pointer;\n margin-left: ", ";\n color: ", ";\n ", ";\n border-radius: ", ";\n\n padding: ", ";\n\n ", ";\n\n ", " {\n margin-left: ", ";\n transform: rotate(", "deg);\n color: ", ";\n }\n\n ", " {\n ", ";\n }\n\n ", " {\n &:hover {\n ", ";\n }\n }\n"])), foundation_1.flexCenterStyle, (0, foundation_1.spacing)(5), utils_2.textColor, (0, foundation_1.typography)('body2'), (0, foundation_1.radius)('sm'), (0, foundation_1.spacing)(1, 0, 1, 1), (0, foundation_1.focusVisibleShadowStyle)('lg', undefined, undefined, 2), Icon_1.RcIcon, (0, foundation_1.spacing)(2), function (_a) {
11
+ var StyledCurrentMonth = foundation_1.styled.button(templateObject_2 || (templateObject_2 = tslib_1.__makeTemplateObject(["\n background: none;\n border: none;\n cursor: pointer;\n outline: inherit;\n\n ", ";\n position: relative;\n cursor: pointer;\n margin-left: ", ";\n color: ", ";\n ", ";\n border-radius: ", ";\n\n padding: ", ";\n\n ", ";\n\n ", " {\n margin-left: ", ";\n transform: rotate(\n ", "deg\n );\n color: ", ";\n }\n\n ", " {\n ", ";\n }\n\n ", " {\n &:hover {\n ", ";\n }\n }\n"], ["\n background: none;\n border: none;\n cursor: pointer;\n outline: inherit;\n\n ", ";\n position: relative;\n cursor: pointer;\n margin-left: ", ";\n color: ", ";\n ", ";\n border-radius: ", ";\n\n padding: ", ";\n\n ", ";\n\n ", " {\n margin-left: ", ";\n transform: rotate(\n ", "deg\n );\n color: ", ";\n }\n\n ", " {\n ", ";\n }\n\n ", " {\n &:hover {\n ", ";\n }\n }\n"])), foundation_1.flexCenterStyle, (0, foundation_1.spacing)(5), utils_2.textColor, (0, foundation_1.typography)('body2'), (0, foundation_1.radius)('sm'), (0, foundation_1.spacing)(1, 0, 1, 1), (0, foundation_1.focusVisibleShadowStyle)('lg', undefined, undefined, 2), Icon_1.RcIcon, (0, foundation_1.spacing)(2), function (_a) {
12
12
  var view = _a.view;
13
- return (view === 'day' ? '0' : '180');
13
+ return view === 'day' ? '0' : '180';
14
14
  }, (0, foundation_1.palette2)('neutral', 'f04'), foundation_1.focusVisible, monthInactiveStyle, foundation_1.nonTouchHoverMedia, monthInactiveStyle);
15
15
  exports.StyledCurrentMonth = StyledCurrentMonth;
16
16
  var SwitchHeaderWrapper = foundation_1.styled.div(templateObject_4 || (templateObject_4 = tslib_1.__makeTemplateObject(["\n display: flex;\n justify-content: space-between;\n align-items: center;\n flex-wrap: wrap;\n\n ", "\n"], ["\n display: flex;\n justify-content: space-between;\n align-items: center;\n flex-wrap: wrap;\n\n ", "\n"])), function (_a) {
@@ -23,7 +23,7 @@ var SwitchHeaderWrapper = foundation_1.styled.div(templateObject_4 || (templateO
23
23
  exports.SwitchHeaderWrapper = SwitchHeaderWrapper;
24
24
  var SwitchHeaderButtonWrapper = (0, foundation_1.styled)(Buttons_1.RcIconButtonGroup)(templateObject_7 || (templateObject_7 = tslib_1.__makeTemplateObject(["\n flex: 1;\n display: ", ";\n justify-content: flex-end;\n padding-right: 12px;\n\n ", "\n"], ["\n flex: 1;\n display: ", ";\n justify-content: flex-end;\n padding-right: 12px;\n\n ", "\n"])), function (_a) {
25
25
  var view = _a.view;
26
- return (view === 'day' ? 'flex' : 'none');
26
+ return view === 'day' ? 'flex' : 'none';
27
27
  }, function (_a) {
28
28
  var size = _a.size;
29
29
  if (size === 'small') {
@@ -7,7 +7,7 @@ export declare const textColor: import("../../../../../foundation/styles/newPale
7
7
  export declare const primaryColor: import("../../../../../foundation/styles/newPalette").PaletteReturnType;
8
8
  export declare const primaryHoverColor: (props: import("../../../../../foundation").RcThemeProps) => string;
9
9
  export declare const disabledColor: import("../../../../../foundation/styles/newPalette").PaletteReturnType;
10
- export declare const RcDatePickerClasses: Partial<UnitMap<"footer" | "header" | "progress" | "select" | "popover" | "leftArrow" | "rightArrow" | "calendarSlider" | "popoverPaper", any>>;
10
+ export declare const RcDatePickerClasses: Partial<UnitMap<"footer" | "header" | "progress" | "select" | "leftArrow" | "rightArrow" | "calendarSlider" | "popover" | "popoverPaper", any>>;
11
11
  type DatePickerVolume = {
12
12
  width: string;
13
13
  height: string;
@@ -1,2 +1,4 @@
1
1
  import { RcTimePickerProps } from '../TimePicker';
2
- export declare const StyledPickerPopperWrap: import("styled-components").StyledComponent<"div", import("../../../../../foundation").RcTheme, Omit<RcTimePickerProps, "value" | "periodTexts">, never>;
2
+ type StyledPickerPopperWrapProps = Omit<RcTimePickerProps, 'value' | 'periodTexts'>;
3
+ export declare const StyledPickerPopperWrap: import("styled-components").StyledComponent<"div", import("../../../../../foundation").RcTheme, StyledPickerPopperWrapProps, never>;
4
+ export {};
@@ -1,2 +1,14 @@
1
1
  /// <reference types="react" />
2
- export declare const StyledSelectionItem: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Omit<import("./StyledTimeIconButton").StyledTimeIconButtonProps, "ref"> & import("react").RefAttributes<any>>, import("../../../../../foundation").RcTheme, {}, never>;
2
+ import { StyledTimeIconButtonProps } from './StyledTimeIconButton';
3
+ export declare const StyledSelectionItem: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<Omit<StyledTimeIconButtonProps, "ref"> & import("react").RefAttributes<any>>, import("../../../../../foundation").RcTheme, {
4
+ wrapperSize?: "small" | "medium" | undefined;
5
+ itemLength?: number | undefined;
6
+ } & {
7
+ theme?: import("../../../../../foundation").RcTheme | undefined;
8
+ } & {
9
+ as?: string | import("react").ComponentType<any> | undefined;
10
+ forwardedAs?: string | import("react").ComponentType<any> | undefined;
11
+ } & {
12
+ selected?: boolean | undefined;
13
+ hidden?: boolean | undefined;
14
+ }, never>;
@@ -6,4 +6,16 @@ export type StyledTimeIconButtonProps = {
6
6
  /** item length of data source */
7
7
  itemLength?: number;
8
8
  } & PickerBaseIconButtonProps;
9
- export declare const StyledTimeIconButton: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<Omit<StyledTimeIconButtonProps, "ref"> & React.RefAttributes<any>>, import("../../../../../foundation").RcTheme, {}, never>;
9
+ export declare const StyledTimeIconButton: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<Omit<StyledTimeIconButtonProps, "ref"> & React.RefAttributes<any>>, import("../../../../../foundation").RcTheme, {
10
+ wrapperSize?: "small" | "medium" | undefined;
11
+ /** item length of data source */
12
+ itemLength?: number | undefined;
13
+ } & {
14
+ theme?: import("../../../../../foundation").RcTheme | undefined;
15
+ } & {
16
+ as?: string | React.ComponentType<any> | undefined;
17
+ forwardedAs?: string | React.ComponentType<any> | undefined;
18
+ } & {
19
+ selected?: boolean | undefined;
20
+ hidden?: boolean | undefined;
21
+ }, never>;
@@ -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, "autoFocus" | "className" | "id" | "onFocus" | "onBlur" | "onKeyDown" | "onClick" | "size" | "value" | "variant" | "radius" | "label" | "error" | "disabled" | "placeholder" | "required" | "fullWidth" | "gutterBottom" | "inputRef" | "InputProps" | "helperText" | "clearBtn" | "clearButtonProps" | "validate"> & React.RefAttributes<any>>;
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 };
@@ -5,6 +5,10 @@ import { RcCheckedStyledProps } from '../utils';
5
5
  type RcRadioLabelPlacement = RcBaseLabelPlacement<'start' | 'end'>;
6
6
  type RcRadioFormControlLabelProps = RcBaseFormControlLabelProps<RcRadioLabelPlacement>;
7
7
  type RcRadioProps = {} & RcCheckedStyledProps<RcRadioFormControlLabelProps> & RcBaseProps<ComponentProps<typeof MuiRadio>, 'size' | 'color' | 'title' | 'edge'>;
8
- declare const RcRadio: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<Omit<import("../../Tooltip/withTooltip/withTooltip").WithTooltipProps<Omit<RcRadioProps, "ref"> & React.RefAttributes<any>>, "ref"> & React.RefAttributes<any>>, import("../../../foundation").RcTheme, {}, never>;
8
+ declare const RcRadio: import("styled-components").StyledComponent<React.ForwardRefExoticComponent<{
9
+ title?: NonNullable<React.ReactNode> | undefined;
10
+ useRcTooltip?: boolean | undefined;
11
+ TooltipProps?: Partial<import("../../Tooltip/Tooltip").RcTooltipProps> | undefined;
12
+ } & Omit<Omit<Omit<RcRadioProps, "ref"> & React.RefAttributes<any>, "ref">, "title"> & React.RefAttributes<any>> & React.ComponentType<import("../../Tooltip/withTooltip/withTooltip").WithTooltipProps<Omit<Omit<RcRadioProps, "ref"> & React.RefAttributes<any>, "ref">>>, import("../../../foundation").RcTheme, {}, never>;
9
13
  export { RcRadio };
10
14
  export type { RcRadioFormControlLabelProps, RcRadioLabelPlacement, RcRadioProps, };