@ringcentral/juno 2.45.1 → 3.0.0-alpha.0
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/Accordion/Accordion.d.ts +2 -4
- package/components/Accordion/Accordion.js +5 -4
- package/components/Accordion/AccordionDetails/AccordionDetails.d.ts +2 -4
- package/components/Accordion/AccordionDetails/AccordionDetails.js +5 -4
- package/components/Accordion/AccordionDetails/styles/AccordionDetailsStyle.js +4 -2
- package/components/Accordion/AccordionDetails/utils/AccordionDetailsUtils.js +2 -1
- package/components/Accordion/AccordionSummary/AccordionSummary.d.ts +2 -4
- package/components/Accordion/AccordionSummary/AccordionSummary.js +6 -5
- package/components/Accordion/AccordionSummary/styles/AccordionSummaryStyle.js +4 -2
- package/components/Accordion/AccordionSummary/utils/AccordionSummaryUtils.js +2 -1
- package/components/Accordion/styles/AccordionStyle.js +6 -4
- package/components/Accordion/utils/AccordionUtils.js +2 -1
- package/components/Alert/Alert.d.ts +3 -5
- package/components/Alert/Alert.js +5 -4
- package/components/Alert/styles/AlertStyle.d.ts +2 -2
- package/components/Alert/styles/AlertStyle.js +4 -2
- package/components/Alert/utils/AlertUtils.js +12 -11
- package/components/Animations/Highlight/Highlight.d.ts +5 -5
- package/components/Animations/Highlight/Highlight.js +17 -16
- package/components/Animations/Highlight/utils/getStyle.d.ts +1 -1
- package/components/Animations/Highlight/utils/getStyle.js +3 -2
- package/components/AppBar/AppBar.d.ts +3 -5
- package/components/AppBar/AppBar.js +3 -2
- package/components/Avatar/Avatar.d.ts +4 -4
- package/components/Avatar/Avatar.js +16 -15
- package/components/Avatar/styles/StyledAvatar.d.ts +2 -4
- package/components/Avatar/styles/StyledAvatar.js +6 -6
- package/components/Avatar/styles/StyledAvatarWrapper.d.ts +2 -4
- package/components/Avatar/styles/StyledAvatarWrapper.js +7 -9
- package/components/Avatar/styles/StyledIconAvatar.d.ts +3 -5
- package/components/Avatar/styles/StyledIconAvatar.js +2 -1
- package/components/Avatar/styles/StyledMask.d.ts +3 -2
- package/components/Avatar/styles/StyledMask.js +2 -1
- package/components/Avatar/styles/StyledPresenceWrapper.d.ts +5 -9
- package/components/Avatar/styles/StyledPresenceWrapper.js +1 -0
- package/components/Avatar/utils/AvatarUtils.js +2 -1
- package/components/Avatar/utils/useAvatarColorToken.d.ts +3 -4
- package/components/Avatar/utils/useAvatarColorToken.js +5 -3
- package/components/Avatar/utils/useAvatarShortName.d.ts +1 -1
- package/components/Avatar/utils/useAvatarShortName.js +6 -4
- package/components/Backdrop/Backdrop.d.ts +2 -4
- package/components/Backdrop/Backdrop.js +5 -4
- package/components/Backdrop/deprecated/Backdrop.d.ts +2 -2
- package/components/Backdrop/deprecated/Backdrop.js +1 -0
- package/components/Backdrop/styles/BackdropStyle.js +4 -2
- package/components/Backdrop/utils/BackdropUtils.js +2 -1
- package/components/Badge/Badge.d.ts +2 -4
- package/components/Badge/Badge.js +10 -9
- package/components/Badge/DotBadge.d.ts +2 -2
- package/components/Badge/DotBadge.js +7 -6
- package/components/Badge/styles/BadgeStyle.d.ts +1 -3
- package/components/Badge/styles/BadgeStyle.js +10 -13
- package/components/Badge/utils/BadgeUtils.js +4 -2
- package/components/Badge/utils/useRoundBadgeOffset.js +7 -5
- package/components/Box/Box.d.ts +5 -5
- package/components/Box/Box.js +3 -2
- package/components/Buttons/Button/Button.d.ts +325 -8
- package/components/Buttons/Button/Button.js +18 -21
- package/components/Buttons/Button/styles/StyledButton.js +22 -27
- package/components/Buttons/Button/utils/ButtonUtils.js +14 -13
- package/components/Buttons/Button/utils/getButtonIconSize.d.ts +1 -1
- package/components/Buttons/Button/utils/getButtonIconSize.js +1 -0
- package/components/Buttons/ButtonBase/ButtonBase.d.ts +2 -4
- package/components/Buttons/ButtonBase/ButtonBase.js +2 -1
- package/components/Buttons/ButtonGroup/ButtonGroup.d.ts +15 -4
- package/components/Buttons/ButtonGroup/ButtonGroup.js +4 -3
- package/components/Buttons/ButtonGroup/styles/index.js +2 -0
- package/components/Buttons/ButtonGroup/utils/index.js +2 -0
- package/components/Buttons/IconButton/IconButton.d.ts +383 -6
- package/components/Buttons/IconButton/IconButton.js +10 -17
- package/components/Buttons/IconButton/deprecated/IconButtonProps.d.ts +5 -5
- package/components/Buttons/IconButton/deprecated/IconButtonProps.js +1 -0
- package/components/Buttons/IconButton/styles/StyledIconButton.d.ts +2 -2
- package/components/Buttons/IconButton/styles/StyledIconButton.js +33 -39
- package/components/Buttons/IconButton/utils/IconButtonUtils.d.ts +2 -2
- package/components/Buttons/IconButton/utils/IconButtonUtils.js +4 -3
- package/components/Buttons/IconButtonGroup/IconButtonGroup.d.ts +2 -4
- package/components/Buttons/IconButtonGroup/IconButtonGroup.js +7 -6
- package/components/Buttons/IconButtonGroup/styles/IconButtonGroupStyle.js +7 -6
- package/components/Buttons/SplitButton/SplitButton.d.ts +6 -8
- package/components/Buttons/SplitButton/SplitButton.js +28 -28
- package/components/Buttons/SplitButton/styles/StyledArrowIcon.d.ts +3 -4
- package/components/Buttons/SplitButton/styles/StyledArrowIcon.js +2 -1
- package/components/Buttons/SplitButton/styles/StyledSplitButton.js +19 -28
- package/components/Buttons/SplitButton/utils/SplitButtonUtils.d.ts +3 -3
- package/components/Buttons/SplitButton/utils/SplitButtonUtils.js +7 -4
- package/components/Buttons/ToggleButton/ToggleButton.d.ts +3 -5
- package/components/Buttons/ToggleButton/ToggleButton.js +9 -8
- package/components/Buttons/ToggleButton/styles/ToggleButtonStyle.js +7 -8
- package/components/Buttons/ToggleButton/utils/ToggleButtonUtils.js +5 -4
- package/components/Buttons/ToggleButtonGroup/ToggleButtonGroup.d.ts +2 -4
- package/components/Buttons/ToggleButtonGroup/ToggleButtonGroup.js +6 -5
- package/components/Buttons/ToggleButtonGroup/styles/ToggleButtonGroupStyle.js +7 -6
- package/components/Buttons/ToggleButtonGroup/styles/boxStyle.js +11 -12
- package/components/Buttons/ToggleButtonGroup/styles/standardStyle.js +10 -12
- package/components/Buttons/ToggleButtonGroup/utils/ToggleButtonGroupUtils.js +3 -2
- package/components/Card/Card/Card.d.ts +3 -5
- package/components/Card/Card/Card.js +8 -7
- package/components/Card/Card/CardContext.d.ts +1 -2
- package/components/Card/Card/CardContext.js +4 -2
- package/components/Card/Card/styles/CardStyles.js +4 -3
- package/components/Card/Card/utils/CardUtils.js +2 -1
- package/components/Card/CardActionArea/CardActionArea.d.ts +3 -17
- package/components/Card/CardActionArea/CardActionArea.js +13 -12
- package/components/Card/CardActionArea/styles/CardActionAreaStyle.js +5 -3
- package/components/Card/CardActionArea/utils/CardActionAreaUtils.d.ts +1 -1
- package/components/Card/CardActionArea/utils/CardActionAreaUtils.js +3 -2
- package/components/Card/CardActions/CardActions.d.ts +2 -4
- package/components/Card/CardActions/CardActions.js +5 -4
- package/components/Card/CardActions/styles/CardActionsStyle.js +4 -2
- package/components/Card/CardActions/utils/CardActionsUtils.js +2 -1
- package/components/Card/CardContent/CardContent.d.ts +6 -4
- package/components/Card/CardContent/CardContent.js +5 -4
- package/components/Card/CardContent/styles/CardContentStyle.js +4 -2
- package/components/Card/CardContent/utils/CardContentUtils.js +2 -1
- package/components/Card/CardHeader/CardHeader.d.ts +18 -18
- package/components/Card/CardHeader/CardHeader.js +5 -4
- package/components/Card/CardHeader/styles/CardHeaderStyle.js +4 -2
- package/components/Card/CardHeader/utils/CardHeaderUtils.js +2 -1
- package/components/Card/CardHoverActions/CardHoverActions.d.ts +3 -5
- package/components/Card/CardHoverActions/CardHoverActions.js +6 -5
- package/components/Card/CardHoverActions/styles/CardHoverActionsStyle.js +6 -4
- package/components/Card/CardHoverActions/utils/CardHoverActionsUtils.js +2 -1
- package/components/Card/CardMedia/CardMedia.d.ts +10 -18
- package/components/Card/CardMedia/CardMedia.js +5 -4
- package/components/Card/CardMedia/styles/CardMediaStyle.js +4 -2
- package/components/Card/CardMedia/utils/CardMediaUtils.js +2 -1
- package/components/Card/CardSelectionArea/CardSelectionArea.d.ts +3 -5
- package/components/Card/CardSelectionArea/CardSelectionArea.js +9 -8
- package/components/Card/CardSelectionArea/styles/CardSelectionAreaStyle.js +4 -2
- package/components/Card/CardSelectionArea/utils/CardSelectionAreaUtils.d.ts +1 -1
- package/components/Card/CardSelectionArea/utils/CardSelectionAreaUtils.js +2 -1
- package/components/Chip/Chip.d.ts +4 -18
- package/components/Chip/Chip.js +14 -13
- package/components/Chip/styles/ChipStyle.js +17 -18
- package/components/Chip/utils/ChipUtils.d.ts +1 -1
- package/components/Chip/utils/ChipUtils.js +2 -1
- package/components/ClickAwayListener/ClickAwayListener.js +1 -0
- package/components/DetachedWindow/DetachedWindow.d.ts +2 -2
- package/components/DetachedWindow/DetachedWindow.js +16 -15
- package/components/DetachedWindow/DetachedWindowStylesProvider.d.ts +6 -2
- package/components/DetachedWindow/DetachedWindowStylesProvider.js +8 -6
- package/components/DetachedWindow/styles/DetachedWindowStyle.d.ts +1 -1
- package/components/DetachedWindow/styles/DetachedWindowStyle.js +2 -1
- package/components/DetachedWindow/utils/DetachedWindowUtils.js +1 -0
- package/components/DetachedWindow/utils/JssDomRendererFactory.d.ts +4 -4
- package/components/DetachedWindow/utils/JssDomRendererFactory.js +4 -3
- package/components/DetachedWindow/utils/index.js +1 -0
- package/components/DetachedWindow/utils/openExternalWindow.d.ts +0 -1
- package/components/DetachedWindow/utils/openExternalWindow.js +7 -5
- package/components/Dialer/DialDelete/DialDelete.d.ts +1 -1
- package/components/Dialer/DialDelete/DialDelete.js +5 -4
- package/components/Dialer/DialPad/DialPad.d.ts +14 -68
- package/components/Dialer/DialPad/DialPad.js +29 -26
- package/components/Dialer/DialPad/assets/index.js +1 -0
- package/components/Dialer/DialPad/styles/StyledDialPad.js +4 -3
- package/components/Dialer/DialPad/utils/DialPadUtils.d.ts +3 -3
- package/components/Dialer/DialPad/utils/DialPadUtils.js +4 -3
- package/components/Dialer/DialPad/utils/index.js +1 -0
- package/components/Dialer/DialPad/utils/types.d.ts +2 -2
- package/components/Dialer/DialPad/utils/useDialKeyboard.d.ts +1 -1
- package/components/Dialer/DialPad/utils/useDialKeyboard.js +8 -6
- package/components/Dialer/DialPad/utils/useKeyAudio.d.ts +1 -1
- package/components/Dialer/DialPad/utils/useKeyAudio.js +7 -5
- package/components/Dialer/DialPadButton/DialPadButton.d.ts +3 -4
- package/components/Dialer/DialPadButton/DialPadButton.js +3 -2
- package/components/Dialer/DialPadButton/styles/StyledDialPadButton.d.ts +1 -1
- package/components/Dialer/DialPadButton/styles/StyledDialPadButton.js +2 -1
- package/components/Dialer/DialTextField/DialTextField.d.ts +2 -4
- package/components/Dialer/DialTextField/DialTextField.js +26 -25
- package/components/Dialer/DialTextField/styles/DialTextFieldStyle.js +4 -2
- package/components/Dialer/DialTextField/utils/DialTextFieldUtils.js +3 -2
- package/components/Dialer/DialTextField/utils/getDialPadValueOnlyRegex.js +1 -0
- package/components/Dialer/DialTextField/utils/useFixedEndSelection.d.ts +1 -2
- package/components/Dialer/DialTextField/utils/useFixedEndSelection.js +7 -5
- package/components/Dialer/Dialer.d.ts +4 -2
- package/components/Dialer/Dialer.js +6 -5
- package/components/Dialer/utils/DialerContext.d.ts +1 -2
- package/components/Dialer/utils/DialerContext.js +3 -2
- package/components/Dialog/Dialog.d.ts +3 -5
- package/components/Dialog/Dialog.js +11 -10
- package/components/Dialog/DialogActions/DialogActions.d.ts +277 -4
- package/components/Dialog/DialogActions/DialogActions.js +7 -7
- package/components/Dialog/DialogActions/styles/DialogActionsStyle.js +9 -12
- package/components/Dialog/DialogActions/utils/DialogActionsUtils.d.ts +1 -1
- package/components/Dialog/DialogActions/utils/DialogActionsUtils.js +2 -1
- package/components/Dialog/DialogContent/DialogContent.d.ts +3 -3
- package/components/Dialog/DialogContent/DialogContent.js +5 -4
- package/components/Dialog/DialogContent/styles/DialogContentStyle.js +4 -2
- package/components/Dialog/DialogContent/utils/DialogContentUtils.d.ts +1 -1
- package/components/Dialog/DialogContent/utils/DialogContentUtils.js +4 -2
- package/components/Dialog/DialogContentText/DialogContentText.d.ts +14 -4
- package/components/Dialog/DialogContentText/DialogContentText.js +7 -6
- package/components/Dialog/DialogContentText/styles/DialogContentTextStyle.js +4 -2
- package/components/Dialog/DialogContentText/utils/DialogContentTextUtils.js +2 -1
- package/components/Dialog/DialogTitle/DialogTitle.d.ts +3 -3
- package/components/Dialog/DialogTitle/DialogTitle.js +6 -5
- package/components/Dialog/DialogTitle/styles/DialogTitleStyle.js +4 -2
- package/components/Dialog/DialogTitle/utils/DialogTitleUtils.js +2 -1
- package/components/Dialog/styles/DialogStyle.js +6 -6
- package/components/Dialog/utils/DialogContext.d.ts +3 -4
- package/components/Dialog/utils/DialogContext.js +7 -4
- package/components/Dialog/utils/DialogUtils.js +2 -1
- package/components/Divider/Divider.d.ts +7 -22
- package/components/Divider/Divider.js +4 -3
- package/components/Divider/styles/StyledDivider.js +5 -4
- package/components/DnD/DragDropContext/DragDropContext.d.ts +1 -1
- package/components/DnD/DragDropContext/DragDropContext.js +2 -1
- package/components/DnD/DragDropContext/styles/StyledGlobalDraggable.d.ts +1 -1
- package/components/DnD/DragDropContext/styles/StyledGlobalDraggable.js +2 -1
- package/components/DnD/DragHandle/DragHandle.d.ts +6 -8
- package/components/DnD/DragHandle/DragHandle.js +5 -4
- package/components/DnD/DragHandle/styles/StyledDragHandle.js +4 -2
- package/components/DnD/DragHandle/utils/DragHandleUtils.js +2 -1
- package/components/DnD/Draggable/Draggable.d.ts +8 -13
- package/components/DnD/Draggable/Draggable.js +8 -7
- package/components/DnD/Draggable/utils/DraggableUtils.d.ts +2 -1
- package/components/DnD/Draggable/utils/DraggableUtils.js +5 -3
- package/components/DnD/Droppable/Droppable.d.ts +4 -6
- package/components/DnD/Droppable/Droppable.js +5 -4
- package/components/Downshift/Downshift.d.ts +3 -3
- package/components/Downshift/Downshift.js +33 -32
- package/components/Downshift/SuggestionList/SuggestionList.d.ts +8 -52
- package/components/Downshift/SuggestionList/SuggestionList.js +31 -29
- package/components/Downshift/SuggestionList/styles/SuggestionListStyle.js +4 -2
- package/components/Downshift/SuggestionList/utils/SuggestionListUtils.js +2 -1
- package/components/Downshift/SuggestionList/utils/useSuggestionList.d.ts +266 -227
- package/components/Downshift/SuggestionList/utils/useSuggestionList.js +28 -26
- package/components/Downshift/styles/DownshiftInput.js +3 -1
- package/components/Downshift/styles/DownshiftStyle.d.ts +351 -5
- package/components/Downshift/styles/DownshiftStyle.js +5 -3
- package/components/Downshift/styles/StyledPopper.d.ts +3 -5
- package/components/Downshift/styles/StyledPopper.js +5 -5
- package/components/Downshift/styles/StyledTextField.d.ts +2 -4
- package/components/Downshift/styles/StyledTextField.js +3 -2
- package/components/Downshift/utils/DownshiftUtils.d.ts +2 -2
- package/components/Downshift/utils/DownshiftUtils.js +17 -8
- package/components/Downshift/utils/SelectItem.d.ts +2 -2
- package/components/Downshift/utils/index.js +2 -0
- package/components/Downshift/utils/useDownshift.d.ts +800 -455
- package/components/Downshift/utils/useDownshift.interface.d.ts +4 -4
- package/components/Downshift/utils/useDownshift.js +36 -34
- package/components/Downshift/utils/useDownshiftError.js +9 -7
- package/components/Downshift/utils/useDownshiftGroup.d.ts +3 -2
- package/components/Downshift/utils/useDownshiftGroup.js +16 -14
- package/components/Downshift/utils/useDownshiftTag.d.ts +503 -226
- package/components/Downshift/utils/useDownshiftTag.js +23 -21
- package/components/Drawer/Drawer.d.ts +2 -4
- package/components/Drawer/Drawer.js +10 -9
- package/components/Drawer/styles/DrawerStyle.js +5 -4
- package/components/Drawer/utils/DrawerUtils.js +2 -1
- package/components/Forms/BaseForm.d.ts +1 -1
- package/components/Forms/Checkbox/Checkbox.d.ts +4 -6
- package/components/Forms/Checkbox/Checkbox.js +8 -7
- package/components/Forms/Checkbox/styles/CheckboxStyle.js +4 -2
- package/components/Forms/Checkbox/utils/CheckboxUtils.js +2 -1
- package/components/Forms/Form/Form/Form.d.ts +2 -2
- package/components/Forms/Form/Form/Form.js +5 -4
- package/components/Forms/Form/Form/FormContext.d.ts +0 -1
- package/components/Forms/Form/Form/FormContext.js +3 -2
- package/components/Forms/Form/Form/index.js +1 -0
- package/components/Forms/Form/Form/types.d.ts +2 -2
- package/components/Forms/FormControl.d.ts +2 -4
- package/components/Forms/FormControl.js +2 -1
- package/components/Forms/FormControlLabel/FormControlLabel.d.ts +2 -4
- package/components/Forms/FormControlLabel/FormControlLabel.js +5 -4
- package/components/Forms/FormControlLabel/styles/FormControlLabelStyle.js +5 -3
- package/components/Forms/FormControlLabel/styles/StyledControl.d.ts +1 -3
- package/components/Forms/FormControlLabel/styles/StyledControl.js +1 -0
- package/components/Forms/FormControlLabel/utils/FormControlLabelUtils.js +2 -1
- package/components/Forms/FormGroup/FormGroup.d.ts +2 -4
- package/components/Forms/FormGroup/FormGroup.js +4 -3
- package/components/Forms/FormHelperText/FormHelperText.d.ts +13 -4
- package/components/Forms/FormHelperText/FormHelperText.js +5 -4
- package/components/Forms/FormHelperText/styles/StyledFormHelperText.d.ts +12 -3
- package/components/Forms/FormHelperText/styles/StyledFormHelperText.js +3 -2
- package/components/Forms/FormHelperText/utils/FormHelperTextUtils.js +2 -1
- package/components/Forms/FormLabel.d.ts +2 -4
- package/components/Forms/FormLabel.js +4 -3
- package/components/Forms/InputLabel/InputLabel.d.ts +2 -4
- package/components/Forms/InputLabel/InputLabel.js +5 -4
- package/components/Forms/InputLabel/styles/StyledInputLabel.d.ts +1 -3
- package/components/Forms/InputLabel/styles/StyledInputLabel.js +3 -2
- package/components/Forms/InputLabel/utils/InputLabelUtils.js +2 -1
- package/components/Forms/Picker/DatePicker/Calendar.d.ts +5 -6
- package/components/Forms/Picker/DatePicker/Calendar.js +36 -35
- package/components/Forms/Picker/DatePicker/DatePicker.d.ts +10 -45
- package/components/Forms/Picker/DatePicker/DatePicker.js +30 -29
- package/components/Forms/Picker/DatePicker/DatePickerHeader.d.ts +3 -2
- package/components/Forms/Picker/DatePicker/DatePickerHeader.js +6 -5
- package/components/Forms/Picker/DatePicker/Day.d.ts +2 -4
- package/components/Forms/Picker/DatePicker/Day.js +3 -2
- package/components/Forms/Picker/DatePicker/Year.d.ts +1 -1
- package/components/Forms/Picker/DatePicker/Year.js +6 -5
- package/components/Forms/Picker/DatePicker/Years.d.ts +4 -3
- package/components/Forms/Picker/DatePicker/Years.js +12 -11
- package/components/Forms/Picker/DatePicker/styles/StyledCalendar.d.ts +9 -26
- package/components/Forms/Picker/DatePicker/styles/StyledCalendar.js +16 -19
- package/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.d.ts +355 -9
- package/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.js +10 -11
- package/components/Forms/Picker/DatePicker/styles/StyledDay.js +5 -3
- package/components/Forms/Picker/DatePicker/styles/StyledYear.d.ts +1 -4
- package/components/Forms/Picker/DatePicker/styles/StyledYear.js +2 -1
- package/components/Forms/Picker/DatePicker/styles/StyledYears.d.ts +2 -4
- package/components/Forms/Picker/DatePicker/styles/StyledYears.js +1 -0
- package/components/Forms/Picker/DatePicker/utils/DatePickerAriaLabelUtils.d.ts +3 -2
- package/components/Forms/Picker/DatePicker/utils/DatePickerAriaLabelUtils.js +3 -2
- package/components/Forms/Picker/DatePicker/utils/DatePickerUtils.d.ts +6 -5
- package/components/Forms/Picker/DatePicker/utils/DatePickerUtils.js +15 -10
- package/components/Forms/Picker/TimePicker/NumberPicker.d.ts +7 -38
- package/components/Forms/Picker/TimePicker/NumberPicker.js +18 -17
- package/components/Forms/Picker/TimePicker/SelectionView.d.ts +1 -1
- package/components/Forms/Picker/TimePicker/SelectionView.js +4 -3
- package/components/Forms/Picker/TimePicker/TimePicker.d.ts +5 -5
- package/components/Forms/Picker/TimePicker/TimePicker.js +51 -50
- package/components/Forms/Picker/TimePicker/ToggleText.d.ts +4 -22
- package/components/Forms/Picker/TimePicker/ToggleText.js +10 -9
- package/components/Forms/Picker/TimePicker/constant.js +2 -2
- package/components/Forms/Picker/TimePicker/styles/StyledNumberPicker.d.ts +1 -3
- package/components/Forms/Picker/TimePicker/styles/StyledNumberPicker.js +2 -1
- package/components/Forms/Picker/TimePicker/styles/StyledPickerPopperWrap.d.ts +1 -3
- package/components/Forms/Picker/TimePicker/styles/StyledPickerPopperWrap.js +3 -3
- package/components/Forms/Picker/TimePicker/styles/StyledSelectionItem.d.ts +1 -4
- package/components/Forms/Picker/TimePicker/styles/StyledSelectionItem.js +3 -3
- package/components/Forms/Picker/TimePicker/styles/StyledSelectionView.d.ts +1 -3
- package/components/Forms/Picker/TimePicker/styles/StyledSelectionView.js +3 -3
- package/components/Forms/Picker/TimePicker/styles/StyledTimeIconButton.d.ts +2 -4
- package/components/Forms/Picker/TimePicker/styles/StyledTimeIconButton.js +6 -7
- package/components/Forms/Picker/TimePicker/types.d.ts +1 -1
- package/components/Forms/Picker/TimePicker/utils/A11yUtils.js +1 -0
- package/components/Forms/Picker/TimePicker/utils/TimeBoundary.js +11 -9
- package/components/Forms/Picker/TimePicker/utils/TimePickerHelper.d.ts +5 -5
- package/components/Forms/Picker/TimePicker/utils/TimePickerHelper.js +8 -7
- package/components/Forms/Picker/TimePicker/utils/TimePickerUtils.d.ts +2 -2
- package/components/Forms/Picker/TimePicker/utils/TimePickerUtils.js +4 -3
- package/components/Forms/Picker/TimePicker/utils/getNumberPickerBoundary.d.ts +1 -1
- package/components/Forms/Picker/TimePicker/utils/getNumberPickerBoundary.js +2 -1
- package/components/Forms/Picker/styles/PickerBaseIconButton.d.ts +2 -2
- package/components/Forms/Picker/styles/PickerBaseIconButton.js +2 -1
- package/components/Forms/Picker/styles/StyledPickerTextField.d.ts +1 -3
- package/components/Forms/Picker/styles/StyledPickerTextField.js +4 -3
- package/components/Forms/Picker/styles/StyledPopover.d.ts +1 -4
- package/components/Forms/Picker/styles/StyledPopover.js +2 -1
- package/components/Forms/Picker/styles/datePickerCustomFocusRingStyle.js +4 -3
- package/components/Forms/Picker/utils/PickerTextField/PickerTextField.d.ts +6 -11
- package/components/Forms/Picker/utils/PickerTextField/PickerTextField.js +20 -19
- package/components/Forms/Radio/Radio.d.ts +4 -6
- package/components/Forms/Radio/Radio.js +7 -6
- package/components/Forms/Radio/styles/RadioStyle.js +6 -4
- package/components/Forms/Radio/utils/RadioUtils.js +3 -2
- package/components/Forms/RadioGroup/RadioGroup.d.ts +2 -4
- package/components/Forms/RadioGroup/RadioGroup.js +4 -3
- package/components/Forms/Select/PlainSelect/PlainSelect.d.ts +3 -5
- package/components/Forms/Select/PlainSelect/PlainSelect.js +14 -13
- package/components/Forms/Select/PlainSelect/styles/StyledSelect.js +7 -5
- package/components/Forms/Select/PlainSelect/utils/PlainSelectUtils.d.ts +1 -1
- package/components/Forms/Select/PlainSelect/utils/PlainSelectUtils.js +3 -2
- package/components/Forms/Select/Select.d.ts +4 -6
- package/components/Forms/Select/Select.js +15 -14
- package/components/Forms/Select/styles/SelectArrowDownIcon.d.ts +2 -4
- package/components/Forms/Select/styles/SelectArrowDownIcon.js +4 -3
- package/components/Forms/Select/styles/StyledSelect.js +16 -15
- package/components/Forms/Select/utils/SelectInput/SelectInput.d.ts +2 -2
- package/components/Forms/Select/utils/SelectInput/SelectInput.js +18 -17
- package/components/Forms/Select/utils/SelectUtils.d.ts +1 -1
- package/components/Forms/Select/utils/SelectUtils.js +6 -5
- package/components/Forms/Slider/Slider.d.ts +2 -4
- package/components/Forms/Slider/Slider.js +5 -4
- package/components/Forms/Slider/styles/SliderStyle.js +6 -4
- package/components/Forms/Slider/utils/SliderUtil.js +2 -1
- package/components/Forms/Switch/Switch.d.ts +4 -6
- package/components/Forms/Switch/Switch.js +8 -7
- package/components/Forms/Switch/styles/SwitchStyle.js +12 -10
- package/components/Forms/Switch/utils/SwitchUtils.d.ts +1 -1
- package/components/Forms/Switch/utils/SwitchUtils.js +2 -1
- package/components/Forms/TextField/TextField.d.ts +362 -7
- package/components/Forms/TextField/TextField.js +24 -23
- package/components/Forms/TextField/styles/ClearIconButton.d.ts +9 -2
- package/components/Forms/TextField/styles/ClearIconButton.js +4 -3
- package/components/Forms/TextField/styles/OutlineTextFieldStyle.js +8 -6
- package/components/Forms/TextField/styles/TextFieldStyle.d.ts +1 -1
- package/components/Forms/TextField/styles/TextFieldStyle.js +19 -19
- package/components/Forms/TextField/utils/OutlineTextFieldUtils.js +2 -1
- package/components/Forms/TextField/utils/TextFieldUtils.d.ts +2 -2
- package/components/Forms/TextField/utils/TextFieldUtils.js +9 -7
- package/components/Forms/Textarea/Textarea.d.ts +2 -4
- package/components/Forms/Textarea/Textarea.js +6 -5
- package/components/Forms/Textarea/styles/TextareaStyle.js +4 -3
- package/components/Forms/Textarea/utils/TextareaUtils.js +2 -1
- package/components/Forms/index.js +1 -0
- package/components/Forms/utils/CustomIconPropsGetter.d.ts +3 -8
- package/components/Forms/utils/CustomIconPropsGetter.js +5 -3
- package/components/Forms/utils/checkedStyles.d.ts +2 -2
- package/components/Forms/utils/checkedStyles.js +9 -8
- package/components/Grid/Grid.d.ts +21 -4
- package/components/Grid/Grid.js +5 -4
- package/components/Grid/styles/GridStyle.js +4 -2
- package/components/Grid/utils/GridUtils.js +2 -1
- package/components/Hidden/Hidden.d.ts +1 -2
- package/components/Hidden/Hidden.js +1 -0
- package/components/Icon/Icon.d.ts +13 -38
- package/components/Icon/Icon.js +9 -8
- package/components/Icon/name2icon.d.ts +1 -1
- package/components/Icon/name2icon.js +1 -0
- package/components/Icon/styles/IconStyle.js +7 -5
- package/components/Icon/styles/iconSvg.d.ts +1 -3
- package/components/Icon/styles/iconSvg.js +3 -2
- package/components/Icon/utils/IconService.d.ts +2 -2
- package/components/Icon/utils/IconService.js +3 -2
- package/components/Icon/utils/IconUtils.js +5 -4
- package/components/InlineEditable/InlineEditable.d.ts +69 -6
- package/components/InlineEditable/InlineEditable.js +28 -27
- package/components/InlineEditable/styles/InlineEditableStyle.js +5 -5
- package/components/InlineEditable/styles/textFieldStyle.d.ts +2 -2
- package/components/InlineEditable/styles/textFieldStyle.js +5 -4
- package/components/InlineEditable/utils/InlineEditableUtils.js +2 -1
- package/components/Link/Link.d.ts +25 -5
- package/components/Link/Link.js +6 -5
- package/components/Link/styles/StyledLink.js +8 -7
- package/components/Link/utils/LinkUtils.js +1 -0
- package/components/List/List/List.d.ts +8 -4
- package/components/List/List/List.js +5 -4
- package/components/List/List/styles/ListStyle.js +4 -2
- package/components/List/List/utils/ListUtils.js +2 -1
- package/components/List/ListItem/ListItem.d.ts +324 -6
- package/components/List/ListItem/ListItem.js +11 -14
- package/components/List/ListItem/styles/ListItemStyle.d.ts +1 -1
- package/components/List/ListItem/styles/ListItemStyle.js +14 -16
- package/components/List/ListItem/utils/ListItemUtils.d.ts +2 -2
- package/components/List/ListItem/utils/ListItemUtils.js +7 -6
- package/components/List/ListItemAvatar/ListItemAvatar.d.ts +2 -4
- package/components/List/ListItemAvatar/ListItemAvatar.js +5 -4
- package/components/List/ListItemAvatar/styles/ListItemAvatarStyle.js +3 -1
- package/components/List/ListItemAvatar/utils/ListItemAvatarUtils.js +2 -1
- package/components/List/ListItemIcon/ListItemIcon.d.ts +2 -4
- package/components/List/ListItemIcon/ListItemIcon.js +5 -4
- package/components/List/ListItemIcon/styles/ListItemIconStyle.js +4 -2
- package/components/List/ListItemIcon/utils/ListItemIconUtils.js +2 -1
- package/components/List/ListItemSecondaryAction/ListItemSecondaryAction.d.ts +2 -4
- package/components/List/ListItemSecondaryAction/ListItemSecondaryAction.js +9 -8
- package/components/List/ListItemSecondaryAction/styles/ListItemSecondaryActionStyle.js +4 -2
- package/components/List/ListItemSecondaryAction/utils/ListItemSecondaryActionUtils.js +2 -1
- package/components/List/ListItemText/ListItemText.d.ts +3 -5
- package/components/List/ListItemText/ListItemText.js +8 -7
- package/components/List/ListItemText/styles/ListItemTextStyle.js +9 -8
- package/components/List/ListItemText/utils/ListItemTextUtils.js +2 -1
- package/components/List/ListSubheader/ListSubheader.d.ts +2 -4
- package/components/List/ListSubheader/ListSubheader.js +5 -4
- package/components/List/ListSubheader/styles/ListSubheaderStyle.js +4 -2
- package/components/List/ListSubheader/utils/ListSubheaderUtils.js +2 -1
- package/components/Loading/Loading.d.ts +1 -1
- package/components/Loading/Loading.js +3 -2
- package/components/Loading/styles/StyledLoadingPage.d.ts +2 -2
- package/components/Loading/styles/StyledLoadingPage.js +5 -5
- package/components/Menu/Menu/Menu.d.ts +2 -4
- package/components/Menu/Menu/Menu.js +12 -11
- package/components/Menu/Menu/MenuContext.d.ts +2 -3
- package/components/Menu/Menu/MenuContext.js +2 -1
- package/components/Menu/Menu/styles/MenuStyle.js +4 -2
- package/components/Menu/Menu/utils/MenuUtils.js +2 -1
- package/components/Menu/MenuItem/MenuItem.d.ts +346 -48
- package/components/Menu/MenuItem/MenuItem.js +26 -27
- package/components/Menu/MenuItem/styles/MenuItemStyle.d.ts +7 -32
- package/components/Menu/MenuItem/styles/MenuItemStyle.js +6 -5
- package/components/Menu/MenuItem/utils/MenuItemUtils.d.ts +2 -2
- package/components/Menu/MenuItem/utils/MenuItemUtils.js +8 -7
- package/components/Menu/MenuItemActionWrapper/MenuItemActionWrapper.d.ts +1 -3
- package/components/Menu/MenuItemActionWrapper/MenuItemActionWrapper.js +1 -0
- package/components/Menu/MenuItemActionWrapper/styles/StyledMenuItemActionWrapper.d.ts +1 -3
- package/components/Menu/MenuItemActionWrapper/styles/StyledMenuItemActionWrapper.js +2 -1
- package/components/Menu/MenuItemSubAction/MenuItemSubAction.d.ts +2 -4
- package/components/Menu/MenuItemSubAction/MenuItemSubAction.js +1 -0
- package/components/Menu/MenuItemSubAction/styles/StyledMenuItemSubAction.d.ts +2 -3
- package/components/Menu/MenuItemSubAction/styles/StyledMenuItemSubAction.js +2 -1
- package/components/Menu/MenuList/MenuList.d.ts +2 -4
- package/components/Menu/MenuList/MenuList.js +11 -10
- package/components/Menu/MenuList/MenuListContext.d.ts +2 -3
- package/components/Menu/MenuList/MenuListContext.js +2 -1
- package/components/Menu/MenuList/styles/MenuListStyle.d.ts +1 -1
- package/components/Menu/MenuList/styles/MenuListStyle.js +5 -3
- package/components/Menu/MenuList/utils/MenuListUtils.js +2 -1
- package/components/Menu/MenuOption/MenuOption.d.ts +1 -1
- package/components/Menu/MenuOption/MenuOption.js +2 -1
- package/components/Menu/MenuOption/styles/StyledMenuOption.d.ts +3 -3
- package/components/Menu/MenuOption/styles/StyledMenuOption.js +2 -1
- package/components/Menu/SubMenu/SubMenu.d.ts +2 -4
- package/components/Menu/SubMenu/SubMenu.js +25 -24
- package/components/Menu/SubMenu/SubMenuContext.d.ts +2 -3
- package/components/Menu/SubMenu/SubMenuContext.js +2 -1
- package/components/Menu/SubMenu/styles/SubMenuStyle.d.ts +2 -7
- package/components/Menu/SubMenu/styles/SubMenuStyle.js +6 -4
- package/components/Menu/SubMenu/utils/SubMenuUtils.d.ts +1 -1
- package/components/Menu/SubMenu/utils/SubMenuUtils.js +2 -1
- package/components/MuiExports/index.d.ts +43 -0
- package/components/MuiExports/index.js +61 -0
- package/components/MuiExports/package.json +5 -0
- package/components/Pagination/Pagination/Pagination.d.ts +2 -4
- package/components/Pagination/Pagination/Pagination.js +5 -4
- package/components/Pagination/Pagination/styles/StyledPagination.js +4 -2
- package/components/Pagination/Pagination/utils/PaginationUtils.js +2 -1
- package/components/Pagination/PaginationItem/PaginationItem.d.ts +15 -18
- package/components/Pagination/PaginationItem/PaginationItem.js +5 -4
- package/components/Pagination/PaginationItem/styles/PaginationItemStyle.js +4 -2
- package/components/Pagination/PaginationItem/utils/PaginationItemUtils.js +2 -1
- package/components/Paper/Paper.d.ts +2 -4
- package/components/Paper/Paper.js +5 -4
- package/components/Paper/deprecated/Paper.d.ts +1 -1
- package/components/Paper/deprecated/Paper.js +1 -0
- package/components/Paper/styles/PaperStyle.js +4 -2
- package/components/Paper/utils/PaperUtils.js +2 -1
- package/components/Popover/Popover.d.ts +2 -4
- package/components/Popover/Popover.js +6 -5
- package/components/Popover/styles/PopoverStyle.js +4 -2
- package/components/Popover/utils/PopoverUtils.js +2 -1
- package/components/Popper/Popper.d.ts +2 -4
- package/components/Popper/Popper.js +5 -4
- package/components/Popper/modifiers/fixOffsetsModifer.js +2 -1
- package/components/Popper/styles/PopperStyle.js +4 -2
- package/components/PopupBox/PopupBox.d.ts +3 -5
- package/components/PopupBox/PopupBox.js +5 -4
- package/components/Portal/Portal.d.ts +1 -1
- package/components/Portal/Portal.js +2 -1
- package/components/PortalHost/Connectable/Connectable.js +2 -1
- package/components/PortalHost/Connectable/ThrottleScheduler.js +1 -0
- package/components/PortalHost/Connectable/types.d.ts +2 -2
- package/components/PortalHost/Connectable/types.js +1 -0
- package/components/PortalHost/PortalHost.d.ts +1 -1
- package/components/PortalHost/PortalHost.js +4 -3
- package/components/PortalHost/PortalManager/PortalManager.js +8 -7
- package/components/PortalHost/PortalManager/PortalStore.d.ts +3 -3
- package/components/PortalHost/PortalManager/PortalStore.js +6 -5
- package/components/PortalHost/PortalManager/types.d.ts +7 -7
- package/components/PortalHost/PortalManager/types.js +1 -0
- package/components/PortalHost/PortalManager/utils.d.ts +1 -1
- package/components/PortalHost/PortalManager/utils.js +3 -1
- package/components/PortalHost/PortalRenderer.d.ts +1 -1
- package/components/PortalHost/PortalRenderer.js +3 -2
- package/components/PortalHost/context/HasPortalParentContext.d.ts +6 -2
- package/components/PortalHost/context/HasPortalParentContext.js +4 -2
- package/components/PortalHost/context/PortalIDContext.d.ts +2 -3
- package/components/PortalHost/context/PortalIDContext.js +2 -1
- package/components/PortalHost/context/PortalManagerContext.d.ts +0 -1
- package/components/PortalHost/context/PortalManagerContext.js +2 -1
- package/components/PortalHost/index.js +2 -1
- package/components/PortalHost/utils/usePortalManagerWithID.d.ts +1 -2
- package/components/PortalHost/utils/usePortalManagerWithID.js +6 -4
- package/components/PortalHost/utils/useUnmountPortalHandler.js +5 -3
- package/components/Presence/Presence.d.ts +8 -19
- package/components/Presence/Presence.js +4 -3
- package/components/Presence/assets/Check.d.ts +1 -1
- package/components/Presence/assets/Check.js +1 -1
- package/components/Presence/assets/Default.d.ts +1 -1
- package/components/Presence/assets/Default.js +1 -1
- package/components/Presence/assets/Dnd.d.ts +1 -1
- package/components/Presence/assets/Dnd.js +1 -1
- package/components/Presence/assets/Offline.d.ts +1 -1
- package/components/Presence/assets/Offline.js +1 -1
- package/components/Presence/assets/Unattended.d.ts +1 -1
- package/components/Presence/assets/Unattended.js +1 -1
- package/components/Presence/assets/index.js +9 -5
- package/components/Presence/styles/StyledPresence.d.ts +7 -5
- package/components/Presence/styles/StyledPresence.js +11 -14
- package/components/Presence/utils/RcPresenceUtils.js +4 -3
- package/components/Progress/CircularProgress/CircularProgress.d.ts +2 -4
- package/components/Progress/CircularProgress/CircularProgress.js +5 -4
- package/components/Progress/CircularProgress/styles/CircularProgressStyle.js +5 -3
- package/components/Progress/CircularProgress/utils/CircularProgressUtils.js +2 -1
- package/components/Progress/LinearProgress/LinearProgress.d.ts +2 -4
- package/components/Progress/LinearProgress/LinearProgress.js +5 -4
- package/components/Progress/LinearProgress/styles/LinearProgressStyle.js +5 -3
- package/components/Progress/LinearProgress/utils/LinearProgressUtils.js +2 -1
- package/components/Progress/styles/StyledCircularProgress.d.ts +2 -3
- package/components/Progress/styles/StyledCircularProgress.js +2 -1
- package/components/Progress/utils/CircularProgressUtils.js +2 -1
- package/components/Rating/Rating.d.ts +2 -4
- package/components/Rating/Rating.js +8 -7
- package/components/Rating/styles/RatingStyle.js +10 -10
- package/components/Rating/utils/RatingUtils.js +2 -1
- package/components/Responsive/Responsive.d.ts +6 -2
- package/components/Responsive/Responsive.js +9 -8
- package/components/Responsive/utils/getMatchedBreakpoint.d.ts +2 -1
- package/components/Responsive/utils/getMatchedBreakpoint.js +4 -2
- package/components/Responsive/utils/index.js +1 -0
- package/components/Responsive/utils/types.d.ts +1 -1
- package/components/Snackbar/Snackbar.d.ts +2 -4
- package/components/Snackbar/Snackbar.js +6 -5
- package/components/Snackbar/SnackbarAction/SnackbarAction.d.ts +3 -5
- package/components/Snackbar/SnackbarAction/SnackbarAction.js +6 -5
- package/components/Snackbar/SnackbarAction/styles/StyledSnackbarContent.js +4 -3
- package/components/Snackbar/SnackbarAction/utils/SnackbarActionUtils.d.ts +1 -1
- package/components/Snackbar/SnackbarAction/utils/SnackbarActionUtils.js +2 -1
- package/components/Snackbar/SnackbarContent/SnackbarContent.d.ts +5 -7
- package/components/Snackbar/SnackbarContent/SnackbarContent.js +8 -7
- package/components/Snackbar/SnackbarContent/styles/StyledSnackbarContent.js +7 -5
- package/components/Snackbar/SnackbarContent/utils/SnackbarContentUtils.js +5 -4
- package/components/Snackbar/styles/SnackbarStyle.js +4 -2
- package/components/Snackbar/utils/SnackbarUtils.js +2 -1
- package/components/Stepper/Step/Step.d.ts +2 -4
- package/components/Stepper/Step/Step.js +5 -4
- package/components/Stepper/Step/styles/StepStyle.js +5 -3
- package/components/Stepper/Step/utils/StepUtils.js +2 -1
- package/components/Stepper/StepButton/StepButton.d.ts +2 -4
- package/components/Stepper/StepButton/StepButton.js +8 -7
- package/components/Stepper/StepButton/styles/StepButtonStyle.js +4 -2
- package/components/Stepper/StepButton/utils/StepButtonUtils.js +2 -1
- package/components/Stepper/StepConnector/StepConnector.d.ts +2 -4
- package/components/Stepper/StepConnector/StepConnector.js +5 -4
- package/components/Stepper/StepConnector/styles/StepConnectorStyle.js +4 -2
- package/components/Stepper/StepConnector/utils/StepConnectorUtils.js +2 -1
- package/components/Stepper/StepContent/StepContent.d.ts +2 -4
- package/components/Stepper/StepContent/StepContent.js +4 -3
- package/components/Stepper/StepContent/styles/StepContentStyle.js +4 -2
- package/components/Stepper/StepContent/utils/StepContentUtils.js +2 -1
- package/components/Stepper/StepIcon/StepIcon.d.ts +4 -4
- package/components/Stepper/StepIcon/StepIcon.js +7 -6
- package/components/Stepper/StepIcon/styles/StepIconStyle.js +4 -2
- package/components/Stepper/StepIcon/styles/StyledCircleIcon.d.ts +3 -5
- package/components/Stepper/StepIcon/styles/StyledCircleIcon.js +5 -3
- package/components/Stepper/StepIcon/utils/StepIconUtils.js +8 -6
- package/components/Stepper/StepLabel/StepLabel.d.ts +2 -4
- package/components/Stepper/StepLabel/StepLabel.js +6 -5
- package/components/Stepper/StepLabel/styles/StepLabelStyle.js +4 -2
- package/components/Stepper/StepLabel/utils/StepLabelUtils.js +2 -1
- package/components/Stepper/Stepper.d.ts +2 -4
- package/components/Stepper/Stepper.js +5 -4
- package/components/Stepper/styles/StepperStyle.js +4 -2
- package/components/Stepper/utils/StepperUtils.js +2 -1
- package/components/Table/Table.d.ts +2 -4
- package/components/Table/Table.js +5 -4
- package/components/Table/TableBody/TableBody.d.ts +4 -4
- package/components/Table/TableBody/TableBody.js +4 -3
- package/components/Table/TableCell/TableCell.d.ts +294 -4
- package/components/Table/TableCell/TableCell.js +8 -7
- package/components/Table/TableCell/styles/TableCellStyle.js +5 -3
- package/components/Table/TableCell/utils/TableCellUtils.d.ts +1 -1
- package/components/Table/TableCell/utils/TableCellUtils.js +2 -1
- package/components/Table/TableContainer/TableContainer.d.ts +2 -4
- package/components/Table/TableContainer/TableContainer.js +4 -3
- package/components/Table/TableContainer/styles/TableContainerStyle.js +4 -3
- package/components/Table/TableHead/TableHead.d.ts +4 -4
- package/components/Table/TableHead/TableHead.js +4 -3
- package/components/Table/TableRow/TableRow.d.ts +2 -4
- package/components/Table/TableRow/TableRow.js +6 -5
- package/components/Table/TableRow/styles/TableRowStyle.js +4 -2
- package/components/Table/TableRow/utils/TableRowUtils.d.ts +1 -1
- package/components/Table/TableRow/utils/TableRowUtils.js +2 -1
- package/components/Table/context.d.ts +1 -2
- package/components/Table/context.js +2 -1
- package/components/Table/index.js +1 -0
- package/components/Table/types.d.ts +2 -2
- package/components/TablePagination/TablePagination.d.ts +2 -4
- package/components/TablePagination/TablePagination.js +8 -7
- package/components/TablePagination/styles/TablePaginationActions.d.ts +2 -2
- package/components/TablePagination/styles/TablePaginationActions.js +5 -4
- package/components/TablePagination/styles/TablePaginationStyle.d.ts +342 -42
- package/components/TablePagination/styles/TablePaginationStyle.js +6 -4
- package/components/TablePagination/utils/TablePaginationUtils.d.ts +1 -1
- package/components/TablePagination/utils/TablePaginationUtils.js +7 -5
- package/components/Tabs/Tab/Tab.d.ts +3 -5
- package/components/Tabs/Tab/Tab.js +5 -4
- package/components/Tabs/Tab/styles/TabStyle.js +4 -3
- package/components/Tabs/Tab/utils/TabUtils.js +2 -1
- package/components/Tabs/TabContext/TabContext.js +4 -3
- package/components/Tabs/TabList/TabList.d.ts +2 -4
- package/components/Tabs/TabList/TabList.js +10 -9
- package/components/Tabs/TabList/styles/TabListStyle.js +4 -2
- package/components/Tabs/TabList/utils/TabListUtils.js +2 -1
- package/components/Tabs/TabPanel/TabPanel.d.ts +2 -4
- package/components/Tabs/TabPanel/TabPanel.js +6 -5
- package/components/Tabs/TabPanel/styles/TabPanelStyle.js +4 -2
- package/components/Tabs/TabPanel/utils/TabPanelUtils.js +2 -1
- package/components/Tabs/Tabs/MoreMenuTab/MoreMenuTab.d.ts +2 -4
- package/components/Tabs/Tabs/MoreMenuTab/MoreMenuTab.js +8 -7
- package/components/Tabs/Tabs/MoreMenuTab/styles/MoreMenuTabStyle.js +5 -4
- package/components/Tabs/Tabs/MoreMenuTabs/MoreMenuTabSentinel.d.ts +1 -1
- package/components/Tabs/Tabs/MoreMenuTabs/MoreMenuTabSentinel.js +2 -1
- package/components/Tabs/Tabs/MoreMenuTabs/MoreMenuTabs.d.ts +3 -5
- package/components/Tabs/Tabs/MoreMenuTabs/MoreMenuTabs.js +23 -22
- package/components/Tabs/Tabs/MoreMenuTabs/utils/MoreMenuTabsUtils.d.ts +5 -2
- package/components/Tabs/Tabs/MoreMenuTabs/utils/index.js +2 -0
- package/components/Tabs/Tabs/Tabs.d.ts +3 -5
- package/components/Tabs/Tabs/Tabs.js +6 -5
- package/components/Tabs/Tabs/styles/TabsStyle.js +4 -2
- package/components/Tabs/Tabs/utils/TabsUtils.js +2 -1
- package/components/Tag/Tag.d.ts +7 -22
- package/components/Tag/Tag.js +5 -4
- package/components/Tag/styles/TagStyle.js +5 -4
- package/components/Tag/utils/TagUtils.d.ts +4 -3
- package/components/Tag/utils/TagUtils.js +1 -0
- package/components/Text/Text.d.ts +3 -4
- package/components/Text/Text.js +14 -12
- package/components/Text/styles/StyledText.js +4 -3
- package/components/Thumbnail/Thumbnail.d.ts +5 -28
- package/components/Thumbnail/Thumbnail.js +5 -4
- package/components/Thumbnail/styles/StyledThumbnail.d.ts +3 -20
- package/components/Thumbnail/styles/StyledThumbnail.js +4 -4
- package/components/Thumbnail/utils/ThumbnailUtils.js +1 -0
- package/components/Toolbar/Toolbar.d.ts +2 -4
- package/components/Toolbar/Toolbar.js +4 -3
- package/components/Tooltip/Tooltip.d.ts +3 -5
- package/components/Tooltip/Tooltip.js +18 -17
- package/components/Tooltip/styles/Mask.d.ts +1 -3
- package/components/Tooltip/styles/Mask.js +1 -0
- package/components/Tooltip/styles/StyledTooltip.js +10 -9
- package/components/Tooltip/utils/TooltipUtils.js +11 -10
- package/components/Tooltip/utils/useTooltipForceHide.d.ts +2 -2
- package/components/Tooltip/utils/useTooltipForceHide.js +14 -12
- package/components/Tooltip/withTooltip/withTooltip.d.ts +1 -1
- package/components/Tooltip/withTooltip/withTooltip.js +2 -1
- package/components/Transitions/Collapse/Collapse.d.ts +2 -2
- package/components/Transitions/Collapse/Collapse.js +3 -2
- package/components/Transitions/Fade/Fade.d.ts +2 -2
- package/components/Transitions/Fade/Fade.js +3 -2
- package/components/Transitions/Grow/Grow.d.ts +2 -2
- package/components/Transitions/Grow/Grow.js +3 -2
- package/components/Transitions/Slide/Slide.d.ts +2 -2
- package/components/Transitions/Slide/Slide.js +3 -2
- package/components/Transitions/Transition.d.ts +6 -6
- package/components/Transitions/Transition.js +5 -2
- package/components/Transitions/Zoom/Zoom.d.ts +2 -2
- package/components/Transitions/Zoom/Zoom.js +3 -2
- package/components/Transitions/ZoomFrom/ZoomFrom.d.ts +3 -3
- package/components/Transitions/ZoomFrom/ZoomFrom.js +17 -16
- package/components/Transitions/ZoomFrom/utils/transformToFromElm.js +2 -1
- package/components/Transitions/ZoomInFadeOut/ZoomInFadeOut.d.ts +3 -3
- package/components/Transitions/ZoomInFadeOut/ZoomInFadeOut.js +13 -12
- package/components/Transitions/utils/transitionendSubscriber.js +3 -1
- package/components/Transitions/utils/useNormalizeTransition.d.ts +2 -1
- package/components/Transitions/utils/useNormalizeTransition.js +11 -8
- package/components/Typography/Typography.d.ts +6 -8
- package/components/Typography/Typography.js +5 -4
- package/components/Typography/styles/StyledTypography.js +5 -3
- package/components/Typography/utils/TypographyUtils.js +1 -0
- package/components/VirtualizedMenu/VirtualizedDivider/VirtualizedDivider.d.ts +7 -16
- package/components/VirtualizedMenu/VirtualizedDivider/VirtualizedDivider.js +4 -3
- package/components/VirtualizedMenu/VirtualizedMenu.d.ts +2 -4
- package/components/VirtualizedMenu/VirtualizedMenu.js +17 -16
- package/components/VirtualizedMenu/VirtualizedMenuList.d.ts +3 -5
- package/components/VirtualizedMenu/VirtualizedMenuList.js +36 -36
- package/components/VirtualizedMenu/styles/StyledMenuPadding.d.ts +2 -4
- package/components/VirtualizedMenu/styles/StyledMenuPadding.js +1 -0
- package/components/VirtualizedMenu/styles/VirtualizedMenuStyle.js +4 -2
- package/components/VirtualizedMenu/utils/VirtualizedMenuUtils.js +2 -1
- package/components/Virtuoso/react-virtuoso/AATree.d.ts +1 -1
- package/components/Virtuoso/react-virtuoso/AATree.js +3 -2
- package/components/Virtuoso/react-virtuoso/TableVirtuoso.d.ts +2 -2
- package/components/Virtuoso/react-virtuoso/TableVirtuoso.js +18 -17
- package/components/Virtuoso/react-virtuoso/Virtuoso.d.ts +164 -440
- package/components/Virtuoso/react-virtuoso/Virtuoso.js +61 -60
- package/components/Virtuoso/react-virtuoso/VirtuosoGrid.d.ts +47 -113
- package/components/Virtuoso/react-virtuoso/VirtuosoGrid.js +18 -17
- package/components/Virtuoso/react-virtuoso/alignToBottomSystem.d.ts +4 -4
- package/components/Virtuoso/react-virtuoso/alignToBottomSystem.js +1 -0
- package/components/Virtuoso/react-virtuoso/comparators.js +1 -0
- package/components/Virtuoso/react-virtuoso/domIOSystem.js +1 -0
- package/components/Virtuoso/react-virtuoso/followOutputSystem.d.ts +4 -4
- package/components/Virtuoso/react-virtuoso/followOutputSystem.js +1 -0
- package/components/Virtuoso/react-virtuoso/gridSystem.d.ts +4 -4
- package/components/Virtuoso/react-virtuoso/gridSystem.js +6 -33
- package/components/Virtuoso/react-virtuoso/groupedListSystem.js +3 -2
- package/components/Virtuoso/react-virtuoso/hooks/useChangedChildSizes.d.ts +2 -2
- package/components/Virtuoso/react-virtuoso/hooks/useChangedChildSizes.js +3 -3
- package/components/Virtuoso/react-virtuoso/hooks/useRcPortalWindowContext.js +3 -2
- package/components/Virtuoso/react-virtuoso/hooks/useScrollTop.d.ts +1 -1
- package/components/Virtuoso/react-virtuoso/hooks/useScrollTop.js +4 -4
- package/components/Virtuoso/react-virtuoso/hooks/useSize.d.ts +4 -4
- package/components/Virtuoso/react-virtuoso/hooks/useSize.js +2 -1
- package/components/Virtuoso/react-virtuoso/hooks/useWindowViewportRect.d.ts +1 -1
- package/components/Virtuoso/react-virtuoso/hooks/useWindowViewportRect.js +2 -2
- package/components/Virtuoso/react-virtuoso/index.js +10 -5
- package/components/Virtuoso/react-virtuoso/initialItemCountSystem.d.ts +6 -6
- package/components/Virtuoso/react-virtuoso/initialItemCountSystem.js +2 -1
- package/components/Virtuoso/react-virtuoso/initialScrollTopSystem.d.ts +4 -4
- package/components/Virtuoso/react-virtuoso/initialScrollTopSystem.js +1 -0
- package/components/Virtuoso/react-virtuoso/initialTopMostItemIndexSystem.d.ts +2 -2
- package/components/Virtuoso/react-virtuoso/initialTopMostItemIndexSystem.js +3 -2
- package/components/Virtuoso/react-virtuoso/interfaces.d.ts +23 -23
- package/components/Virtuoso/react-virtuoso/listStateSystem.d.ts +5 -5
- package/components/Virtuoso/react-virtuoso/listStateSystem.js +12 -11
- package/components/Virtuoso/react-virtuoso/listSystem.d.ts +47 -47
- package/components/Virtuoso/react-virtuoso/listSystem.js +4 -16
- package/components/Virtuoso/react-virtuoso/loggerSystem.d.ts +1 -1
- package/components/Virtuoso/react-virtuoso/loggerSystem.js +3 -2
- package/components/Virtuoso/react-virtuoso/propsReadySystem.js +1 -0
- package/components/Virtuoso/react-virtuoso/react-urx/index.d.ts +5 -5
- package/components/Virtuoso/react-virtuoso/react-urx/index.js +2 -1
- package/components/Virtuoso/react-virtuoso/recalcSystem.js +1 -0
- package/components/Virtuoso/react-virtuoso/scrollIntoViewSystem.d.ts +6 -6
- package/components/Virtuoso/react-virtuoso/scrollIntoViewSystem.js +4 -3
- package/components/Virtuoso/react-virtuoso/scrollSeekSystem.js +1 -0
- package/components/Virtuoso/react-virtuoso/scrollToIndexSystem.d.ts +2 -2
- package/components/Virtuoso/react-virtuoso/scrollToIndexSystem.js +5 -4
- package/components/Virtuoso/react-virtuoso/sizeRangeSystem.d.ts +5 -5
- package/components/Virtuoso/react-virtuoso/sizeRangeSystem.js +1 -0
- package/components/Virtuoso/react-virtuoso/sizeSystem.d.ts +6 -4
- package/components/Virtuoso/react-virtuoso/sizeSystem.js +42 -42
- package/components/Virtuoso/react-virtuoso/stateFlagsSystem.d.ts +4 -4
- package/components/Virtuoso/react-virtuoso/stateFlagsSystem.js +2 -1
- package/components/Virtuoso/react-virtuoso/stateLoadSystem.d.ts +2 -2
- package/components/Virtuoso/react-virtuoso/stateLoadSystem.js +2 -1
- package/components/Virtuoso/react-virtuoso/topItemCountSystem.d.ts +4 -4
- package/components/Virtuoso/react-virtuoso/topItemCountSystem.js +1 -0
- package/components/Virtuoso/react-virtuoso/totalListHeightSystem.d.ts +4 -4
- package/components/Virtuoso/react-virtuoso/totalListHeightSystem.js +1 -0
- package/components/Virtuoso/react-virtuoso/upwardScrollFixSystem.d.ts +4 -4
- package/components/Virtuoso/react-virtuoso/upwardScrollFixSystem.js +3 -2
- package/components/Virtuoso/react-virtuoso/urx/actions.d.ts +1 -1
- package/components/Virtuoso/react-virtuoso/urx/actions.js +2 -1
- package/components/Virtuoso/react-virtuoso/urx/constants.d.ts +4 -4
- package/components/Virtuoso/react-virtuoso/urx/constants.js +1 -0
- package/components/Virtuoso/react-virtuoso/urx/pipe.d.ts +1 -1
- package/components/Virtuoso/react-virtuoso/urx/pipe.js +6 -5
- package/components/Virtuoso/react-virtuoso/urx/streams.js +6 -5
- package/components/Virtuoso/react-virtuoso/urx/system.d.ts +5 -5
- package/components/Virtuoso/react-virtuoso/urx/system.js +2 -1
- package/components/Virtuoso/react-virtuoso/urx/transformers.js +10 -9
- package/components/Virtuoso/react-virtuoso/urx/utils.js +1 -0
- package/components/Virtuoso/react-virtuoso/utils/approximatelyEqual.js +1 -0
- package/components/Virtuoso/react-virtuoso/utils/binaryArraySearch.d.ts +1 -1
- package/components/Virtuoso/react-virtuoso/utils/binaryArraySearch.js +2 -1
- package/components/Virtuoso/react-virtuoso/utils/context.js +1 -0
- package/components/Virtuoso/react-virtuoso/utils/correctItemSize.js +1 -0
- package/components/Virtuoso/react-virtuoso/utils/positionStickyCssValue.d.ts +1 -1
- package/components/Virtuoso/react-virtuoso/utils/positionStickyCssValue.js +2 -1
- package/components/Virtuoso/react-virtuoso/utils/simpleMemoize.js +1 -0
- package/components/Virtuoso/react-virtuoso/utils/skipFrames.js +1 -0
- package/components/Virtuoso/react-virtuoso/windowScrollerSystem.js +1 -0
- package/components/Virtuoso/utils/isOutOfRange.js +1 -0
- package/components/Virtuoso/utils/useDynamicHeight.d.ts +2 -3
- package/components/Virtuoso/utils/useDynamicHeight.js +5 -3
- package/components/Virtuoso/utils/useHighlightScroll.d.ts +1 -1
- package/components/Virtuoso/utils/useHighlightScroll.js +3 -2
- package/components/VisuallyHidden/VisuallyHidden.d.ts +1 -3
- package/components/VisuallyHidden/VisuallyHidden.js +1 -0
- package/components/index.d.ts +1 -0
- package/components/index.js +2 -0
- package/es6/components/Accordion/styles/AccordionStyle.js +2 -2
- package/es6/components/Animations/Highlight/Highlight.js +1 -1
- package/es6/components/AppBar/AppBar.js +1 -1
- package/es6/components/Avatar/Avatar.js +4 -4
- package/es6/components/Avatar/styles/StyledAvatar.js +1 -2
- package/es6/components/Avatar/styles/StyledAvatarWrapper.js +2 -5
- package/es6/components/Avatar/utils/useAvatarColorToken.js +1 -1
- package/es6/components/Avatar/utils/useAvatarShortName.js +2 -2
- package/es6/components/Badge/DotBadge.js +1 -1
- package/es6/components/Badge/styles/BadgeStyle.js +3 -8
- package/es6/components/Buttons/Button/Button.js +1 -5
- package/es6/components/Buttons/Button/styles/StyledButton.js +2 -13
- package/es6/components/Buttons/ButtonGroup/styles/StyledButtonGroup.js +1 -0
- package/es6/components/Buttons/ButtonGroup/styles/index.js +1 -0
- package/es6/components/Buttons/ButtonGroup/utils/ButtonGroupUtils.js +1 -0
- package/es6/components/Buttons/ButtonGroup/utils/index.js +1 -0
- package/es6/components/Buttons/IconButton/IconButton.js +1 -9
- package/es6/components/Buttons/IconButton/styles/StyledIconButton.js +3 -13
- package/es6/components/Buttons/IconButtonGroup/styles/IconButtonGroupStyle.js +3 -4
- package/es6/components/Buttons/SplitButton/SplitButton.js +1 -2
- package/es6/components/Buttons/SplitButton/styles/StyledSplitButton.js +4 -15
- package/es6/components/Buttons/ToggleButton/styles/ToggleButtonStyle.js +1 -4
- package/es6/components/Buttons/ToggleButton/utils/ToggleButtonUtils.js +3 -3
- package/es6/components/Buttons/ToggleButtonGroup/ToggleButtonGroup.js +1 -1
- package/es6/components/Buttons/ToggleButtonGroup/styles/ToggleButtonGroupStyle.js +1 -2
- package/es6/components/Buttons/ToggleButtonGroup/styles/boxStyle.js +1 -4
- package/es6/components/Buttons/ToggleButtonGroup/styles/standardStyle.js +1 -5
- package/es6/components/Buttons/ToggleButtonGroup/utils/ToggleButtonGroupUtils.js +1 -1
- package/es6/components/Card/Card/styles/CardStyles.js +1 -2
- package/es6/components/Card/CardHoverActions/styles/CardHoverActionsStyle.js +1 -2
- package/es6/components/Chip/styles/ChipStyle.js +2 -6
- package/es6/components/DetachedWindow/utils/JssDomRendererFactory.js +1 -1
- package/es6/components/DetachedWindow/utils/openExternalWindow.js +4 -4
- package/es6/components/Dialer/DialPad/DialPad.js +8 -6
- package/es6/components/Dialer/DialPad/styles/StyledDialPad.js +1 -2
- package/es6/components/Dialer/DialPad/utils/DialPadUtils.js +4 -4
- package/es6/components/Dialer/DialPad/utils/index.js +1 -0
- package/es6/components/Dialer/DialPad/utils/types.js +1 -0
- package/es6/components/Dialer/DialPad/utils/useDialKeyboard.js +2 -2
- package/es6/components/Dialog/DialogActions/DialogActions.js +1 -2
- package/es6/components/Dialog/DialogActions/styles/DialogActionsStyle.js +5 -10
- package/es6/components/Dialog/DialogContent/styles/DialogContentStyle.js +2 -2
- package/es6/components/Dialog/DialogTitle/DialogTitle.js +1 -1
- package/es6/components/Dialog/DialogTitle/styles/DialogTitleStyle.js +2 -2
- package/es6/components/Dialog/styles/DialogStyle.js +2 -4
- package/es6/components/Divider/styles/StyledDivider.js +2 -3
- package/es6/components/DnD/Draggable/Draggable.js +2 -2
- package/es6/components/DnD/Draggable/utils/DraggableUtils.js +1 -1
- package/es6/components/DnD/Droppable/Droppable.js +2 -2
- package/es6/components/Downshift/Downshift.js +8 -8
- package/es6/components/Downshift/SuggestionList/SuggestionList.js +5 -4
- package/es6/components/Downshift/SuggestionList/utils/useSuggestionList.js +9 -9
- package/es6/components/Downshift/styles/StyledPopper.js +1 -2
- package/es6/components/Downshift/utils/DownshiftUtils.js +5 -2
- package/es6/components/Downshift/utils/SelectItem.js +1 -0
- package/es6/components/Downshift/utils/index.js +2 -0
- package/es6/components/Downshift/utils/useDownshift.interface.js +1 -0
- package/es6/components/Downshift/utils/useDownshift.js +7 -7
- package/es6/components/Downshift/utils/useDownshiftGroup.js +4 -4
- package/es6/components/Downshift/utils/useDownshiftTag.js +10 -10
- package/es6/components/Drawer/styles/DrawerStyle.js +1 -2
- package/es6/components/Forms/BaseForm.js +1 -0
- package/es6/components/Forms/Form/Form/Form.js +2 -2
- package/es6/components/Forms/Form/Form/index.js +1 -0
- package/es6/components/Forms/Form/Form/types.js +1 -0
- package/es6/components/Forms/FormControlLabel/styles/FormControlLabelStyle.js +1 -1
- package/es6/components/Forms/Picker/DatePicker/Calendar.js +3 -3
- package/es6/components/Forms/Picker/DatePicker/DatePickerHeader.js +1 -1
- package/es6/components/Forms/Picker/DatePicker/Year.js +1 -1
- package/es6/components/Forms/Picker/DatePicker/styles/StyledCalendar.js +4 -8
- package/es6/components/Forms/Picker/DatePicker/styles/StyledDatePickerHeader.js +2 -4
- package/es6/components/Forms/Picker/TimePicker/NumberPicker.js +3 -3
- package/es6/components/Forms/Picker/TimePicker/SelectionView.js +1 -1
- package/es6/components/Forms/Picker/TimePicker/TimePicker.js +4 -4
- package/es6/components/Forms/Picker/TimePicker/styles/StyledNumberPicker.js +1 -1
- package/es6/components/Forms/Picker/TimePicker/styles/StyledPickerPopperWrap.js +1 -2
- package/es6/components/Forms/Picker/TimePicker/styles/StyledSelectionItem.js +1 -2
- package/es6/components/Forms/Picker/TimePicker/styles/StyledSelectionView.js +1 -2
- package/es6/components/Forms/Picker/TimePicker/styles/StyledTimeIconButton.js +1 -3
- package/es6/components/Forms/Picker/TimePicker/types.js +1 -0
- package/es6/components/Forms/Picker/TimePicker/utils/TimeBoundary.js +4 -4
- package/es6/components/Forms/Picker/TimePicker/utils/TimePickerHelper.js +4 -4
- package/es6/components/Forms/Picker/TimePicker/utils/getNumberPickerBoundary.js +1 -1
- package/es6/components/Forms/Picker/styles/datePickerCustomFocusRingStyle.js +1 -2
- package/es6/components/Forms/Picker/utils/PickerTextField/PickerTextField.js +4 -4
- package/es6/components/Forms/Picker/utils/PickerUtils.js +1 -0
- package/es6/components/Forms/Select/PlainSelect/styles/StyledSelect.js +3 -3
- package/es6/components/Forms/Select/styles/StyledSelect.js +2 -3
- package/es6/components/Forms/Select/utils/SelectInput/SelectInput.js +8 -8
- package/es6/components/Forms/TextField/styles/TextFieldStyle.js +2 -4
- package/es6/components/Forms/Textarea/styles/TextareaStyle.js +1 -2
- package/es6/components/Forms/index.js +1 -0
- package/es6/components/Forms/utils/checkedStyles.js +1 -2
- package/es6/components/Icon/Icon.js +2 -2
- package/es6/components/InlineEditable/InlineEditable.js +2 -2
- package/es6/components/InlineEditable/styles/InlineEditableStyle.js +2 -4
- package/es6/components/Link/styles/StyledLink.js +1 -2
- package/es6/components/List/ListItem/ListItem.js +1 -5
- package/es6/components/List/ListItem/styles/ListItemStyle.js +4 -9
- package/es6/components/List/ListItem/utils/ListItemUtils.js +2 -2
- package/es6/components/List/ListItemText/styles/ListItemTextStyle.js +1 -2
- package/es6/components/Loading/styles/StyledLoadingPage.js +1 -2
- package/es6/components/Menu/MenuItem/MenuItem.js +1 -3
- package/es6/components/Menu/MenuItem/styles/MenuItemStyle.js +1 -2
- package/es6/components/Menu/MenuItem/utils/MenuItemUtils.js +1 -1
- package/es6/components/MuiExports/index.js +41 -0
- package/es6/components/Popper/modifiers/fixOffsetsModifer.js +1 -1
- package/es6/components/PortalHost/Connectable/Connectable.js +1 -1
- package/es6/components/PortalHost/PortalManager/PortalManager.js +1 -1
- package/es6/components/PortalHost/PortalManager/PortalStore.js +6 -6
- package/es6/components/Presence/styles/StyledPresence.js +5 -9
- package/es6/components/Rating/styles/RatingStyle.js +2 -4
- package/es6/components/Responsive/utils/getMatchedBreakpoint.js +2 -2
- package/es6/components/Responsive/utils/index.js +1 -0
- package/es6/components/Responsive/utils/types.js +1 -0
- package/es6/components/Snackbar/SnackbarAction/styles/StyledSnackbarContent.js +1 -2
- package/es6/components/Table/TableContainer/styles/TableContainerStyle.js +1 -2
- package/es6/components/Table/index.js +1 -0
- package/es6/components/Table/types.js +1 -0
- package/es6/components/TablePagination/TablePagination.js +1 -1
- package/es6/components/TablePagination/utils/TablePaginationUtils.js +3 -3
- package/es6/components/Tabs/Tab/styles/TabStyle.js +1 -2
- package/es6/components/Tabs/Tabs/MoreMenuTab/styles/MoreMenuTabStyle.js +1 -2
- package/es6/components/Tabs/Tabs/MoreMenuTabs/MoreMenuTabs.js +5 -5
- package/es6/components/Tabs/Tabs/MoreMenuTabs/utils/MoreMenuTabsUtils.js +1 -0
- package/es6/components/Tabs/Tabs/MoreMenuTabs/utils/index.js +1 -0
- package/es6/components/Tag/styles/TagStyle.js +1 -2
- package/es6/components/Text/Text.js +2 -1
- package/es6/components/Text/styles/StyledText.js +1 -2
- package/es6/components/Thumbnail/styles/StyledThumbnail.js +1 -2
- package/es6/components/Tooltip/styles/StyledTooltip.js +1 -2
- package/es6/components/Transitions/Transition.js +2 -1
- package/es6/components/Transitions/ZoomFrom/utils/transformToFromElm.js +1 -1
- package/es6/components/VirtualizedMenu/VirtualizedMenu.js +1 -1
- package/es6/components/VirtualizedMenu/VirtualizedMenuList.js +4 -5
- package/es6/components/Virtuoso/react-virtuoso/AATree.js +3 -3
- package/es6/components/Virtuoso/react-virtuoso/TableVirtuoso.js +4 -4
- package/es6/components/Virtuoso/react-virtuoso/Virtuoso.js +6 -6
- package/es6/components/Virtuoso/react-virtuoso/VirtuosoGrid.js +4 -4
- package/es6/components/Virtuoso/react-virtuoso/component-interfaces/TableVirtuoso.js +1 -0
- package/es6/components/Virtuoso/react-virtuoso/component-interfaces/Virtuoso.js +1 -0
- package/es6/components/Virtuoso/react-virtuoso/component-interfaces/VirtuosoGrid.js +1 -0
- package/es6/components/Virtuoso/react-virtuoso/gridSystem.js +2 -30
- package/es6/components/Virtuoso/react-virtuoso/hooks/useChangedChildSizes.js +1 -1
- package/es6/components/Virtuoso/react-virtuoso/index.js +4 -0
- package/es6/components/Virtuoso/react-virtuoso/interfaces.js +1 -0
- package/es6/components/Virtuoso/react-virtuoso/listStateSystem.js +1 -1
- package/es6/components/Virtuoso/react-virtuoso/listSystem.js +3 -16
- package/es6/components/Virtuoso/react-virtuoso/loggerSystem.js +1 -1
- package/es6/components/Virtuoso/react-virtuoso/react-urx/index.js +2 -2
- package/es6/components/Virtuoso/react-virtuoso/sizeSystem.js +5 -6
- package/es6/components/Virtuoso/react-virtuoso/urx/pipe.js +2 -2
- package/es6/components/Virtuoso/react-virtuoso/urx/streams.js +2 -2
- package/es6/components/Virtuoso/react-virtuoso/urx/system.js +1 -1
- package/es6/components/Virtuoso/react-virtuoso/urx/transformers.js +4 -4
- package/es6/components/Virtuoso/react-virtuoso/utils/binaryArraySearch.js +1 -1
- package/es6/components/index.js +2 -0
- package/es6/foundation/MuiExports/index.js +29 -0
- package/es6/foundation/config.js +3 -3
- package/es6/foundation/contexts/ResponsiveContext/getMatchDetail.js +5 -5
- package/es6/foundation/contexts/ResponsiveContext/index.js +1 -0
- package/es6/foundation/contexts/ResponsiveContext/types.js +1 -0
- package/es6/foundation/hoc/withResponsive/types.js +1 -0
- package/es6/foundation/hoc/withResponsive/withResponsive.js +7 -6
- package/es6/foundation/hooks/useAnnouncer/useAnnouncer.js +1 -1
- package/es6/foundation/hooks/useAudio/useAudio.js +1 -1
- package/es6/foundation/hooks/useId/useId.js +1 -1
- package/es6/foundation/hooks/useKeyboardMoveFocus/useOnlyOneFocusable.js +5 -2
- package/es6/foundation/hooks/useResizeObserver/useResizeObserver.js +2 -2
- package/es6/foundation/hooks/useRetry/useRetry.js +3 -3
- package/es6/foundation/hooks/useTouchMouseEvent/useTouchMouseEvent.js +1 -1
- package/es6/foundation/index.js +3 -0
- package/es6/foundation/styles/flexWidth.js +1 -2
- package/es6/foundation/styles/newPalette.js +3 -3
- package/es6/foundation/styles/px.js +1 -1
- package/es6/foundation/styles/spacing.js +2 -2
- package/es6/foundation/styles/typography.js +2 -2
- package/es6/foundation/theme/DefaultTheme.js +1 -0
- package/es6/foundation/theme/ThemeHandler.js +4 -4
- package/es6/foundation/theme/ThemeProvider.js +1 -1
- package/es6/foundation/theme/index.js +5 -0
- package/es6/foundation/theme/palette.type.js +1 -0
- package/es6/foundation/theme/paletteProp.type.js +1 -0
- package/es6/foundation/theme/theme.type.js +1 -0
- package/es6/foundation/theme/typography.type.js +1 -0
- package/es6/foundation/theme/useThemeProps.js +2 -2
- package/es6/foundation/typings/BaseColor.js +1 -0
- package/es6/foundation/typings/BaseDirection.js +1 -0
- package/es6/foundation/typings/BaseFocusVariant.js +1 -0
- package/es6/foundation/typings/BaseFormControlLabel.js +1 -0
- package/es6/foundation/typings/BaseLabelPlacement.js +1 -0
- package/es6/foundation/typings/BaseProps.js +1 -0
- package/es6/foundation/typings/BaseSize.js +1 -0
- package/es6/foundation/typings/UnionOmit.js +1 -0
- package/es6/foundation/typings/UnitMap.js +1 -0
- package/es6/foundation/typings/deepPartial.js +1 -0
- package/es6/foundation/typings/index.js +11 -0
- package/es6/foundation/typings/notNullRecord.js +1 -0
- package/es6/foundation/utils/checkDefaultPrevented.js +2 -2
- package/es6/foundation/utils/classes.js +1 -1
- package/es6/foundation/utils/combineProps.js +3 -3
- package/es6/foundation/utils/deepmerge.js +2 -2
- package/es6/foundation/utils/hasValue.js +3 -1
- package/es6/foundation/utils/removeClassName.js +1 -1
- package/es6/foundation/utils/withDeprecatedCheck.js +6 -6
- package/foundation/MuiExports/index.d.ts +19 -0
- package/foundation/MuiExports/index.js +58 -0
- package/foundation/MuiExports/package.json +5 -0
- package/foundation/config.d.ts +2 -2
- package/foundation/config.js +6 -4
- package/foundation/contexts/PortalWindowContext.d.ts +1 -2
- package/foundation/contexts/PortalWindowContext.js +3 -2
- package/foundation/contexts/ResponsiveContext/ResponsiveContext.d.ts +1 -2
- package/foundation/contexts/ResponsiveContext/ResponsiveContext.js +3 -2
- package/foundation/contexts/ResponsiveContext/breakpointList.js +1 -0
- package/foundation/contexts/ResponsiveContext/getMatchDetail.js +8 -6
- package/foundation/contexts/ResponsiveContext/index.js +1 -0
- package/foundation/contexts/ResponsiveContext/types.d.ts +8 -8
- package/foundation/hoc/withDelay/withDelay.d.ts +1 -1
- package/foundation/hoc/withDelay/withDelay.js +3 -2
- package/foundation/hoc/withResponsive/types.d.ts +2 -2
- package/foundation/hoc/withResponsive/utils.d.ts +26 -4
- package/foundation/hoc/withResponsive/utils.js +5 -2
- package/foundation/hoc/withResponsive/withResponsive.d.ts +1 -1
- package/foundation/hoc/withResponsive/withResponsive.js +17 -15
- package/foundation/hooks/useA11yKeyEvent/useA11yKeyEvent.d.ts +2 -4
- package/foundation/hooks/useA11yKeyEvent/useA11yKeyEvent.js +4 -2
- package/foundation/hooks/useAnnouncer/useAnnouncer.d.ts +1 -1
- package/foundation/hooks/useAnnouncer/useAnnouncer.js +7 -5
- package/foundation/hooks/useAudio/useAudio.d.ts +1 -1
- package/foundation/hooks/useAudio/useAudio.js +6 -4
- package/foundation/hooks/useChange/useChange.js +11 -8
- package/foundation/hooks/useControlled/useControlled.js +2 -1
- package/foundation/hooks/useDebounce/useDebounce.d.ts +1 -1
- package/foundation/hooks/useDebounce/useDebounce.js +6 -4
- package/foundation/hooks/useEventCallback/useEventCallback.js +4 -2
- package/foundation/hooks/useEventListener/useEventListener.d.ts +2 -2
- package/foundation/hooks/useEventListener/useEventListener.js +7 -6
- package/foundation/hooks/useEver/useEver.js +4 -2
- package/foundation/hooks/useFocusInside/useFocusInside.d.ts +4 -4
- package/foundation/hooks/useFocusInside/useFocusInside.js +6 -4
- package/foundation/hooks/useForceUpdate/useForceUpdate.js +3 -2
- package/foundation/hooks/useForkRef/useForkRef.js +1 -0
- package/foundation/hooks/useGlobalListener/createGlobalListener.d.ts +2 -2
- package/foundation/hooks/useGlobalListener/createGlobalListener.js +5 -3
- package/foundation/hooks/useGlobalListener/useGlobalListener.d.ts +2 -2
- package/foundation/hooks/useGlobalListener/useGlobalListener.js +8 -7
- package/foundation/hooks/useHiddenTabindex/useHiddenTabindex.js +7 -5
- package/foundation/hooks/useId/useId.js +4 -3
- package/foundation/hooks/useInterval/useInterval.js +11 -9
- package/foundation/hooks/useKeyDownOnce/useKeyDownOnce.d.ts +1 -2
- package/foundation/hooks/useKeyDownOnce/useKeyDownOnce.js +6 -4
- package/foundation/hooks/useKeyboardMoveFocus/moveIndexInTwoDimension.d.ts +1 -1
- package/foundation/hooks/useKeyboardMoveFocus/moveIndexInTwoDimension.js +1 -0
- package/foundation/hooks/useKeyboardMoveFocus/useKeyboardMoveFocus.d.ts +4 -5
- package/foundation/hooks/useKeyboardMoveFocus/useKeyboardMoveFocus.js +8 -6
- package/foundation/hooks/useKeyboardMoveFocus/useOnlyOneFocusable.d.ts +2 -3
- package/foundation/hooks/useKeyboardMoveFocus/useOnlyOneFocusable.js +10 -5
- package/foundation/hooks/useLongPress/useLongPress.d.ts +4 -4
- package/foundation/hooks/useLongPress/useLongPress.js +17 -14
- package/foundation/hooks/useMountState/useMountState.d.ts +0 -1
- package/foundation/hooks/useMountState/useMountState.js +5 -3
- package/foundation/hooks/useOnReRender/useOnReRender.d.ts +1 -1
- package/foundation/hooks/useOnReRender/useOnReRender.js +6 -4
- package/foundation/hooks/useOverflow/useOverflow.d.ts +1 -1
- package/foundation/hooks/useOverflow/useOverflow.js +6 -4
- package/foundation/hooks/usePrevious/usePrevious.js +3 -2
- package/foundation/hooks/useRefState/useRefState.d.ts +1 -2
- package/foundation/hooks/useRefState/useRefState.js +6 -4
- package/foundation/hooks/useResizeObserver/useResizeObserver.d.ts +1 -1
- package/foundation/hooks/useResizeObserver/useResizeObserver.js +16 -13
- package/foundation/hooks/useResponsiveMatch/useResponsiveMatch.d.ts +2 -1
- package/foundation/hooks/useResponsiveMatch/useResponsiveMatch.js +3 -2
- package/foundation/hooks/useResultRef/useResultRef.js +3 -2
- package/foundation/hooks/useRetry/useRetry.d.ts +2 -2
- package/foundation/hooks/useRetry/useRetry.js +7 -5
- package/foundation/hooks/useSleep/useSleep.js +7 -5
- package/foundation/hooks/useThrottle/useThrottle.d.ts +1 -1
- package/foundation/hooks/useThrottle/useThrottle.js +6 -4
- package/foundation/hooks/useTouchMouseEvent/useTouchMouseEvent.d.ts +1 -1
- package/foundation/hooks/useTouchMouseEvent/useTouchMouseEvent.js +16 -13
- package/foundation/index.d.ts +1 -0
- package/foundation/index.js +4 -0
- package/foundation/overridableStyled.d.ts +1 -1
- package/foundation/overridableStyled.js +1 -0
- package/foundation/styled-components.d.ts +3 -3
- package/foundation/styled-components.js +2 -1
- package/foundation/styles/GlobalScrollBarStyle/GlobalScrollBarStyle.d.ts +1 -1
- package/foundation/styles/GlobalScrollBarStyle/GlobalScrollBarStyle.js +2 -1
- package/foundation/styles/colorManipulator.js +6 -4
- package/foundation/styles/ellipsis.d.ts +1 -1
- package/foundation/styles/ellipsis.js +2 -1
- package/foundation/styles/fakeBorder.d.ts +3 -3
- package/foundation/styles/fakeBorder.js +6 -4
- package/foundation/styles/flexCenter.d.ts +1 -1
- package/foundation/styles/flexCenter.js +2 -1
- package/foundation/styles/flexWidth.d.ts +1 -1
- package/foundation/styles/flexWidth.js +4 -3
- package/foundation/styles/focusRing.d.ts +3 -3
- package/foundation/styles/focusRing.js +5 -3
- package/foundation/styles/focusVisible.d.ts +3 -2
- package/foundation/styles/focusVisible.js +8 -5
- package/foundation/styles/lineClamp.d.ts +1 -1
- package/foundation/styles/lineClamp.js +2 -1
- package/foundation/styles/newPalette.d.ts +3 -3
- package/foundation/styles/newPalette.js +5 -4
- package/foundation/styles/nonStyleButton.d.ts +1 -1
- package/foundation/styles/nonStyleButton.js +2 -1
- package/foundation/styles/nonTouchHoverMedia.js +1 -0
- package/foundation/styles/opacity.js +3 -2
- package/foundation/styles/palette.js +5 -4
- package/foundation/styles/paletteContrastText.js +1 -0
- package/foundation/styles/px.js +2 -1
- package/foundation/styles/radius.js +1 -0
- package/foundation/styles/rippleEnter.js +3 -1
- package/foundation/styles/rippleStyle.d.ts +1 -1
- package/foundation/styles/rippleStyle.js +4 -2
- package/foundation/styles/shadows.js +1 -0
- package/foundation/styles/spacing.js +2 -1
- package/foundation/styles/typography.d.ts +1 -1
- package/foundation/styles/typography.js +6 -5
- package/foundation/styles/zIndex.js +1 -0
- package/foundation/theme/ThemeHandler.d.ts +2 -2
- package/foundation/theme/ThemeHandler.js +7 -6
- package/foundation/theme/ThemeProvider.d.ts +3 -3
- package/foundation/theme/ThemeProvider.js +10 -8
- package/foundation/theme/ThemeSwitcherProvider/ThemeContext.d.ts +3 -2
- package/foundation/theme/ThemeSwitcherProvider/ThemeContext.js +1 -0
- package/foundation/theme/ThemeSwitcherProvider/ThemeSwitcherProvider.d.ts +2 -2
- package/foundation/theme/ThemeSwitcherProvider/ThemeSwitcherProvider.js +5 -3
- package/foundation/theme/ThemeSwitcherProvider/useThemeSwitcher.js +4 -2
- package/foundation/theme/createTheme.js +3 -3
- package/foundation/theme/index.js +7 -1
- package/foundation/theme/palette.type.d.ts +2 -2
- package/foundation/theme/paletteProp.type.d.ts +1 -1
- package/foundation/theme/theme.type.d.ts +13 -13
- package/foundation/theme/typography.type.d.ts +7 -7
- package/foundation/theme/useThemeProps.d.ts +1 -1
- package/foundation/theme/useThemeProps.js +5 -4
- package/foundation/typings/BaseColor.d.ts +2 -2
- package/foundation/typings/BaseDirection.d.ts +2 -2
- package/foundation/typings/BaseFocusVariant.d.ts +2 -2
- package/foundation/typings/BaseFormControlLabel.d.ts +1 -1
- package/foundation/typings/BaseLabelPlacement.d.ts +2 -2
- package/foundation/typings/BaseProps.d.ts +1 -1
- package/foundation/typings/BaseSize.d.ts +3 -3
- package/foundation/typings/UnionOmit.d.ts +3 -3
- package/foundation/typings/UnitMap.d.ts +4 -4
- package/foundation/typings/index.js +12 -0
- package/foundation/typings/notNullRecord.d.ts +1 -1
- package/foundation/utils/a11yKeyboardCode.js +1 -0
- package/foundation/utils/checkDefaultPrevented.d.ts +1 -1
- package/foundation/utils/checkDefaultPrevented.js +4 -2
- package/foundation/utils/classes.d.ts +5 -2
- package/foundation/utils/classes.js +4 -2
- package/foundation/utils/clearReactReferencesInNode.js +2 -1
- package/foundation/utils/combineProps.js +11 -8
- package/foundation/utils/deepmerge.js +2 -1
- package/foundation/utils/getRefElement.d.ts +1 -1
- package/foundation/utils/getRefElement.js +4 -2
- package/foundation/utils/getScrollbarSize.js +1 -0
- package/foundation/utils/hasValue.js +1 -0
- package/foundation/utils/isRcElement.js +2 -1
- package/foundation/utils/isRef.js +3 -1
- package/foundation/utils/isTap.d.ts +1 -1
- package/foundation/utils/isTap.js +3 -1
- package/foundation/utils/isUrl.js +1 -0
- package/foundation/utils/omit.js +4 -2
- package/foundation/utils/outerSize.js +1 -0
- package/foundation/utils/parseColor.d.ts +2 -2
- package/foundation/utils/parseColor.js +1 -0
- package/foundation/utils/pick.js +4 -2
- package/foundation/utils/preloadImg.js +1 -0
- package/foundation/utils/removeClassName.d.ts +1 -1
- package/foundation/utils/removeClassName.js +3 -2
- package/foundation/utils/selectionHandler.js +3 -2
- package/foundation/utils/shallowEqual.js +1 -0
- package/foundation/utils/styleParser.js +3 -1
- package/foundation/utils/swapArrayLocs.js +3 -1
- package/foundation/utils/withDeprecatedCheck.d.ts +2 -2
- package/foundation/utils/withDeprecatedCheck.js +10 -8
- package/package.json +5 -5
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
/// <reference types="styled-jsx" />
|
|
2
1
|
import { ChangeEvent, HTMLAttributes } from 'react';
|
|
3
2
|
import { RcIconButtonProps } from '../../Buttons/IconButton';
|
|
4
|
-
import {
|
|
3
|
+
import { RcTextFieldProps } from '../../Forms';
|
|
4
|
+
import { RcDownshiftCloseReason, RcDownshiftProps } from '../Downshift';
|
|
5
5
|
import { RcDownshiftSelectedItem } from './SelectItem';
|
|
6
6
|
import { RcDownshiftGetItemPropsOptions } from './useDownshift.interface';
|
|
7
|
-
|
|
7
|
+
type UseDownshiftParams<T extends RcDownshiftSelectedItem = RcDownshiftSelectedItem> = {
|
|
8
8
|
/** that input ref you binding event */
|
|
9
9
|
inputRef: React.RefObject<HTMLInputElement>;
|
|
10
10
|
/** wrapper container ref, if you have `tag` or use in `popper`, that will be needed */
|
|
@@ -22,246 +22,373 @@ export declare const useDownshift: <T extends RcDownshiftSelectedItem = RcDownsh
|
|
|
22
22
|
readOnly: boolean | undefined;
|
|
23
23
|
getTagProps: ({ index, selectedItem, ...restTagProps }: import("./useDownshift.interface").RcDownshiftGetSelectedItemProps<T>) => {
|
|
24
24
|
[arbitrary: string]: any;
|
|
25
|
+
defaultChecked?: boolean | undefined;
|
|
26
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
27
|
+
suppressContentEditableWarning?: boolean | undefined;
|
|
28
|
+
suppressHydrationWarning?: boolean | undefined;
|
|
29
|
+
accessKey?: string | undefined;
|
|
30
|
+
autoFocus?: boolean | undefined;
|
|
25
31
|
className?: string | undefined;
|
|
26
|
-
|
|
32
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
33
|
+
contextMenu?: string | undefined;
|
|
34
|
+
dir?: string | undefined;
|
|
35
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
36
|
+
hidden?: boolean | undefined;
|
|
27
37
|
id?: string | undefined;
|
|
28
38
|
lang?: string | undefined;
|
|
39
|
+
nonce?: string | undefined;
|
|
40
|
+
slot?: string | undefined;
|
|
41
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
29
42
|
style?: import("react").CSSProperties | undefined;
|
|
30
|
-
role?: "alert" | "alertdialog" | "application" | "article" | "banner" | "button" | "cell" | "checkbox" | "columnheader" | "combobox" | "complementary" | "contentinfo" | "definition" | "dialog" | "directory" | "document" | "feed" | "figure" | "form" | "grid" | "gridcell" | "group" | "heading" | "img" | "link" | "list" | "listbox" | "listitem" | "log" | "main" | "marquee" | "math" | "menu" | "menubar" | "menuitem" | "menuitemcheckbox" | "menuitemradio" | "navigation" | "none" | "note" | "option" | "presentation" | "progressbar" | "radio" | "radiogroup" | "region" | "row" | "rowgroup" | "rowheader" | "scrollbar" | "search" | "searchbox" | "separator" | "slider" | "spinbutton" | "status" | "switch" | "tab" | "table" | "tablist" | "tabpanel" | "term" | "textbox" | "timer" | "toolbar" | "tooltip" | "tree" | "treegrid" | "treeitem" | (string & {}) | undefined;
|
|
31
43
|
tabIndex?: number | undefined;
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
44
|
+
title?: string | undefined;
|
|
45
|
+
translate?: "yes" | "no" | undefined;
|
|
46
|
+
radioGroup?: string | undefined;
|
|
47
|
+
role?: import("react").AriaRole | undefined;
|
|
48
|
+
about?: string | undefined;
|
|
49
|
+
content?: string | undefined;
|
|
50
|
+
datatype?: string | undefined;
|
|
51
|
+
inlist?: any;
|
|
52
|
+
prefix?: string | undefined;
|
|
53
|
+
property?: string | undefined;
|
|
54
|
+
rel?: string | undefined;
|
|
55
|
+
resource?: string | undefined;
|
|
56
|
+
rev?: string | undefined;
|
|
57
|
+
typeof?: string | undefined;
|
|
58
|
+
vocab?: string | undefined;
|
|
59
|
+
autoCapitalize?: string | undefined;
|
|
60
|
+
autoCorrect?: string | undefined;
|
|
61
|
+
autoSave?: string | undefined;
|
|
62
|
+
color?: string | undefined;
|
|
63
|
+
itemProp?: string | undefined;
|
|
64
|
+
itemScope?: boolean | undefined;
|
|
65
|
+
itemType?: string | undefined;
|
|
66
|
+
itemID?: string | undefined;
|
|
67
|
+
itemRef?: string | undefined;
|
|
68
|
+
results?: number | undefined;
|
|
69
|
+
security?: string | undefined;
|
|
70
|
+
unselectable?: "on" | "off" | undefined;
|
|
71
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
72
|
+
is?: string | undefined;
|
|
73
|
+
"aria-activedescendant"?: string | undefined;
|
|
74
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
75
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
76
|
+
"aria-braillelabel"?: string | undefined;
|
|
77
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
78
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
79
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
80
|
+
"aria-colcount"?: number | undefined;
|
|
81
|
+
"aria-colindex"?: number | undefined;
|
|
82
|
+
"aria-colindextext"?: string | undefined;
|
|
83
|
+
"aria-colspan"?: number | undefined;
|
|
84
|
+
"aria-controls"?: string | undefined;
|
|
85
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
86
|
+
"aria-describedby"?: string | undefined;
|
|
87
|
+
"aria-description"?: string | undefined;
|
|
88
|
+
"aria-details"?: string | undefined;
|
|
89
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
90
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
91
|
+
"aria-errormessage"?: string | undefined;
|
|
92
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
93
|
+
"aria-flowto"?: string | undefined;
|
|
94
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
95
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
96
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
97
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
98
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
99
|
+
"aria-label"?: string | undefined;
|
|
100
|
+
"aria-labelledby"?: string | undefined;
|
|
101
|
+
"aria-level"?: number | undefined;
|
|
102
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
103
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
104
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
105
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
106
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
107
|
+
"aria-owns"?: string | undefined;
|
|
108
|
+
"aria-placeholder"?: string | undefined;
|
|
109
|
+
"aria-posinset"?: number | undefined;
|
|
110
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
111
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
112
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
113
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
114
|
+
"aria-roledescription"?: string | undefined;
|
|
115
|
+
"aria-rowcount"?: number | undefined;
|
|
116
|
+
"aria-rowindex"?: number | undefined;
|
|
117
|
+
"aria-rowindextext"?: string | undefined;
|
|
118
|
+
"aria-rowspan"?: number | undefined;
|
|
119
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
120
|
+
"aria-setsize"?: number | undefined;
|
|
121
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
122
|
+
"aria-valuemax"?: number | undefined;
|
|
123
|
+
"aria-valuemin"?: number | undefined;
|
|
124
|
+
"aria-valuenow"?: number | undefined;
|
|
125
|
+
"aria-valuetext"?: string | undefined;
|
|
80
126
|
dangerouslySetInnerHTML?: {
|
|
81
|
-
__html: string;
|
|
127
|
+
__html: string | TrustedHTML;
|
|
82
128
|
} | undefined;
|
|
83
|
-
onCopy?:
|
|
84
|
-
onCopyCapture?:
|
|
85
|
-
onCut?:
|
|
86
|
-
onCutCapture?:
|
|
87
|
-
onPaste?:
|
|
88
|
-
onPasteCapture?:
|
|
89
|
-
onCompositionEnd?:
|
|
90
|
-
onCompositionEndCapture?:
|
|
91
|
-
onCompositionStart?:
|
|
92
|
-
onCompositionStartCapture?:
|
|
93
|
-
onCompositionUpdate?:
|
|
94
|
-
onCompositionUpdateCapture?:
|
|
95
|
-
onFocus?:
|
|
96
|
-
onFocusCapture?:
|
|
97
|
-
onBlur?:
|
|
98
|
-
onBlurCapture?:
|
|
99
|
-
onChange?:
|
|
100
|
-
onChangeCapture?:
|
|
101
|
-
onBeforeInput?:
|
|
102
|
-
onBeforeInputCapture?:
|
|
103
|
-
onInput?:
|
|
104
|
-
onInputCapture?:
|
|
105
|
-
onReset?:
|
|
106
|
-
onResetCapture?:
|
|
107
|
-
onSubmit?:
|
|
108
|
-
onSubmitCapture?:
|
|
109
|
-
onInvalid?:
|
|
110
|
-
onInvalidCapture?:
|
|
111
|
-
onLoad?:
|
|
112
|
-
onLoadCapture?:
|
|
113
|
-
onError?:
|
|
114
|
-
onErrorCapture?:
|
|
115
|
-
onKeyDown?:
|
|
116
|
-
onKeyDownCapture?:
|
|
117
|
-
onKeyPress?:
|
|
118
|
-
onKeyPressCapture?:
|
|
119
|
-
onKeyUp?:
|
|
120
|
-
onKeyUpCapture?:
|
|
121
|
-
onAbort?:
|
|
122
|
-
onAbortCapture?:
|
|
123
|
-
onCanPlay?:
|
|
124
|
-
onCanPlayCapture?:
|
|
125
|
-
onCanPlayThrough?:
|
|
126
|
-
onCanPlayThroughCapture?:
|
|
127
|
-
onDurationChange?:
|
|
128
|
-
onDurationChangeCapture?:
|
|
129
|
-
onEmptied?:
|
|
130
|
-
onEmptiedCapture?:
|
|
131
|
-
onEncrypted?:
|
|
132
|
-
onEncryptedCapture?:
|
|
133
|
-
onEnded?:
|
|
134
|
-
onEndedCapture?:
|
|
135
|
-
onLoadedData?:
|
|
136
|
-
onLoadedDataCapture?:
|
|
137
|
-
onLoadedMetadata?:
|
|
138
|
-
onLoadedMetadataCapture?:
|
|
139
|
-
onLoadStart?:
|
|
140
|
-
onLoadStartCapture?:
|
|
141
|
-
onPause?:
|
|
142
|
-
onPauseCapture?:
|
|
143
|
-
onPlay?:
|
|
144
|
-
onPlayCapture?:
|
|
145
|
-
onPlaying?:
|
|
146
|
-
onPlayingCapture?:
|
|
147
|
-
onProgress?:
|
|
148
|
-
onProgressCapture?:
|
|
149
|
-
onRateChange?:
|
|
150
|
-
onRateChangeCapture?:
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
129
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
130
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
131
|
+
onCut?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
132
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
133
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
134
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
135
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
136
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
137
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
138
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
139
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
140
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
141
|
+
onFocus?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
142
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
143
|
+
onBlur?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
144
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
145
|
+
onChange?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
146
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
147
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
148
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
149
|
+
onInput?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
150
|
+
onInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
151
|
+
onReset?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
152
|
+
onResetCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
153
|
+
onSubmit?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
154
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
155
|
+
onInvalid?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
156
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
157
|
+
onLoad?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
158
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
159
|
+
onError?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
160
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
161
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
162
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
163
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
164
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
165
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
166
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
167
|
+
onAbort?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
168
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
169
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
170
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
171
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
172
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
173
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
174
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
175
|
+
onEmptied?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
176
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
177
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
178
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
179
|
+
onEnded?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
180
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
181
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
182
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
183
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
184
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
185
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
186
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
187
|
+
onPause?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
188
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
189
|
+
onPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
190
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
191
|
+
onPlaying?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
192
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
193
|
+
onProgress?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
194
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
195
|
+
onRateChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
196
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
197
|
+
onResize?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
198
|
+
onResizeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
199
|
+
onSeeked?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
200
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
201
|
+
onSeeking?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
202
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
203
|
+
onStalled?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
204
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
205
|
+
onSuspend?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
206
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
207
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
208
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
209
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
210
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
211
|
+
onWaiting?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
212
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
213
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
214
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
215
|
+
onClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
216
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
217
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
218
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
219
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
220
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
221
|
+
onDrag?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
222
|
+
onDragCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
223
|
+
onDragEnd?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
224
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
225
|
+
onDragEnter?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
226
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
227
|
+
onDragExit?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
228
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
229
|
+
onDragLeave?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
230
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
231
|
+
onDragOver?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
232
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
233
|
+
onDragStart?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
234
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
235
|
+
onDrop?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
236
|
+
onDropCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
237
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
238
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
239
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
240
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
241
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
242
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
243
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
244
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
245
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
246
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
247
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
248
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
249
|
+
onSelect?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
250
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
251
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
252
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
253
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
254
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
255
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
256
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
257
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
258
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
259
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
260
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
261
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
262
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
263
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
264
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
265
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
266
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
267
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
268
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
269
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
270
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
271
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
272
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
273
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
274
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
275
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
276
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
277
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
278
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
279
|
+
onScroll?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
280
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
281
|
+
onWheel?: import("react").WheelEventHandler<HTMLElement> | undefined;
|
|
282
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLElement> | undefined;
|
|
283
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
284
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
285
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
286
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
287
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
288
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
289
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
290
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
291
|
+
};
|
|
292
|
+
getClearButtonProps: (props?: RcIconButtonProps) => {
|
|
293
|
+
variant?: import("../../Buttons/IconButton/IconButton").RcIconButtonVariant | undefined;
|
|
294
|
+
size?: import("../../Buttons/IconButton/IconButton").RcIconButtonSize | undefined;
|
|
295
|
+
shouldPersistBg?: boolean | undefined; /** wrapper container ref, if you have `tag` or use in `popper`, that will be needed */
|
|
296
|
+
invisible?: boolean | undefined;
|
|
297
|
+
stretchIcon?: boolean | undefined;
|
|
298
|
+
useColorWhenDisabled?: boolean | undefined;
|
|
299
|
+
radius?: "circle" | "sm" | "md" | "lg" | "xl" | "round" | "xxl" | "zero" | undefined;
|
|
300
|
+
elevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
|
|
301
|
+
activeElevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
|
|
302
|
+
disabledFakeBorder?: boolean | undefined;
|
|
303
|
+
IconProps?: import("../../Icon/Icon").RcIconProps | undefined;
|
|
304
|
+
focusVariant?: "focusRing" | "highlight" | undefined;
|
|
305
|
+
} & 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<{
|
|
306
|
+
action?: import("react").Ref<import("@material-ui/core").ButtonBaseActions> | undefined;
|
|
307
|
+
buttonRef?: import("react").Ref<unknown> | undefined;
|
|
308
|
+
centerRipple?: boolean | undefined;
|
|
309
|
+
children?: import("react").ReactNode;
|
|
310
|
+
disabled?: boolean | undefined;
|
|
311
|
+
disableRipple?: boolean | undefined;
|
|
312
|
+
disableTouchRipple?: boolean | undefined;
|
|
313
|
+
focusRipple?: boolean | undefined;
|
|
314
|
+
focusVisibleClassName?: string | undefined;
|
|
315
|
+
onFocusVisible?: import("react").FocusEventHandler<any> | undefined;
|
|
316
|
+
tabIndex?: string | number | undefined;
|
|
317
|
+
TouchRippleProps?: Partial<import("@material-ui/core/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
318
|
+
} & 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"> & {
|
|
319
|
+
ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
|
|
320
|
+
}, "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">;
|
|
321
|
+
activeIndex: number;
|
|
322
|
+
setActiveIndex: (tagToFocus: number, focus?: any) => void;
|
|
323
|
+
isOpen: boolean;
|
|
324
|
+
getToggleButtonProps: (props?: RcIconButtonProps) => {
|
|
325
|
+
variant?: import("../../Buttons/IconButton/IconButton").RcIconButtonVariant | undefined;
|
|
326
|
+
size?: import("../../Buttons/IconButton/IconButton").RcIconButtonSize | undefined;
|
|
327
|
+
shouldPersistBg?: boolean | undefined; /** wrapper container ref, if you have `tag` or use in `popper`, that will be needed */
|
|
328
|
+
invisible?: boolean | undefined;
|
|
329
|
+
stretchIcon?: boolean | undefined;
|
|
330
|
+
useColorWhenDisabled?: boolean | undefined;
|
|
331
|
+
radius?: "circle" | "sm" | "md" | "lg" | "xl" | "round" | "xxl" | "zero" | undefined;
|
|
332
|
+
elevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
|
|
333
|
+
activeElevation?: keyof import("@material-ui/core/styles/shadows").Shadows | undefined;
|
|
334
|
+
disabledFakeBorder?: boolean | undefined;
|
|
335
|
+
IconProps?: import("../../Icon/Icon").RcIconProps | undefined;
|
|
336
|
+
focusVariant?: "focusRing" | "highlight" | undefined;
|
|
337
|
+
} & 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<{
|
|
338
|
+
action?: import("react").Ref<import("@material-ui/core").ButtonBaseActions> | undefined;
|
|
339
|
+
buttonRef?: import("react").Ref<unknown> | undefined;
|
|
340
|
+
centerRipple?: boolean | undefined;
|
|
341
|
+
children?: import("react").ReactNode;
|
|
342
|
+
disabled?: boolean | undefined;
|
|
343
|
+
disableRipple?: boolean | undefined;
|
|
344
|
+
disableTouchRipple?: boolean | undefined;
|
|
345
|
+
focusRipple?: boolean | undefined;
|
|
346
|
+
focusVisibleClassName?: string | undefined;
|
|
347
|
+
onFocusVisible?: import("react").FocusEventHandler<any> | undefined;
|
|
348
|
+
tabIndex?: string | number | undefined;
|
|
349
|
+
TouchRippleProps?: Partial<import("@material-ui/core/ButtonBase/TouchRipple").TouchRippleProps> | undefined;
|
|
350
|
+
} & 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"> & {
|
|
351
|
+
ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
|
|
352
|
+
}, "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">;
|
|
353
|
+
getPopperProps: (restPopperProps?: HTMLAttributes<HTMLElement>) => HTMLAttributes<HTMLElement>;
|
|
354
|
+
getLabelProps: (props?: Partial<import("@material-ui/core").InputLabelProps> | undefined) => Partial<import("@material-ui/core").InputLabelProps>;
|
|
355
|
+
getMenuProps: (restMenuProps?: HTMLAttributes<HTMLElement> | undefined) => HTMLAttributes<HTMLElement>;
|
|
356
|
+
getInputProps: (props?: RcTextFieldProps['InputProps']) => Partial<import("@material-ui/core").InputProps>;
|
|
357
|
+
getInputAriaProps: (props?: RcTextFieldProps['inputProps']) => import("@material-ui/core").InputBaseComponentProps;
|
|
358
|
+
getTagListBoxProps: (props?: Omit<HTMLAttributes<HTMLElement>, "color"> | undefined) => {
|
|
359
|
+
children?: import("react").ReactNode;
|
|
246
360
|
defaultChecked?: boolean | undefined;
|
|
247
361
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
248
362
|
suppressContentEditableWarning?: boolean | undefined;
|
|
249
363
|
suppressHydrationWarning?: boolean | undefined;
|
|
250
364
|
accessKey?: string | undefined;
|
|
251
|
-
|
|
365
|
+
autoFocus?: boolean | undefined;
|
|
366
|
+
className?: string | undefined;
|
|
367
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
252
368
|
contextMenu?: string | undefined;
|
|
253
369
|
dir?: string | undefined;
|
|
254
|
-
draggable?: boolean | "true" | "false" | undefined;
|
|
370
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
255
371
|
hidden?: boolean | undefined;
|
|
256
|
-
|
|
257
|
-
|
|
372
|
+
id?: string | undefined;
|
|
373
|
+
lang?: string | undefined;
|
|
374
|
+
nonce?: string | undefined;
|
|
375
|
+
slot?: string | undefined;
|
|
376
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
377
|
+
style?: import("react").CSSProperties | undefined;
|
|
378
|
+
tabIndex?: number | undefined;
|
|
379
|
+
title?: string | undefined;
|
|
380
|
+
translate?: "yes" | "no" | undefined;
|
|
258
381
|
radioGroup?: string | undefined;
|
|
382
|
+
role?: import("react").AriaRole | undefined;
|
|
259
383
|
about?: string | undefined;
|
|
384
|
+
content?: string | undefined;
|
|
260
385
|
datatype?: string | undefined;
|
|
261
386
|
inlist?: any;
|
|
262
387
|
prefix?: string | undefined;
|
|
263
388
|
property?: string | undefined;
|
|
389
|
+
rel?: string | undefined;
|
|
264
390
|
resource?: string | undefined;
|
|
391
|
+
rev?: string | undefined;
|
|
265
392
|
typeof?: string | undefined;
|
|
266
393
|
vocab?: string | undefined;
|
|
267
394
|
autoCapitalize?: string | undefined;
|
|
@@ -274,21 +401,228 @@ export declare const useDownshift: <T extends RcDownshiftSelectedItem = RcDownsh
|
|
|
274
401
|
itemRef?: string | undefined;
|
|
275
402
|
results?: number | undefined;
|
|
276
403
|
security?: string | undefined;
|
|
277
|
-
unselectable?: "
|
|
278
|
-
inputMode?: "
|
|
404
|
+
unselectable?: "on" | "off" | undefined;
|
|
405
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
279
406
|
is?: string | undefined;
|
|
407
|
+
"aria-activedescendant"?: string | undefined;
|
|
408
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
409
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
410
|
+
"aria-braillelabel"?: string | undefined;
|
|
411
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
412
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
413
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
414
|
+
"aria-colcount"?: number | undefined;
|
|
415
|
+
"aria-colindex"?: number | undefined;
|
|
416
|
+
"aria-colindextext"?: string | undefined;
|
|
417
|
+
"aria-colspan"?: number | undefined;
|
|
418
|
+
"aria-controls"?: string | undefined;
|
|
419
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
420
|
+
"aria-describedby"?: string | undefined;
|
|
421
|
+
"aria-description"?: string | undefined;
|
|
422
|
+
"aria-details"?: string | undefined;
|
|
423
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
424
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
425
|
+
"aria-errormessage"?: string | undefined;
|
|
426
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
427
|
+
"aria-flowto"?: string | undefined;
|
|
428
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
429
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
430
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
431
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
432
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
433
|
+
"aria-label"?: string | undefined;
|
|
434
|
+
"aria-labelledby"?: string | undefined;
|
|
435
|
+
"aria-level"?: number | undefined;
|
|
436
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
437
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
438
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
439
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
440
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
441
|
+
"aria-owns"?: string | undefined;
|
|
442
|
+
"aria-placeholder"?: string | undefined;
|
|
443
|
+
"aria-posinset"?: number | undefined;
|
|
444
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
445
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
446
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
447
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
448
|
+
"aria-roledescription"?: string | undefined;
|
|
449
|
+
"aria-rowcount"?: number | undefined;
|
|
450
|
+
"aria-rowindex"?: number | undefined;
|
|
451
|
+
"aria-rowindextext"?: string | undefined;
|
|
452
|
+
"aria-rowspan"?: number | undefined;
|
|
453
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
454
|
+
"aria-setsize"?: number | undefined;
|
|
455
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
456
|
+
"aria-valuemax"?: number | undefined;
|
|
457
|
+
"aria-valuemin"?: number | undefined;
|
|
458
|
+
"aria-valuenow"?: number | undefined;
|
|
459
|
+
"aria-valuetext"?: string | undefined;
|
|
460
|
+
dangerouslySetInnerHTML?: {
|
|
461
|
+
__html: string | TrustedHTML;
|
|
462
|
+
} | undefined;
|
|
463
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
464
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
465
|
+
onCut?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
466
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
467
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
468
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
469
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
470
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
471
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
472
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
473
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
474
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
475
|
+
onFocus?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
476
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
477
|
+
onBlur?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
478
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
479
|
+
onChange?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
480
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
481
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
482
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
483
|
+
onInput?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
484
|
+
onInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
485
|
+
onReset?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
486
|
+
onResetCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
487
|
+
onSubmit?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
488
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
489
|
+
onInvalid?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
490
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
491
|
+
onLoad?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
492
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
493
|
+
onError?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
494
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
495
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
496
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
497
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
498
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
499
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
500
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
501
|
+
onAbort?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
502
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
503
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
504
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
505
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
506
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
507
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
508
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
509
|
+
onEmptied?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
510
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
511
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
512
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
513
|
+
onEnded?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
514
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
515
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
516
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
517
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
518
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
519
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
520
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
521
|
+
onPause?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
522
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
523
|
+
onPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
524
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
525
|
+
onPlaying?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
526
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
527
|
+
onProgress?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
528
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
529
|
+
onRateChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
530
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
531
|
+
onResize?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
532
|
+
onResizeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
533
|
+
onSeeked?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
534
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
535
|
+
onSeeking?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
536
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
537
|
+
onStalled?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
538
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
539
|
+
onSuspend?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
540
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
541
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
542
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
543
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
544
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
545
|
+
onWaiting?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
546
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
547
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
548
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
549
|
+
onClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
550
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
551
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
552
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
553
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
554
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
555
|
+
onDrag?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
556
|
+
onDragCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
557
|
+
onDragEnd?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
558
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
559
|
+
onDragEnter?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
560
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
561
|
+
onDragExit?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
562
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
563
|
+
onDragLeave?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
564
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
565
|
+
onDragOver?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
566
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
567
|
+
onDragStart?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
568
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
569
|
+
onDrop?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
570
|
+
onDropCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
571
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
572
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
573
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
574
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
575
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
576
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
577
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
578
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
579
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
580
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
581
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
582
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
583
|
+
onSelect?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
584
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
585
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
586
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
587
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
588
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
589
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
590
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
591
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
592
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
593
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
594
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
595
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
596
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
597
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
598
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
599
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
600
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
601
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
602
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
603
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
604
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
605
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
606
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
607
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
608
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
609
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
610
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
611
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
612
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
613
|
+
onScroll?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
614
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
615
|
+
onWheel?: import("react").WheelEventHandler<HTMLElement> | undefined;
|
|
616
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLElement> | undefined;
|
|
617
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
618
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
619
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
620
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
621
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
622
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
623
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
624
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
280
625
|
};
|
|
281
|
-
getClearButtonProps: (props?: RcIconButtonProps | undefined) => RcIconButtonProps;
|
|
282
|
-
activeIndex: number;
|
|
283
|
-
setActiveIndex: (tagToFocus: number, focus?: any) => void;
|
|
284
|
-
isOpen: boolean;
|
|
285
|
-
getToggleButtonProps: (props?: RcIconButtonProps | undefined) => RcIconButtonProps;
|
|
286
|
-
getPopperProps: (restPopperProps?: HTMLAttributes<HTMLElement> | undefined) => HTMLAttributes<HTMLElement>;
|
|
287
|
-
getLabelProps: (props?: Partial<import("@material-ui/core").InputLabelProps> | undefined) => Partial<import("@material-ui/core").InputLabelProps>;
|
|
288
|
-
getMenuProps: (restMenuProps?: HTMLAttributes<HTMLElement> | undefined) => HTMLAttributes<HTMLElement>;
|
|
289
|
-
getInputProps: (props?: Partial<import("@material-ui/core").InputProps> | undefined) => Partial<import("@material-ui/core").InputProps>;
|
|
290
|
-
getInputAriaProps: (props?: import("@material-ui/core").InputBaseComponentProps | undefined) => import("@material-ui/core").InputBaseComponentProps;
|
|
291
|
-
getTagListBoxProps: (props?: Pick<HTMLAttributes<HTMLElement>, "className" | "id" | "lang" | "style" | "role" | "tabIndex" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "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-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" | "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" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "radioGroup" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is"> | undefined) => {};
|
|
292
626
|
getItemProps: (props: RcDownshiftGetItemPropsOptions<T>) => {
|
|
293
627
|
isSelected?: boolean | undefined;
|
|
294
628
|
disabled?: boolean | undefined;
|
|
@@ -298,29 +632,33 @@ export declare const useDownshift: <T extends RcDownshiftSelectedItem = RcDownsh
|
|
|
298
632
|
suppressContentEditableWarning?: boolean | undefined;
|
|
299
633
|
suppressHydrationWarning?: boolean | undefined;
|
|
300
634
|
accessKey?: string | undefined;
|
|
635
|
+
autoFocus?: boolean | undefined;
|
|
301
636
|
className?: string | undefined;
|
|
302
|
-
contentEditable?: boolean | "
|
|
637
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
303
638
|
contextMenu?: string | undefined;
|
|
304
639
|
dir?: string | undefined;
|
|
305
|
-
draggable?: boolean | "true" | "false" | undefined;
|
|
640
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
306
641
|
hidden?: boolean | undefined;
|
|
307
642
|
id?: string | undefined;
|
|
308
643
|
lang?: string | undefined;
|
|
309
|
-
|
|
644
|
+
nonce?: string | undefined;
|
|
310
645
|
slot?: string | undefined;
|
|
311
|
-
spellCheck?: boolean | "true" | "false" | undefined;
|
|
646
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
312
647
|
style?: import("react").CSSProperties | undefined;
|
|
313
648
|
tabIndex?: number | undefined;
|
|
314
649
|
title?: string | undefined;
|
|
315
|
-
translate?: "
|
|
650
|
+
translate?: "yes" | "no" | undefined;
|
|
316
651
|
radioGroup?: string | undefined;
|
|
317
|
-
role?: "
|
|
652
|
+
role?: import("react").AriaRole | undefined;
|
|
318
653
|
about?: string | undefined;
|
|
654
|
+
content?: string | undefined;
|
|
319
655
|
datatype?: string | undefined;
|
|
320
656
|
inlist?: any;
|
|
321
657
|
prefix?: string | undefined;
|
|
322
658
|
property?: string | undefined;
|
|
659
|
+
rel?: string | undefined;
|
|
323
660
|
resource?: string | undefined;
|
|
661
|
+
rev?: string | undefined;
|
|
324
662
|
typeof?: string | undefined;
|
|
325
663
|
vocab?: string | undefined;
|
|
326
664
|
autoCapitalize?: string | undefined;
|
|
@@ -334,221 +672,228 @@ export declare const useDownshift: <T extends RcDownshiftSelectedItem = RcDownsh
|
|
|
334
672
|
itemRef?: string | undefined;
|
|
335
673
|
results?: number | undefined;
|
|
336
674
|
security?: string | undefined;
|
|
337
|
-
unselectable?: "
|
|
338
|
-
inputMode?: "
|
|
675
|
+
unselectable?: "on" | "off" | undefined;
|
|
676
|
+
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
339
677
|
is?: string | undefined;
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
678
|
+
"aria-activedescendant"?: string | undefined;
|
|
679
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
680
|
+
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
681
|
+
"aria-braillelabel"?: string | undefined;
|
|
682
|
+
"aria-brailleroledescription"?: string | undefined;
|
|
683
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
684
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
685
|
+
"aria-colcount"?: number | undefined;
|
|
686
|
+
"aria-colindex"?: number | undefined;
|
|
687
|
+
"aria-colindextext"?: string | undefined;
|
|
688
|
+
"aria-colspan"?: number | undefined;
|
|
689
|
+
"aria-controls"?: string | undefined;
|
|
690
|
+
"aria-current"?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
|
|
691
|
+
"aria-describedby"?: string | undefined;
|
|
692
|
+
"aria-description"?: string | undefined;
|
|
693
|
+
"aria-details"?: string | undefined;
|
|
694
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
695
|
+
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
696
|
+
"aria-errormessage"?: string | undefined;
|
|
697
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
698
|
+
"aria-flowto"?: string | undefined;
|
|
699
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
700
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
701
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
702
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
703
|
+
"aria-keyshortcuts"?: string | undefined;
|
|
704
|
+
"aria-label"?: string | undefined;
|
|
705
|
+
"aria-labelledby"?: string | undefined;
|
|
706
|
+
"aria-level"?: number | undefined;
|
|
707
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
708
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
709
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
710
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
711
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
712
|
+
"aria-owns"?: string | undefined;
|
|
713
|
+
"aria-placeholder"?: string | undefined;
|
|
714
|
+
"aria-posinset"?: number | undefined;
|
|
715
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
716
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
717
|
+
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
718
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
719
|
+
"aria-roledescription"?: string | undefined;
|
|
720
|
+
"aria-rowcount"?: number | undefined;
|
|
721
|
+
"aria-rowindex"?: number | undefined;
|
|
722
|
+
"aria-rowindextext"?: string | undefined;
|
|
723
|
+
"aria-rowspan"?: number | undefined;
|
|
724
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
725
|
+
"aria-setsize"?: number | undefined;
|
|
726
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
727
|
+
"aria-valuemax"?: number | undefined;
|
|
728
|
+
"aria-valuemin"?: number | undefined;
|
|
729
|
+
"aria-valuenow"?: number | undefined;
|
|
730
|
+
"aria-valuetext"?: string | undefined;
|
|
388
731
|
children?: import("react").ReactNode;
|
|
389
732
|
dangerouslySetInnerHTML?: {
|
|
390
|
-
__html: string;
|
|
733
|
+
__html: string | TrustedHTML;
|
|
391
734
|
} | undefined;
|
|
392
|
-
onCopy?:
|
|
393
|
-
onCopyCapture?:
|
|
394
|
-
onCut?:
|
|
395
|
-
onCutCapture?:
|
|
396
|
-
onPaste?:
|
|
397
|
-
onPasteCapture?:
|
|
398
|
-
onCompositionEnd?:
|
|
399
|
-
onCompositionEndCapture?:
|
|
400
|
-
onCompositionStart?:
|
|
401
|
-
onCompositionStartCapture?:
|
|
402
|
-
onCompositionUpdate?:
|
|
403
|
-
onCompositionUpdateCapture?:
|
|
404
|
-
onFocus?:
|
|
405
|
-
onFocusCapture?:
|
|
406
|
-
onBlur?:
|
|
407
|
-
onBlurCapture?:
|
|
408
|
-
onChange?:
|
|
409
|
-
onChangeCapture?:
|
|
410
|
-
onBeforeInput?:
|
|
411
|
-
onBeforeInputCapture?:
|
|
412
|
-
onInput?:
|
|
413
|
-
onInputCapture?:
|
|
414
|
-
onReset?:
|
|
415
|
-
onResetCapture?:
|
|
416
|
-
onSubmit?:
|
|
417
|
-
onSubmitCapture?:
|
|
418
|
-
onInvalid?:
|
|
419
|
-
onInvalidCapture?:
|
|
420
|
-
onLoad?:
|
|
421
|
-
onLoadCapture?:
|
|
422
|
-
onError?:
|
|
423
|
-
onErrorCapture?:
|
|
424
|
-
onKeyDown?:
|
|
425
|
-
onKeyDownCapture?:
|
|
426
|
-
onKeyPress?:
|
|
427
|
-
onKeyPressCapture?:
|
|
428
|
-
onKeyUp?:
|
|
429
|
-
onKeyUpCapture?:
|
|
430
|
-
onAbort?:
|
|
431
|
-
onAbortCapture?:
|
|
432
|
-
onCanPlay?:
|
|
433
|
-
onCanPlayCapture?:
|
|
434
|
-
onCanPlayThrough?:
|
|
435
|
-
onCanPlayThroughCapture?:
|
|
436
|
-
onDurationChange?:
|
|
437
|
-
onDurationChangeCapture?:
|
|
438
|
-
onEmptied?:
|
|
439
|
-
onEmptiedCapture?:
|
|
440
|
-
onEncrypted?:
|
|
441
|
-
onEncryptedCapture?:
|
|
442
|
-
onEnded?:
|
|
443
|
-
onEndedCapture?:
|
|
444
|
-
onLoadedData?:
|
|
445
|
-
onLoadedDataCapture?:
|
|
446
|
-
onLoadedMetadata?:
|
|
447
|
-
onLoadedMetadataCapture?:
|
|
448
|
-
onLoadStart?:
|
|
449
|
-
onLoadStartCapture?:
|
|
450
|
-
onPause?:
|
|
451
|
-
onPauseCapture?:
|
|
452
|
-
onPlay?:
|
|
453
|
-
onPlayCapture?:
|
|
454
|
-
onPlaying?:
|
|
455
|
-
onPlayingCapture?:
|
|
456
|
-
onProgress?:
|
|
457
|
-
onProgressCapture?:
|
|
458
|
-
onRateChange?:
|
|
459
|
-
onRateChangeCapture?:
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
735
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
736
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
737
|
+
onCut?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
738
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
739
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
740
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLElement> | undefined;
|
|
741
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
742
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
743
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
744
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
745
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
746
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLElement> | undefined;
|
|
747
|
+
onFocus?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
748
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
749
|
+
onBlur?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
750
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLElement> | undefined;
|
|
751
|
+
onChange?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
752
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
753
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
754
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
755
|
+
onInput?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
756
|
+
onInputCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
757
|
+
onReset?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
758
|
+
onResetCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
759
|
+
onSubmit?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
760
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
761
|
+
onInvalid?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
762
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLElement> | undefined;
|
|
763
|
+
onLoad?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
764
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
765
|
+
onError?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
766
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
767
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
768
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
769
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
770
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
771
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
772
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLElement> | undefined;
|
|
773
|
+
onAbort?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
774
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
775
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
776
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
777
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
778
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
779
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
780
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
781
|
+
onEmptied?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
782
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
783
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
784
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
785
|
+
onEnded?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
786
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
787
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
788
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
789
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
790
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
791
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
792
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
793
|
+
onPause?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
794
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
795
|
+
onPlay?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
796
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
797
|
+
onPlaying?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
798
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
799
|
+
onProgress?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
800
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
801
|
+
onRateChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
802
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
803
|
+
onResize?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
804
|
+
onResizeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
805
|
+
onSeeked?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
806
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
807
|
+
onSeeking?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
808
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
809
|
+
onStalled?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
810
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
811
|
+
onSuspend?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
812
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
813
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
814
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
815
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
816
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
817
|
+
onWaiting?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
818
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
819
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
820
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
821
|
+
onClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
822
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
823
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
824
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
825
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
826
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
827
|
+
onDrag?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
828
|
+
onDragCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
829
|
+
onDragEnd?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
830
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
831
|
+
onDragEnter?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
832
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
833
|
+
onDragExit?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
834
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
835
|
+
onDragLeave?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
836
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
837
|
+
onDragOver?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
838
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
839
|
+
onDragStart?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
840
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
841
|
+
onDrop?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
842
|
+
onDropCapture?: import("react").DragEventHandler<HTMLElement> | undefined;
|
|
843
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
844
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
845
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
846
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
847
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
848
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
849
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
850
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
851
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
852
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
853
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
854
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLElement> | undefined;
|
|
855
|
+
onSelect?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
856
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLElement> | undefined;
|
|
857
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
858
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
859
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
860
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
861
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
862
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
863
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
864
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLElement> | undefined;
|
|
865
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
866
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
867
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
868
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
869
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
870
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
871
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
872
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
873
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
874
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
875
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
876
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
877
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
878
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
879
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
880
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
881
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
882
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
883
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
884
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLElement> | undefined;
|
|
885
|
+
onScroll?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
886
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLElement> | undefined;
|
|
887
|
+
onWheel?: import("react").WheelEventHandler<HTMLElement> | undefined;
|
|
888
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLElement> | undefined;
|
|
889
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
890
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
891
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
892
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
893
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
894
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLElement> | undefined;
|
|
895
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
896
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLElement> | undefined;
|
|
552
897
|
};
|
|
553
898
|
getNoOptionsProps: (additionProps: HTMLAttributes<HTMLElement>) => HTMLAttributes<HTMLElement>;
|
|
554
899
|
noOptionItem: T | null;
|
|
@@ -556,7 +901,7 @@ export declare const useDownshift: <T extends RcDownshiftSelectedItem = RcDownsh
|
|
|
556
901
|
tags: T[];
|
|
557
902
|
optionItems: T[];
|
|
558
903
|
inputValue: string;
|
|
559
|
-
onInputChange: (newValue: string, open?: boolean, e?: ChangeEvent<{}>
|
|
904
|
+
onInputChange: (newValue: string, open?: boolean, e?: ChangeEvent<{}>) => boolean;
|
|
560
905
|
keepHighlightedIndex: () => void;
|
|
561
906
|
isKeepHighlightedIndex: boolean;
|
|
562
907
|
setHighlightedIndex: (index: number, { reRender, reason, }: {
|
|
@@ -564,9 +909,9 @@ export declare const useDownshift: <T extends RcDownshiftSelectedItem = RcDownsh
|
|
|
564
909
|
reason?: import("./useDownshift.interface").RcDownshiftHighlightChangeReason;
|
|
565
910
|
}) => void;
|
|
566
911
|
changeHighlightedIndexReason: import("./useDownshift.interface").RcDownshiftHighlightChangeReason;
|
|
567
|
-
closeMenu: (e?: ChangeEvent<{}
|
|
568
|
-
openMenu: (e?: ChangeEvent<{}>
|
|
569
|
-
reset: (isFocus?: boolean
|
|
912
|
+
closeMenu: (e?: ChangeEvent<{}>, reason?: RcDownshiftCloseReason) => void;
|
|
913
|
+
openMenu: (e?: ChangeEvent<{}>) => void;
|
|
914
|
+
reset: (isFocus?: boolean) => void;
|
|
570
915
|
forceUpdate: () => void;
|
|
571
916
|
optionsGroupList: import("./SelectItem").RcDownshiftGroupedOption<T>[];
|
|
572
917
|
/** that state of current downshift focused, both tag or input focused */
|