@ringcentral/juno 2.46.0 → 3.0.0-alpha.1
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 +7 -70
- package/components/Dialer/DialPad/DialPad.js +24 -23
- 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 +18 -23
- package/components/Transitions/ZoomFrom/utils/transformToFromElm.js +2 -1
- package/components/Transitions/ZoomInFadeOut/ZoomInFadeOut.d.ts +3 -3
- package/components/Transitions/ZoomInFadeOut/ZoomInFadeOut.js +17 -19
- 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 +3 -3
- 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/ZoomFrom.js +1 -7
- package/es6/components/Transitions/ZoomFrom/utils/transformToFromElm.js +1 -1
- package/es6/components/Transitions/ZoomInFadeOut/ZoomInFadeOut.js +4 -7
- 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/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 +1 -1
- 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.js +5 -3
- 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.js +4 -3
- 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 +4 -5
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as u from './urx';
|
|
2
2
|
import React from 'react';
|
|
3
|
-
import { Components, ComputeItemKey, GroupContent, GroupItemContent, ItemContent } from './interfaces';
|
|
3
|
+
import { Components, ComputeItemKey, GroupContent, GroupItemContent, ItemContent, ListRootProps } from './interfaces';
|
|
4
4
|
import { ScrollerProps } from '.';
|
|
5
5
|
import { GroupedVirtuosoHandle, GroupedVirtuosoProps, VirtuosoHandle, VirtuosoProps } from './component-interfaces/Virtuoso';
|
|
6
6
|
export declare function identity<T>(value: T): T;
|
|
@@ -18,9 +18,9 @@ interface Hooks {
|
|
|
18
18
|
useEmitter: typeof useEmitter;
|
|
19
19
|
}
|
|
20
20
|
export declare function buildScroller({ usePublisher, useEmitter, useEmitterValue }: Hooks): React.FunctionComponent<ScrollerProps>;
|
|
21
|
-
export declare function buildWindowScroller({ usePublisher, useEmitter, useEmitterValue }: Hooks): React.FunctionComponent<Pick<
|
|
21
|
+
export declare function buildWindowScroller({ usePublisher, useEmitter, useEmitterValue }: Hooks): React.FunctionComponent<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
22
22
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
23
|
-
}, "
|
|
23
|
+
}, "children" | "style" | "tabIndex" | "ref"> & {
|
|
24
24
|
'data-test-id'?: string | undefined;
|
|
25
25
|
'data-virtuoso-scroller'?: boolean | undefined;
|
|
26
26
|
} & {
|
|
@@ -28,51 +28,45 @@ export declare function buildWindowScroller({ usePublisher, useEmitter, useEmitt
|
|
|
28
28
|
}>;
|
|
29
29
|
export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
30
30
|
data?: import("./sizeSystem").Data;
|
|
31
|
+
logLevel?: import("./loggerSystem").LogLevel | undefined;
|
|
31
32
|
totalCount?: number | undefined;
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
reverse: number;
|
|
37
|
-
} | undefined;
|
|
38
|
-
increaseViewportBy?: number | {
|
|
39
|
-
bottom?: number | undefined;
|
|
40
|
-
top?: number | undefined;
|
|
41
|
-
} | undefined;
|
|
42
|
-
topItemCount?: number | undefined;
|
|
33
|
+
firstItemIndex?: number | undefined;
|
|
34
|
+
itemSize?: import("./interfaces").SizeFunction | undefined;
|
|
35
|
+
atBottomThreshold?: number | undefined;
|
|
36
|
+
atTopThreshold?: number | undefined;
|
|
43
37
|
initialTopMostItemIndex?: number | import("./interfaces").FlatIndexLocationWithAlign | undefined;
|
|
44
|
-
|
|
38
|
+
followOutput?: import("./interfaces").FollowOutput | undefined;
|
|
39
|
+
groupCounts?: number[] | undefined;
|
|
40
|
+
overscan?: import("./sizeRangeSystem").Overscan | undefined;
|
|
41
|
+
increaseViewportBy?: import("./sizeRangeSystem").ViewportIncrease | undefined;
|
|
45
42
|
initialItemCount?: number | undefined;
|
|
46
|
-
components?: Components<any, unknown> | undefined;
|
|
47
|
-
computeItemKey?: ComputeItemKey<any, any> | undefined;
|
|
48
|
-
defaultItemHeight?: number | undefined;
|
|
49
|
-
itemSize?: import("./interfaces").SizeFunction | undefined;
|
|
50
|
-
fixedItemHeight?: number | undefined;
|
|
51
43
|
scrollSeekConfiguration?: false | import("./interfaces").ScrollSeekConfiguration | undefined;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
firstItemIndex?: number | undefined;
|
|
44
|
+
topItemCount?: number | undefined;
|
|
45
|
+
initialScrollTop?: number | undefined;
|
|
55
46
|
alignToBottom?: boolean | undefined;
|
|
56
47
|
useWindowScroll?: boolean | undefined;
|
|
57
48
|
customScrollParent?: HTMLElement | undefined;
|
|
58
|
-
scrollerRef?: ((ref: HTMLElement | Window | null) => void) | undefined;
|
|
59
|
-
atTopThreshold?: number | undefined;
|
|
60
|
-
atBottomThreshold?: number | undefined;
|
|
61
|
-
logLevel?: import("./loggerSystem").LogLevel | undefined;
|
|
62
49
|
restoreStateFrom?: import("./interfaces").StateSnapshot | undefined;
|
|
63
|
-
|
|
50
|
+
fixedItemHeight?: number | undefined;
|
|
51
|
+
defaultItemHeight?: number | undefined;
|
|
52
|
+
context?: unknown;
|
|
53
|
+
components?: Components<any, unknown> | undefined;
|
|
54
|
+
itemContent?: ItemContent<any, any> | GroupItemContent<any, any> | undefined;
|
|
55
|
+
computeItemKey?: ComputeItemKey<any, any> | undefined;
|
|
56
|
+
headerFooterTag?: string | undefined;
|
|
57
|
+
scrollerRef?: ((ref: HTMLElement | Window | null) => void) | undefined;
|
|
64
58
|
groupContent?: GroupContent<any> | undefined;
|
|
65
59
|
} & {
|
|
60
|
+
groupIndices?: ((value: number[]) => void) | undefined;
|
|
66
61
|
isScrolling?: ((value: boolean) => void) | undefined;
|
|
62
|
+
atTopStateChange?: ((value: boolean) => void) | undefined;
|
|
63
|
+
atBottomStateChange?: ((value: boolean) => void) | undefined;
|
|
67
64
|
endReached?: ((value: number) => void) | undefined;
|
|
68
65
|
startReached?: ((value: number) => void) | undefined;
|
|
69
66
|
rangeChanged?: ((value: import("./interfaces").ListRange | undefined) => void) | undefined;
|
|
70
|
-
atBottomStateChange?: ((value: boolean) => void) | undefined;
|
|
71
|
-
atTopStateChange?: ((value: boolean) => void) | undefined;
|
|
72
|
-
totalListHeightChanged?: ((value: number) => void) | undefined;
|
|
73
67
|
itemsRendered?: ((value: import("./listStateSystem").ListItems) => void) | undefined;
|
|
74
|
-
|
|
75
|
-
} &
|
|
68
|
+
totalListHeightChanged?: ((value: number) => void) | undefined;
|
|
69
|
+
} & ListRootProps & React.RefAttributes<import("./react-urx").MethodsFromPropMap<u.SystemSpec<[u.SystemSpec<[u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
76
70
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
77
71
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
78
72
|
}>, u.SystemSpec<never[], () => {
|
|
@@ -226,7 +220,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
226
220
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
227
221
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
228
222
|
}]) => {
|
|
229
|
-
scrollToIndex: u.Stream<
|
|
223
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
230
224
|
topListHeight: u.StatefulStream<number>;
|
|
231
225
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
232
226
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -271,7 +265,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
271
265
|
deviation: u.StatefulStream<number>;
|
|
272
266
|
scrollingInProgress: u.StatefulStream<boolean>;
|
|
273
267
|
}, {
|
|
274
|
-
scrollToIndex: u.Stream<
|
|
268
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
275
269
|
topListHeight: u.StatefulStream<number>;
|
|
276
270
|
}, {
|
|
277
271
|
propsReady: u.StatefulStream<boolean>;
|
|
@@ -463,7 +457,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
463
457
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
464
458
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
465
459
|
}]) => {
|
|
466
|
-
scrollToIndex: u.Stream<
|
|
460
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
467
461
|
topListHeight: u.StatefulStream<number>;
|
|
468
462
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
469
463
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -508,7 +502,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
508
502
|
deviation: u.StatefulStream<number>;
|
|
509
503
|
scrollingInProgress: u.StatefulStream<boolean>;
|
|
510
504
|
}, {
|
|
511
|
-
scrollToIndex: u.Stream<
|
|
505
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
512
506
|
topListHeight: u.StatefulStream<number>;
|
|
513
507
|
}, {
|
|
514
508
|
propsReady: u.StatefulStream<boolean>;
|
|
@@ -762,7 +756,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
762
756
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
763
757
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
764
758
|
}]) => {
|
|
765
|
-
scrollToIndex: u.Stream<
|
|
759
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
766
760
|
topListHeight: u.StatefulStream<number>;
|
|
767
761
|
}>, u.SystemSpec<[u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
768
762
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -890,7 +884,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
890
884
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
891
885
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
892
886
|
}]) => {
|
|
893
|
-
scrollToIndex: u.Stream<
|
|
887
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
894
888
|
topListHeight: u.StatefulStream<number>;
|
|
895
889
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
896
890
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -935,7 +929,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
935
929
|
deviation: u.StatefulStream<number>;
|
|
936
930
|
scrollingInProgress: u.StatefulStream<boolean>;
|
|
937
931
|
}, {
|
|
938
|
-
scrollToIndex: u.Stream<
|
|
932
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
939
933
|
topListHeight: u.StatefulStream<number>;
|
|
940
934
|
}, {
|
|
941
935
|
propsReady: u.StatefulStream<boolean>;
|
|
@@ -1001,7 +995,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
1001
995
|
scrollVelocity: u.StatefulStream<number>;
|
|
1002
996
|
lastJumpDueToItemResize: u.StatefulStream<number>;
|
|
1003
997
|
}, {
|
|
1004
|
-
scrollToIndex: u.Stream<
|
|
998
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
1005
999
|
topListHeight: u.StatefulStream<number>;
|
|
1006
1000
|
}, {
|
|
1007
1001
|
scrolledToInitialItem: u.StatefulStream<boolean>;
|
|
@@ -1299,7 +1293,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
1299
1293
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
1300
1294
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
1301
1295
|
}]) => {
|
|
1302
|
-
scrollToIndex: u.Stream<
|
|
1296
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
1303
1297
|
topListHeight: u.StatefulStream<number>;
|
|
1304
1298
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
1305
1299
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -1344,7 +1338,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
1344
1338
|
deviation: u.StatefulStream<number>;
|
|
1345
1339
|
scrollingInProgress: u.StatefulStream<boolean>;
|
|
1346
1340
|
}, {
|
|
1347
|
-
scrollToIndex: u.Stream<
|
|
1341
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
1348
1342
|
topListHeight: u.StatefulStream<number>;
|
|
1349
1343
|
}, {
|
|
1350
1344
|
propsReady: u.StatefulStream<boolean>;
|
|
@@ -1435,7 +1429,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
1435
1429
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
1436
1430
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
1437
1431
|
}]) => {
|
|
1438
|
-
scrollToIndex: u.Stream<
|
|
1432
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
1439
1433
|
topListHeight: u.StatefulStream<number>;
|
|
1440
1434
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
1441
1435
|
scrollContainerState: u.Stream<import("./interfaces").ScrollContainerState>;
|
|
@@ -1521,7 +1515,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
1521
1515
|
scrolledToInitialItem: u.StatefulStream<boolean>;
|
|
1522
1516
|
initialTopMostItemIndex: u.StatefulStream<number | import("./interfaces").FlatIndexLocationWithAlign>;
|
|
1523
1517
|
}, {
|
|
1524
|
-
scrollToIndex: u.Stream<
|
|
1518
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
1525
1519
|
topListHeight: u.StatefulStream<number>;
|
|
1526
1520
|
}, {
|
|
1527
1521
|
isScrolling: u.StatefulStream<boolean>;
|
|
@@ -1642,7 +1636,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
1642
1636
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
1643
1637
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
1644
1638
|
}]) => {
|
|
1645
|
-
scrollToIndex: u.Stream<
|
|
1639
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
1646
1640
|
topListHeight: u.StatefulStream<number>;
|
|
1647
1641
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
1648
1642
|
scrollContainerState: u.Stream<import("./interfaces").ScrollContainerState>;
|
|
@@ -1970,7 +1964,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
1970
1964
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
1971
1965
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
1972
1966
|
}]) => {
|
|
1973
|
-
scrollToIndex: u.Stream<
|
|
1967
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
1974
1968
|
topListHeight: u.StatefulStream<number>;
|
|
1975
1969
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
1976
1970
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -2015,7 +2009,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
2015
2009
|
deviation: u.StatefulStream<number>;
|
|
2016
2010
|
scrollingInProgress: u.StatefulStream<boolean>;
|
|
2017
2011
|
}, {
|
|
2018
|
-
scrollToIndex: u.Stream<
|
|
2012
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
2019
2013
|
topListHeight: u.StatefulStream<number>;
|
|
2020
2014
|
}, {
|
|
2021
2015
|
propsReady: u.StatefulStream<boolean>;
|
|
@@ -2106,7 +2100,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
2106
2100
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
2107
2101
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
2108
2102
|
}]) => {
|
|
2109
|
-
scrollToIndex: u.Stream<
|
|
2103
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
2110
2104
|
topListHeight: u.StatefulStream<number>;
|
|
2111
2105
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
2112
2106
|
scrollContainerState: u.Stream<import("./interfaces").ScrollContainerState>;
|
|
@@ -2192,7 +2186,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
2192
2186
|
scrolledToInitialItem: u.StatefulStream<boolean>;
|
|
2193
2187
|
initialTopMostItemIndex: u.StatefulStream<number | import("./interfaces").FlatIndexLocationWithAlign>;
|
|
2194
2188
|
}, {
|
|
2195
|
-
scrollToIndex: u.Stream<
|
|
2189
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
2196
2190
|
topListHeight: u.StatefulStream<number>;
|
|
2197
2191
|
}, {
|
|
2198
2192
|
isScrolling: u.StatefulStream<boolean>;
|
|
@@ -2603,7 +2597,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
2603
2597
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
2604
2598
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
2605
2599
|
}]) => {
|
|
2606
|
-
scrollToIndex: u.Stream<
|
|
2600
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
2607
2601
|
topListHeight: u.StatefulStream<number>;
|
|
2608
2602
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
2609
2603
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -2648,7 +2642,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
2648
2642
|
deviation: u.StatefulStream<number>;
|
|
2649
2643
|
scrollingInProgress: u.StatefulStream<boolean>;
|
|
2650
2644
|
}, {
|
|
2651
|
-
scrollToIndex: u.Stream<
|
|
2645
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
2652
2646
|
topListHeight: u.StatefulStream<number>;
|
|
2653
2647
|
}, {
|
|
2654
2648
|
propsReady: u.StatefulStream<boolean>;
|
|
@@ -2739,7 +2733,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
2739
2733
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
2740
2734
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
2741
2735
|
}]) => {
|
|
2742
|
-
scrollToIndex: u.Stream<
|
|
2736
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
2743
2737
|
topListHeight: u.StatefulStream<number>;
|
|
2744
2738
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
2745
2739
|
scrollContainerState: u.Stream<import("./interfaces").ScrollContainerState>;
|
|
@@ -2825,7 +2819,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
2825
2819
|
scrolledToInitialItem: u.StatefulStream<boolean>;
|
|
2826
2820
|
initialTopMostItemIndex: u.StatefulStream<number | import("./interfaces").FlatIndexLocationWithAlign>;
|
|
2827
2821
|
}, {
|
|
2828
|
-
scrollToIndex: u.Stream<
|
|
2822
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
2829
2823
|
topListHeight: u.StatefulStream<number>;
|
|
2830
2824
|
}, {
|
|
2831
2825
|
isScrolling: u.StatefulStream<boolean>;
|
|
@@ -3153,7 +3147,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
3153
3147
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
3154
3148
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
3155
3149
|
}]) => {
|
|
3156
|
-
scrollToIndex: u.Stream<
|
|
3150
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
3157
3151
|
topListHeight: u.StatefulStream<number>;
|
|
3158
3152
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
3159
3153
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -3198,7 +3192,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
3198
3192
|
deviation: u.StatefulStream<number>;
|
|
3199
3193
|
scrollingInProgress: u.StatefulStream<boolean>;
|
|
3200
3194
|
}, {
|
|
3201
|
-
scrollToIndex: u.Stream<
|
|
3195
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
3202
3196
|
topListHeight: u.StatefulStream<number>;
|
|
3203
3197
|
}, {
|
|
3204
3198
|
propsReady: u.StatefulStream<boolean>;
|
|
@@ -3475,7 +3469,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
3475
3469
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
3476
3470
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
3477
3471
|
}]) => {
|
|
3478
|
-
scrollToIndex: u.Stream<
|
|
3472
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
3479
3473
|
topListHeight: u.StatefulStream<number>;
|
|
3480
3474
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
3481
3475
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -3520,7 +3514,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
3520
3514
|
deviation: u.StatefulStream<number>;
|
|
3521
3515
|
scrollingInProgress: u.StatefulStream<boolean>;
|
|
3522
3516
|
}, {
|
|
3523
|
-
scrollToIndex: u.Stream<
|
|
3517
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
3524
3518
|
topListHeight: u.StatefulStream<number>;
|
|
3525
3519
|
}, {
|
|
3526
3520
|
propsReady: u.StatefulStream<boolean>;
|
|
@@ -3611,7 +3605,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
3611
3605
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
3612
3606
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
3613
3607
|
}]) => {
|
|
3614
|
-
scrollToIndex: u.Stream<
|
|
3608
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
3615
3609
|
topListHeight: u.StatefulStream<number>;
|
|
3616
3610
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
3617
3611
|
scrollContainerState: u.Stream<import("./interfaces").ScrollContainerState>;
|
|
@@ -3697,7 +3691,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
3697
3691
|
scrolledToInitialItem: u.StatefulStream<boolean>;
|
|
3698
3692
|
initialTopMostItemIndex: u.StatefulStream<number | import("./interfaces").FlatIndexLocationWithAlign>;
|
|
3699
3693
|
}, {
|
|
3700
|
-
scrollToIndex: u.Stream<
|
|
3694
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
3701
3695
|
topListHeight: u.StatefulStream<number>;
|
|
3702
3696
|
}, {
|
|
3703
3697
|
isScrolling: u.StatefulStream<boolean>;
|
|
@@ -4139,7 +4133,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
4139
4133
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
4140
4134
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
4141
4135
|
}]) => {
|
|
4142
|
-
scrollToIndex: u.Stream<
|
|
4136
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
4143
4137
|
topListHeight: u.StatefulStream<number>;
|
|
4144
4138
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
4145
4139
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -4184,7 +4178,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
4184
4178
|
deviation: u.StatefulStream<number>;
|
|
4185
4179
|
scrollingInProgress: u.StatefulStream<boolean>;
|
|
4186
4180
|
}, {
|
|
4187
|
-
scrollToIndex: u.Stream<
|
|
4181
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
4188
4182
|
topListHeight: u.StatefulStream<number>;
|
|
4189
4183
|
}, {
|
|
4190
4184
|
propsReady: u.StatefulStream<boolean>;
|
|
@@ -4275,7 +4269,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
4275
4269
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
4276
4270
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
4277
4271
|
}]) => {
|
|
4278
|
-
scrollToIndex: u.Stream<
|
|
4272
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
4279
4273
|
topListHeight: u.StatefulStream<number>;
|
|
4280
4274
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
4281
4275
|
scrollContainerState: u.Stream<import("./interfaces").ScrollContainerState>;
|
|
@@ -4361,7 +4355,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
4361
4355
|
scrolledToInitialItem: u.StatefulStream<boolean>;
|
|
4362
4356
|
initialTopMostItemIndex: u.StatefulStream<number | import("./interfaces").FlatIndexLocationWithAlign>;
|
|
4363
4357
|
}, {
|
|
4364
|
-
scrollToIndex: u.Stream<
|
|
4358
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
4365
4359
|
topListHeight: u.StatefulStream<number>;
|
|
4366
4360
|
}, {
|
|
4367
4361
|
isScrolling: u.StatefulStream<boolean>;
|
|
@@ -4729,7 +4723,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
4729
4723
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
4730
4724
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
4731
4725
|
}]) => {
|
|
4732
|
-
scrollToIndex: u.Stream<
|
|
4726
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
4733
4727
|
topListHeight: u.StatefulStream<number>;
|
|
4734
4728
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
4735
4729
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -4774,7 +4768,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
4774
4768
|
deviation: u.StatefulStream<number>;
|
|
4775
4769
|
scrollingInProgress: u.StatefulStream<boolean>;
|
|
4776
4770
|
}, {
|
|
4777
|
-
scrollToIndex: u.Stream<
|
|
4771
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
4778
4772
|
topListHeight: u.StatefulStream<number>;
|
|
4779
4773
|
}, {
|
|
4780
4774
|
propsReady: u.StatefulStream<boolean>;
|
|
@@ -4865,7 +4859,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
4865
4859
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
4866
4860
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
4867
4861
|
}]) => {
|
|
4868
|
-
scrollToIndex: u.Stream<
|
|
4862
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
4869
4863
|
topListHeight: u.StatefulStream<number>;
|
|
4870
4864
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
4871
4865
|
scrollContainerState: u.Stream<import("./interfaces").ScrollContainerState>;
|
|
@@ -4951,7 +4945,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
4951
4945
|
scrolledToInitialItem: u.StatefulStream<boolean>;
|
|
4952
4946
|
initialTopMostItemIndex: u.StatefulStream<number | import("./interfaces").FlatIndexLocationWithAlign>;
|
|
4953
4947
|
}, {
|
|
4954
|
-
scrollToIndex: u.Stream<
|
|
4948
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
4955
4949
|
topListHeight: u.StatefulStream<number>;
|
|
4956
4950
|
}, {
|
|
4957
4951
|
isScrolling: u.StatefulStream<boolean>;
|
|
@@ -5327,7 +5321,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
5327
5321
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
5328
5322
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
5329
5323
|
}]) => {
|
|
5330
|
-
scrollToIndex: u.Stream<
|
|
5324
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
5331
5325
|
topListHeight: u.StatefulStream<number>;
|
|
5332
5326
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
5333
5327
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -5372,7 +5366,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
5372
5366
|
deviation: u.StatefulStream<number>;
|
|
5373
5367
|
scrollingInProgress: u.StatefulStream<boolean>;
|
|
5374
5368
|
}, {
|
|
5375
|
-
scrollToIndex: u.Stream<
|
|
5369
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
5376
5370
|
topListHeight: u.StatefulStream<number>;
|
|
5377
5371
|
}, {
|
|
5378
5372
|
propsReady: u.StatefulStream<boolean>;
|
|
@@ -5463,7 +5457,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
5463
5457
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
5464
5458
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
5465
5459
|
}]) => {
|
|
5466
|
-
scrollToIndex: u.Stream<
|
|
5460
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
5467
5461
|
topListHeight: u.StatefulStream<number>;
|
|
5468
5462
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
5469
5463
|
scrollContainerState: u.Stream<import("./interfaces").ScrollContainerState>;
|
|
@@ -5549,7 +5543,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
5549
5543
|
scrolledToInitialItem: u.StatefulStream<boolean>;
|
|
5550
5544
|
initialTopMostItemIndex: u.StatefulStream<number | import("./interfaces").FlatIndexLocationWithAlign>;
|
|
5551
5545
|
}, {
|
|
5552
|
-
scrollToIndex: u.Stream<
|
|
5546
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
5553
5547
|
topListHeight: u.StatefulStream<number>;
|
|
5554
5548
|
}, {
|
|
5555
5549
|
isScrolling: u.StatefulStream<boolean>;
|
|
@@ -5807,7 +5801,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
5807
5801
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
5808
5802
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
5809
5803
|
}]) => {
|
|
5810
|
-
scrollToIndex: u.Stream<
|
|
5804
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
5811
5805
|
topListHeight: u.StatefulStream<number>;
|
|
5812
5806
|
}>, u.SystemSpec<[u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
5813
5807
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -6078,7 +6072,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6078
6072
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
6079
6073
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
6080
6074
|
}]) => {
|
|
6081
|
-
scrollToIndex: u.Stream<
|
|
6075
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
6082
6076
|
topListHeight: u.StatefulStream<number>;
|
|
6083
6077
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
6084
6078
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
@@ -6123,7 +6117,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6123
6117
|
deviation: u.StatefulStream<number>;
|
|
6124
6118
|
scrollingInProgress: u.StatefulStream<boolean>;
|
|
6125
6119
|
}, {
|
|
6126
|
-
scrollToIndex: u.Stream<
|
|
6120
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
6127
6121
|
topListHeight: u.StatefulStream<number>;
|
|
6128
6122
|
}, {
|
|
6129
6123
|
propsReady: u.StatefulStream<boolean>;
|
|
@@ -6214,7 +6208,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6214
6208
|
log: u.StatefulStream<import("./loggerSystem").Log>;
|
|
6215
6209
|
logLevel: u.StatefulStream<import("./loggerSystem").LogLevel>;
|
|
6216
6210
|
}]) => {
|
|
6217
|
-
scrollToIndex: u.Stream<
|
|
6211
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
6218
6212
|
topListHeight: u.StatefulStream<number>;
|
|
6219
6213
|
}>, u.SystemSpec<[u.SystemSpec<never[], () => {
|
|
6220
6214
|
scrollContainerState: u.Stream<import("./interfaces").ScrollContainerState>;
|
|
@@ -6300,7 +6294,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6300
6294
|
scrolledToInitialItem: u.StatefulStream<boolean>;
|
|
6301
6295
|
initialTopMostItemIndex: u.StatefulStream<number | import("./interfaces").FlatIndexLocationWithAlign>;
|
|
6302
6296
|
}, {
|
|
6303
|
-
scrollToIndex: u.Stream<
|
|
6297
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
6304
6298
|
topListHeight: u.StatefulStream<number>;
|
|
6305
6299
|
}, {
|
|
6306
6300
|
isScrolling: u.StatefulStream<boolean>;
|
|
@@ -6375,7 +6369,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6375
6369
|
deviation: u.StatefulStream<number>;
|
|
6376
6370
|
scrollingInProgress: u.StatefulStream<boolean>;
|
|
6377
6371
|
}, {
|
|
6378
|
-
scrollToIndex: u.Stream<
|
|
6372
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
6379
6373
|
topListHeight: u.StatefulStream<number>;
|
|
6380
6374
|
}, {
|
|
6381
6375
|
isScrolling: u.StatefulStream<boolean>;
|
|
@@ -6524,7 +6518,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6524
6518
|
itemsRendered: u.Stream<import("./listStateSystem").ListItems>;
|
|
6525
6519
|
initialItemCount: u.StatefulStream<number>;
|
|
6526
6520
|
}, {
|
|
6527
|
-
scrollToIndex: u.Stream<
|
|
6521
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
6528
6522
|
topListHeight: u.StatefulStream<number>;
|
|
6529
6523
|
}, {
|
|
6530
6524
|
deviation: u.StatefulStream<number>;
|
|
@@ -6617,7 +6611,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6617
6611
|
initialItemCount: u.StatefulStream<number>;
|
|
6618
6612
|
statefulTotalCount: u.StatefulStream<number>;
|
|
6619
6613
|
listState: u.StatefulStream<import("./listStateSystem").ListState>;
|
|
6620
|
-
scrollToIndex: u.Stream<
|
|
6614
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
6621
6615
|
trackItemSizes: u.StatefulStream<boolean>;
|
|
6622
6616
|
itemSize: u.StatefulStream<import("./interfaces").SizeFunction>;
|
|
6623
6617
|
groupIndices: u.StatefulStream<number[]>;
|
|
@@ -6643,51 +6637,25 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6643
6637
|
computeItemKey: u.StatefulStream<ComputeItemKey<any, any>>;
|
|
6644
6638
|
headerFooterTag: u.StatefulStream<string>;
|
|
6645
6639
|
scrollerRef: u.StatefulStream<(ref: HTMLElement | Window | null) => void>;
|
|
6646
|
-
FooterComponent: u.StatefulStream<"div" | React.
|
|
6647
|
-
context?: unknown;
|
|
6648
|
-
}, any> | React.FunctionComponent<{
|
|
6640
|
+
FooterComponent: u.StatefulStream<"div" | React.ComponentType<{
|
|
6649
6641
|
context?: unknown;
|
|
6650
6642
|
}> | null | undefined>;
|
|
6651
|
-
HeaderComponent: u.StatefulStream<"div" | React.
|
|
6652
|
-
context?: unknown;
|
|
6653
|
-
}, any> | React.FunctionComponent<{
|
|
6643
|
+
HeaderComponent: u.StatefulStream<"div" | React.ComponentType<{
|
|
6654
6644
|
context?: unknown;
|
|
6655
6645
|
}> | null | undefined>;
|
|
6656
|
-
TopItemListComponent: u.StatefulStream<"div" | React.
|
|
6657
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6658
|
-
}, "style" | "children"> & {
|
|
6659
|
-
context?: unknown;
|
|
6660
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6661
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6662
|
-
}, "style" | "children"> & {
|
|
6646
|
+
TopItemListComponent: u.StatefulStream<"div" | React.ComponentType<import("./interfaces").TopItemListProps & {
|
|
6663
6647
|
context?: unknown;
|
|
6664
6648
|
}> | null | undefined>;
|
|
6665
|
-
ListComponent: u.StatefulStream<"div" | React.
|
|
6666
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6667
|
-
}, "ref" | "style" | "children"> & {
|
|
6668
|
-
'data-test-id': string;
|
|
6669
|
-
} & {
|
|
6670
|
-
context?: unknown;
|
|
6671
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6649
|
+
ListComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6672
6650
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6673
|
-
}, "
|
|
6651
|
+
}, "children" | "style" | "ref"> & {
|
|
6674
6652
|
'data-test-id': string;
|
|
6675
6653
|
} & {
|
|
6676
6654
|
context?: unknown;
|
|
6677
6655
|
}> | null | undefined>;
|
|
6678
|
-
ItemComponent: u.StatefulStream<"div" | React.
|
|
6679
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6680
|
-
}, "style" | "children"> & {
|
|
6681
|
-
'data-index': number;
|
|
6682
|
-
'data-item-index': number;
|
|
6683
|
-
'data-item-group-index'?: number | undefined;
|
|
6684
|
-
'data-known-size': number;
|
|
6685
|
-
item: any;
|
|
6686
|
-
} & {
|
|
6687
|
-
context?: unknown;
|
|
6688
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6656
|
+
ItemComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6689
6657
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6690
|
-
}, "
|
|
6658
|
+
}, "children" | "style"> & {
|
|
6691
6659
|
'data-index': number;
|
|
6692
6660
|
'data-item-index': number;
|
|
6693
6661
|
'data-item-group-index'?: number | undefined;
|
|
@@ -6696,46 +6664,27 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6696
6664
|
} & {
|
|
6697
6665
|
context?: unknown;
|
|
6698
6666
|
}> | null | undefined>;
|
|
6699
|
-
GroupComponent: u.StatefulStream<"div" | React.
|
|
6700
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6701
|
-
}, "style" | "children"> & {
|
|
6702
|
-
'data-index': number;
|
|
6703
|
-
'data-item-index': number;
|
|
6704
|
-
'data-known-size': number;
|
|
6705
|
-
} & {
|
|
6706
|
-
context?: unknown;
|
|
6707
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6667
|
+
GroupComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6708
6668
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6709
|
-
}, "
|
|
6669
|
+
}, "children" | "style"> & {
|
|
6710
6670
|
'data-index': number;
|
|
6711
6671
|
'data-item-index': number;
|
|
6712
6672
|
'data-known-size': number;
|
|
6713
6673
|
} & {
|
|
6714
6674
|
context?: unknown;
|
|
6715
6675
|
}> | null | undefined>;
|
|
6716
|
-
ScrollerComponent: u.StatefulStream<"div" | React.
|
|
6676
|
+
ScrollerComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6717
6677
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6718
|
-
}, "
|
|
6719
|
-
'data-test-id'?: string | undefined;
|
|
6720
|
-
'data-virtuoso-scroller'?: boolean | undefined;
|
|
6721
|
-
} & {
|
|
6722
|
-
context?: unknown;
|
|
6723
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6724
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6725
|
-
}, "ref" | "style" | "tabIndex" | "children"> & {
|
|
6678
|
+
}, "children" | "style" | "tabIndex" | "ref"> & {
|
|
6726
6679
|
'data-test-id'?: string | undefined;
|
|
6727
6680
|
'data-virtuoso-scroller'?: boolean | undefined;
|
|
6728
6681
|
} & {
|
|
6729
6682
|
context?: unknown;
|
|
6730
6683
|
}> | null | undefined>;
|
|
6731
|
-
EmptyPlaceholder: u.StatefulStream<"div" | React.
|
|
6732
|
-
context?: unknown;
|
|
6733
|
-
}, any> | React.FunctionComponent<{
|
|
6684
|
+
EmptyPlaceholder: u.StatefulStream<"div" | React.ComponentType<{
|
|
6734
6685
|
context?: unknown;
|
|
6735
6686
|
}> | null | undefined>;
|
|
6736
|
-
ScrollSeekPlaceholder: u.StatefulStream<"div" | React.
|
|
6737
|
-
context?: unknown;
|
|
6738
|
-
}, any> | React.FunctionComponent<import("./interfaces").ScrollSeekPlaceholderProps & {
|
|
6687
|
+
ScrollSeekPlaceholder: u.StatefulStream<"div" | React.ComponentType<import("./interfaces").ScrollSeekPlaceholderProps & {
|
|
6739
6688
|
context?: unknown;
|
|
6740
6689
|
}> | null | undefined>;
|
|
6741
6690
|
}>], ([listSystem, propsSystem]: [{
|
|
@@ -6797,7 +6746,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6797
6746
|
initialItemCount: u.StatefulStream<number>;
|
|
6798
6747
|
statefulTotalCount: u.StatefulStream<number>;
|
|
6799
6748
|
listState: u.StatefulStream<import("./listStateSystem").ListState>;
|
|
6800
|
-
scrollToIndex: u.Stream<
|
|
6749
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
6801
6750
|
trackItemSizes: u.StatefulStream<boolean>;
|
|
6802
6751
|
itemSize: u.StatefulStream<import("./interfaces").SizeFunction>;
|
|
6803
6752
|
groupIndices: u.StatefulStream<number[]>;
|
|
@@ -6823,51 +6772,25 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6823
6772
|
computeItemKey: u.StatefulStream<ComputeItemKey<any, any>>;
|
|
6824
6773
|
headerFooterTag: u.StatefulStream<string>;
|
|
6825
6774
|
scrollerRef: u.StatefulStream<(ref: HTMLElement | Window | null) => void>;
|
|
6826
|
-
FooterComponent: u.StatefulStream<"div" | React.
|
|
6827
|
-
context?: unknown;
|
|
6828
|
-
}, any> | React.FunctionComponent<{
|
|
6775
|
+
FooterComponent: u.StatefulStream<"div" | React.ComponentType<{
|
|
6829
6776
|
context?: unknown;
|
|
6830
6777
|
}> | null | undefined>;
|
|
6831
|
-
HeaderComponent: u.StatefulStream<"div" | React.
|
|
6832
|
-
context?: unknown;
|
|
6833
|
-
}, any> | React.FunctionComponent<{
|
|
6778
|
+
HeaderComponent: u.StatefulStream<"div" | React.ComponentType<{
|
|
6834
6779
|
context?: unknown;
|
|
6835
6780
|
}> | null | undefined>;
|
|
6836
|
-
TopItemListComponent: u.StatefulStream<"div" | React.
|
|
6837
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6838
|
-
}, "style" | "children"> & {
|
|
6839
|
-
context?: unknown;
|
|
6840
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6841
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6842
|
-
}, "style" | "children"> & {
|
|
6781
|
+
TopItemListComponent: u.StatefulStream<"div" | React.ComponentType<import("./interfaces").TopItemListProps & {
|
|
6843
6782
|
context?: unknown;
|
|
6844
6783
|
}> | null | undefined>;
|
|
6845
|
-
ListComponent: u.StatefulStream<"div" | React.
|
|
6846
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6847
|
-
}, "ref" | "style" | "children"> & {
|
|
6848
|
-
'data-test-id': string;
|
|
6849
|
-
} & {
|
|
6850
|
-
context?: unknown;
|
|
6851
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6784
|
+
ListComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6852
6785
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6853
|
-
}, "
|
|
6786
|
+
}, "children" | "style" | "ref"> & {
|
|
6854
6787
|
'data-test-id': string;
|
|
6855
6788
|
} & {
|
|
6856
6789
|
context?: unknown;
|
|
6857
6790
|
}> | null | undefined>;
|
|
6858
|
-
ItemComponent: u.StatefulStream<"div" | React.
|
|
6791
|
+
ItemComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6859
6792
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6860
|
-
}, "
|
|
6861
|
-
'data-index': number;
|
|
6862
|
-
'data-item-index': number;
|
|
6863
|
-
'data-item-group-index'?: number | undefined;
|
|
6864
|
-
'data-known-size': number;
|
|
6865
|
-
item: any;
|
|
6866
|
-
} & {
|
|
6867
|
-
context?: unknown;
|
|
6868
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6869
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6870
|
-
}, "style" | "children"> & {
|
|
6793
|
+
}, "children" | "style"> & {
|
|
6871
6794
|
'data-index': number;
|
|
6872
6795
|
'data-item-index': number;
|
|
6873
6796
|
'data-item-group-index'?: number | undefined;
|
|
@@ -6876,46 +6799,27 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6876
6799
|
} & {
|
|
6877
6800
|
context?: unknown;
|
|
6878
6801
|
}> | null | undefined>;
|
|
6879
|
-
GroupComponent: u.StatefulStream<"div" | React.
|
|
6880
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6881
|
-
}, "style" | "children"> & {
|
|
6882
|
-
'data-index': number;
|
|
6883
|
-
'data-item-index': number;
|
|
6884
|
-
'data-known-size': number;
|
|
6885
|
-
} & {
|
|
6886
|
-
context?: unknown;
|
|
6887
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6802
|
+
GroupComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6888
6803
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6889
|
-
}, "
|
|
6804
|
+
}, "children" | "style"> & {
|
|
6890
6805
|
'data-index': number;
|
|
6891
6806
|
'data-item-index': number;
|
|
6892
6807
|
'data-known-size': number;
|
|
6893
6808
|
} & {
|
|
6894
6809
|
context?: unknown;
|
|
6895
6810
|
}> | null | undefined>;
|
|
6896
|
-
ScrollerComponent: u.StatefulStream<"div" | React.
|
|
6811
|
+
ScrollerComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6897
6812
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6898
|
-
}, "
|
|
6899
|
-
'data-test-id'?: string | undefined;
|
|
6900
|
-
'data-virtuoso-scroller'?: boolean | undefined;
|
|
6901
|
-
} & {
|
|
6902
|
-
context?: unknown;
|
|
6903
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6904
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6905
|
-
}, "ref" | "style" | "tabIndex" | "children"> & {
|
|
6813
|
+
}, "children" | "style" | "tabIndex" | "ref"> & {
|
|
6906
6814
|
'data-test-id'?: string | undefined;
|
|
6907
6815
|
'data-virtuoso-scroller'?: boolean | undefined;
|
|
6908
6816
|
} & {
|
|
6909
6817
|
context?: unknown;
|
|
6910
6818
|
}> | null | undefined>;
|
|
6911
|
-
EmptyPlaceholder: u.StatefulStream<"div" | React.
|
|
6912
|
-
context?: unknown;
|
|
6913
|
-
}, any> | React.FunctionComponent<{
|
|
6819
|
+
EmptyPlaceholder: u.StatefulStream<"div" | React.ComponentType<{
|
|
6914
6820
|
context?: unknown;
|
|
6915
6821
|
}> | null | undefined>;
|
|
6916
|
-
ScrollSeekPlaceholder: u.StatefulStream<"div" | React.
|
|
6917
|
-
context?: unknown;
|
|
6918
|
-
}, any> | React.FunctionComponent<import("./interfaces").ScrollSeekPlaceholderProps & {
|
|
6822
|
+
ScrollSeekPlaceholder: u.StatefulStream<"div" | React.ComponentType<import("./interfaces").ScrollSeekPlaceholderProps & {
|
|
6919
6823
|
context?: unknown;
|
|
6920
6824
|
}> | null | undefined>;
|
|
6921
6825
|
}]) => {
|
|
@@ -6926,51 +6830,25 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6926
6830
|
computeItemKey: u.StatefulStream<ComputeItemKey<any, any>>;
|
|
6927
6831
|
headerFooterTag: u.StatefulStream<string>;
|
|
6928
6832
|
scrollerRef: u.StatefulStream<(ref: HTMLElement | Window | null) => void>;
|
|
6929
|
-
FooterComponent: u.StatefulStream<"div" | React.
|
|
6930
|
-
context?: unknown;
|
|
6931
|
-
}, any> | React.FunctionComponent<{
|
|
6833
|
+
FooterComponent: u.StatefulStream<"div" | React.ComponentType<{
|
|
6932
6834
|
context?: unknown;
|
|
6933
6835
|
}> | null | undefined>;
|
|
6934
|
-
HeaderComponent: u.StatefulStream<"div" | React.
|
|
6935
|
-
context?: unknown;
|
|
6936
|
-
}, any> | React.FunctionComponent<{
|
|
6836
|
+
HeaderComponent: u.StatefulStream<"div" | React.ComponentType<{
|
|
6937
6837
|
context?: unknown;
|
|
6938
6838
|
}> | null | undefined>;
|
|
6939
|
-
TopItemListComponent: u.StatefulStream<"div" | React.
|
|
6940
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6941
|
-
}, "style" | "children"> & {
|
|
6942
|
-
context?: unknown;
|
|
6943
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6944
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6945
|
-
}, "style" | "children"> & {
|
|
6839
|
+
TopItemListComponent: u.StatefulStream<"div" | React.ComponentType<import("./interfaces").TopItemListProps & {
|
|
6946
6840
|
context?: unknown;
|
|
6947
6841
|
}> | null | undefined>;
|
|
6948
|
-
ListComponent: u.StatefulStream<"div" | React.
|
|
6949
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6950
|
-
}, "ref" | "style" | "children"> & {
|
|
6951
|
-
'data-test-id': string;
|
|
6952
|
-
} & {
|
|
6953
|
-
context?: unknown;
|
|
6954
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6842
|
+
ListComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6955
6843
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6956
|
-
}, "
|
|
6844
|
+
}, "children" | "style" | "ref"> & {
|
|
6957
6845
|
'data-test-id': string;
|
|
6958
6846
|
} & {
|
|
6959
6847
|
context?: unknown;
|
|
6960
6848
|
}> | null | undefined>;
|
|
6961
|
-
ItemComponent: u.StatefulStream<"div" | React.
|
|
6962
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6963
|
-
}, "style" | "children"> & {
|
|
6964
|
-
'data-index': number;
|
|
6965
|
-
'data-item-index': number;
|
|
6966
|
-
'data-item-group-index'?: number | undefined;
|
|
6967
|
-
'data-known-size': number;
|
|
6968
|
-
item: any;
|
|
6969
|
-
} & {
|
|
6970
|
-
context?: unknown;
|
|
6971
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6849
|
+
ItemComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6972
6850
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6973
|
-
}, "
|
|
6851
|
+
}, "children" | "style"> & {
|
|
6974
6852
|
'data-index': number;
|
|
6975
6853
|
'data-item-index': number;
|
|
6976
6854
|
'data-item-group-index'?: number | undefined;
|
|
@@ -6979,46 +6857,27 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
6979
6857
|
} & {
|
|
6980
6858
|
context?: unknown;
|
|
6981
6859
|
}> | null | undefined>;
|
|
6982
|
-
GroupComponent: u.StatefulStream<"div" | React.
|
|
6860
|
+
GroupComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
6983
6861
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6984
|
-
}, "
|
|
6985
|
-
'data-index': number;
|
|
6986
|
-
'data-item-index': number;
|
|
6987
|
-
'data-known-size': number;
|
|
6988
|
-
} & {
|
|
6989
|
-
context?: unknown;
|
|
6990
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6991
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
6992
|
-
}, "style" | "children"> & {
|
|
6862
|
+
}, "children" | "style"> & {
|
|
6993
6863
|
'data-index': number;
|
|
6994
6864
|
'data-item-index': number;
|
|
6995
6865
|
'data-known-size': number;
|
|
6996
6866
|
} & {
|
|
6997
6867
|
context?: unknown;
|
|
6998
6868
|
}> | null | undefined>;
|
|
6999
|
-
ScrollerComponent: u.StatefulStream<"div" | React.
|
|
7000
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7001
|
-
}, "ref" | "style" | "tabIndex" | "children"> & {
|
|
7002
|
-
'data-test-id'?: string | undefined;
|
|
7003
|
-
'data-virtuoso-scroller'?: boolean | undefined;
|
|
7004
|
-
} & {
|
|
7005
|
-
context?: unknown;
|
|
7006
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
6869
|
+
ScrollerComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
7007
6870
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7008
|
-
}, "
|
|
6871
|
+
}, "children" | "style" | "tabIndex" | "ref"> & {
|
|
7009
6872
|
'data-test-id'?: string | undefined;
|
|
7010
6873
|
'data-virtuoso-scroller'?: boolean | undefined;
|
|
7011
6874
|
} & {
|
|
7012
6875
|
context?: unknown;
|
|
7013
6876
|
}> | null | undefined>;
|
|
7014
|
-
EmptyPlaceholder: u.StatefulStream<"div" | React.
|
|
7015
|
-
context?: unknown;
|
|
7016
|
-
}, any> | React.FunctionComponent<{
|
|
6877
|
+
EmptyPlaceholder: u.StatefulStream<"div" | React.ComponentType<{
|
|
7017
6878
|
context?: unknown;
|
|
7018
6879
|
}> | null | undefined>;
|
|
7019
|
-
ScrollSeekPlaceholder: u.StatefulStream<"div" | React.
|
|
7020
|
-
context?: unknown;
|
|
7021
|
-
}, any> | React.FunctionComponent<import("./interfaces").ScrollSeekPlaceholderProps & {
|
|
6880
|
+
ScrollSeekPlaceholder: u.StatefulStream<"div" | React.ComponentType<import("./interfaces").ScrollSeekPlaceholderProps & {
|
|
7022
6881
|
context?: unknown;
|
|
7023
6882
|
}> | null | undefined>;
|
|
7024
6883
|
getState: u.Stream<import("./interfaces").StateCallback>;
|
|
@@ -7079,7 +6938,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7079
6938
|
initialItemCount: u.StatefulStream<number>;
|
|
7080
6939
|
statefulTotalCount: u.StatefulStream<number>;
|
|
7081
6940
|
listState: u.StatefulStream<import("./listStateSystem").ListState>;
|
|
7082
|
-
scrollToIndex: u.Stream<
|
|
6941
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
7083
6942
|
trackItemSizes: u.StatefulStream<boolean>;
|
|
7084
6943
|
itemSize: u.StatefulStream<import("./interfaces").SizeFunction>;
|
|
7085
6944
|
groupIndices: u.StatefulStream<number[]>;
|
|
@@ -7149,7 +7008,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7149
7008
|
itemsRendered: "itemsRendered";
|
|
7150
7009
|
groupIndices: "groupIndices";
|
|
7151
7010
|
};
|
|
7152
|
-
}>>>, usePublisher: <K extends "
|
|
7011
|
+
}>>>, usePublisher: <K extends "data" | "log" | "sizes" | "gap" | "scrollHeight" | "scrollTop" | "scrollBy" | "scrollIntoView" | "scrollTo" | "propsReady" | "logLevel" | "scrollContainerState" | "viewportHeight" | "headerHeight" | "fixedHeaderHeight" | "fixedFooterHeight" | "footerHeight" | "smoothScrollTargetReached" | "statefulScrollTop" | "deviation" | "scrollingInProgress" | "groupIndices" | "totalCount" | "sizeRanges" | "firstItemIndex" | "statefulTotalCount" | "trackItemSizes" | "itemSize" | "scrollToIndex" | "topListHeight" | "isScrolling" | "isAtTop" | "isAtBottom" | "atBottomThreshold" | "atBottomState" | "atTopStateChange" | "atBottomStateChange" | "scrollDirection" | "atTopThreshold" | "scrollVelocity" | "lastJumpDueToItemResize" | "didMount" | "scrolledToInitialItem" | "initialTopMostItemIndex" | "followOutput" | "autoscrollToBottom" | "groupCounts" | "topItemsIndexes" | "listBoundary" | "overscan" | "increaseViewportBy" | "visibleRange" | "listState" | "endReached" | "startReached" | "rangeChanged" | "itemsRendered" | "initialItemCount" | "isSeeking" | "scrollSeekConfiguration" | "scrollSeekRangeChanged" | "topItemCount" | "totalListHeight" | "totalListHeightChanged" | "initialScrollTop" | "alignToBottom" | "paddingTopAddition" | "useWindowScroll" | "customScrollParent" | "windowScrollContainerState" | "windowViewportRect" | "windowScrollTo" | "getState" | "restoreStateFrom" | "fixedItemHeight" | "defaultItemHeight" | "context" | "components" | "itemContent" | "computeItemKey" | "headerFooterTag" | "scrollerRef" | "groupContent" | "EmptyPlaceholder" | "ScrollSeekPlaceholder" | "FooterComponent" | "HeaderComponent" | "TopItemListComponent" | "ListComponent" | "ItemComponent" | "GroupComponent" | "ScrollerComponent">(key: K) => (value: {
|
|
7153
7012
|
context: u.StatefulStream<unknown>;
|
|
7154
7013
|
itemContent: u.StatefulStream<ItemContent<any, any> | GroupItemContent<any, any>>;
|
|
7155
7014
|
groupContent: u.StatefulStream<GroupContent<any>>;
|
|
@@ -7157,51 +7016,25 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7157
7016
|
computeItemKey: u.StatefulStream<ComputeItemKey<any, any>>;
|
|
7158
7017
|
headerFooterTag: u.StatefulStream<string>;
|
|
7159
7018
|
scrollerRef: u.StatefulStream<(ref: HTMLElement | Window | null) => void>;
|
|
7160
|
-
FooterComponent: u.StatefulStream<"div" | React.
|
|
7161
|
-
context?: unknown;
|
|
7162
|
-
}, any> | React.FunctionComponent<{
|
|
7019
|
+
FooterComponent: u.StatefulStream<"div" | React.ComponentType<{
|
|
7163
7020
|
context?: unknown;
|
|
7164
7021
|
}> | null | undefined>;
|
|
7165
|
-
HeaderComponent: u.StatefulStream<"div" | React.
|
|
7166
|
-
context?: unknown;
|
|
7167
|
-
}, any> | React.FunctionComponent<{
|
|
7022
|
+
HeaderComponent: u.StatefulStream<"div" | React.ComponentType<{
|
|
7168
7023
|
context?: unknown;
|
|
7169
7024
|
}> | null | undefined>;
|
|
7170
|
-
TopItemListComponent: u.StatefulStream<"div" | React.
|
|
7171
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7172
|
-
}, "style" | "children"> & {
|
|
7173
|
-
context?: unknown;
|
|
7174
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7175
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7176
|
-
}, "style" | "children"> & {
|
|
7025
|
+
TopItemListComponent: u.StatefulStream<"div" | React.ComponentType<import("./interfaces").TopItemListProps & {
|
|
7177
7026
|
context?: unknown;
|
|
7178
7027
|
}> | null | undefined>;
|
|
7179
|
-
ListComponent: u.StatefulStream<"div" | React.
|
|
7028
|
+
ListComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
7180
7029
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7181
|
-
}, "
|
|
7182
|
-
'data-test-id': string;
|
|
7183
|
-
} & {
|
|
7184
|
-
context?: unknown;
|
|
7185
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7186
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7187
|
-
}, "ref" | "style" | "children"> & {
|
|
7030
|
+
}, "children" | "style" | "ref"> & {
|
|
7188
7031
|
'data-test-id': string;
|
|
7189
7032
|
} & {
|
|
7190
7033
|
context?: unknown;
|
|
7191
7034
|
}> | null | undefined>;
|
|
7192
|
-
ItemComponent: u.StatefulStream<"div" | React.
|
|
7193
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7194
|
-
}, "style" | "children"> & {
|
|
7195
|
-
'data-index': number;
|
|
7196
|
-
'data-item-index': number;
|
|
7197
|
-
'data-item-group-index'?: number | undefined;
|
|
7198
|
-
'data-known-size': number;
|
|
7199
|
-
item: any;
|
|
7200
|
-
} & {
|
|
7201
|
-
context?: unknown;
|
|
7202
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7035
|
+
ItemComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
7203
7036
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7204
|
-
}, "
|
|
7037
|
+
}, "children" | "style"> & {
|
|
7205
7038
|
'data-index': number;
|
|
7206
7039
|
'data-item-index': number;
|
|
7207
7040
|
'data-item-group-index'?: number | undefined;
|
|
@@ -7210,46 +7043,27 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7210
7043
|
} & {
|
|
7211
7044
|
context?: unknown;
|
|
7212
7045
|
}> | null | undefined>;
|
|
7213
|
-
GroupComponent: u.StatefulStream<"div" | React.
|
|
7046
|
+
GroupComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
7214
7047
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7215
|
-
}, "
|
|
7216
|
-
'data-index': number;
|
|
7217
|
-
'data-item-index': number;
|
|
7218
|
-
'data-known-size': number;
|
|
7219
|
-
} & {
|
|
7220
|
-
context?: unknown;
|
|
7221
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7222
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7223
|
-
}, "style" | "children"> & {
|
|
7048
|
+
}, "children" | "style"> & {
|
|
7224
7049
|
'data-index': number;
|
|
7225
7050
|
'data-item-index': number;
|
|
7226
7051
|
'data-known-size': number;
|
|
7227
7052
|
} & {
|
|
7228
7053
|
context?: unknown;
|
|
7229
7054
|
}> | null | undefined>;
|
|
7230
|
-
ScrollerComponent: u.StatefulStream<"div" | React.
|
|
7055
|
+
ScrollerComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
7231
7056
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7232
|
-
}, "
|
|
7233
|
-
'data-test-id'?: string | undefined;
|
|
7234
|
-
'data-virtuoso-scroller'?: boolean | undefined;
|
|
7235
|
-
} & {
|
|
7236
|
-
context?: unknown;
|
|
7237
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7238
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7239
|
-
}, "ref" | "style" | "tabIndex" | "children"> & {
|
|
7057
|
+
}, "children" | "style" | "tabIndex" | "ref"> & {
|
|
7240
7058
|
'data-test-id'?: string | undefined;
|
|
7241
7059
|
'data-virtuoso-scroller'?: boolean | undefined;
|
|
7242
7060
|
} & {
|
|
7243
7061
|
context?: unknown;
|
|
7244
7062
|
}> | null | undefined>;
|
|
7245
|
-
EmptyPlaceholder: u.StatefulStream<"div" | React.
|
|
7246
|
-
context?: unknown;
|
|
7247
|
-
}, any> | React.FunctionComponent<{
|
|
7063
|
+
EmptyPlaceholder: u.StatefulStream<"div" | React.ComponentType<{
|
|
7248
7064
|
context?: unknown;
|
|
7249
7065
|
}> | null | undefined>;
|
|
7250
|
-
ScrollSeekPlaceholder: u.StatefulStream<"div" | React.
|
|
7251
|
-
context?: unknown;
|
|
7252
|
-
}, any> | React.FunctionComponent<import("./interfaces").ScrollSeekPlaceholderProps & {
|
|
7066
|
+
ScrollSeekPlaceholder: u.StatefulStream<"div" | React.ComponentType<import("./interfaces").ScrollSeekPlaceholderProps & {
|
|
7253
7067
|
context?: unknown;
|
|
7254
7068
|
}> | null | undefined>;
|
|
7255
7069
|
getState: u.Stream<import("./interfaces").StateCallback>;
|
|
@@ -7310,7 +7124,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7310
7124
|
initialItemCount: u.StatefulStream<number>;
|
|
7311
7125
|
statefulTotalCount: u.StatefulStream<number>;
|
|
7312
7126
|
listState: u.StatefulStream<import("./listStateSystem").ListState>;
|
|
7313
|
-
scrollToIndex: u.Stream<
|
|
7127
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
7314
7128
|
trackItemSizes: u.StatefulStream<boolean>;
|
|
7315
7129
|
itemSize: u.StatefulStream<import("./interfaces").SizeFunction>;
|
|
7316
7130
|
groupIndices: u.StatefulStream<number[]>;
|
|
@@ -7328,7 +7142,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7328
7142
|
fixedItemHeight: u.StatefulStream<number | undefined>;
|
|
7329
7143
|
defaultItemHeight: u.StatefulStream<number | undefined>;
|
|
7330
7144
|
gap: u.StatefulStream<number>;
|
|
7331
|
-
}[K] extends u.Stream<infer R> ? R : never) => void, useEmitterValue: <K extends "
|
|
7145
|
+
}[K] extends u.Stream<infer R> ? R : never) => void, useEmitterValue: <K extends "data" | "log" | "sizes" | "gap" | "scrollHeight" | "scrollTop" | "scrollBy" | "scrollIntoView" | "scrollTo" | "propsReady" | "logLevel" | "scrollContainerState" | "viewportHeight" | "headerHeight" | "fixedHeaderHeight" | "fixedFooterHeight" | "footerHeight" | "smoothScrollTargetReached" | "statefulScrollTop" | "deviation" | "scrollingInProgress" | "groupIndices" | "totalCount" | "sizeRanges" | "firstItemIndex" | "statefulTotalCount" | "trackItemSizes" | "itemSize" | "scrollToIndex" | "topListHeight" | "isScrolling" | "isAtTop" | "isAtBottom" | "atBottomThreshold" | "atBottomState" | "atTopStateChange" | "atBottomStateChange" | "scrollDirection" | "atTopThreshold" | "scrollVelocity" | "lastJumpDueToItemResize" | "didMount" | "scrolledToInitialItem" | "initialTopMostItemIndex" | "followOutput" | "autoscrollToBottom" | "groupCounts" | "topItemsIndexes" | "listBoundary" | "overscan" | "increaseViewportBy" | "visibleRange" | "listState" | "endReached" | "startReached" | "rangeChanged" | "itemsRendered" | "initialItemCount" | "isSeeking" | "scrollSeekConfiguration" | "scrollSeekRangeChanged" | "topItemCount" | "totalListHeight" | "totalListHeightChanged" | "initialScrollTop" | "alignToBottom" | "paddingTopAddition" | "useWindowScroll" | "customScrollParent" | "windowScrollContainerState" | "windowViewportRect" | "windowScrollTo" | "getState" | "restoreStateFrom" | "fixedItemHeight" | "defaultItemHeight" | "context" | "components" | "itemContent" | "computeItemKey" | "headerFooterTag" | "scrollerRef" | "groupContent" | "EmptyPlaceholder" | "ScrollSeekPlaceholder" | "FooterComponent" | "HeaderComponent" | "TopItemListComponent" | "ListComponent" | "ItemComponent" | "GroupComponent" | "ScrollerComponent", V = {
|
|
7332
7146
|
context: u.StatefulStream<unknown>;
|
|
7333
7147
|
itemContent: u.StatefulStream<ItemContent<any, any> | GroupItemContent<any, any>>;
|
|
7334
7148
|
groupContent: u.StatefulStream<GroupContent<any>>;
|
|
@@ -7336,51 +7150,25 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7336
7150
|
computeItemKey: u.StatefulStream<ComputeItemKey<any, any>>;
|
|
7337
7151
|
headerFooterTag: u.StatefulStream<string>;
|
|
7338
7152
|
scrollerRef: u.StatefulStream<(ref: HTMLElement | Window | null) => void>;
|
|
7339
|
-
FooterComponent: u.StatefulStream<"div" | React.
|
|
7340
|
-
context?: unknown;
|
|
7341
|
-
}, any> | React.FunctionComponent<{
|
|
7153
|
+
FooterComponent: u.StatefulStream<"div" | React.ComponentType<{
|
|
7342
7154
|
context?: unknown;
|
|
7343
7155
|
}> | null | undefined>;
|
|
7344
|
-
HeaderComponent: u.StatefulStream<"div" | React.
|
|
7345
|
-
context?: unknown;
|
|
7346
|
-
}, any> | React.FunctionComponent<{
|
|
7156
|
+
HeaderComponent: u.StatefulStream<"div" | React.ComponentType<{
|
|
7347
7157
|
context?: unknown;
|
|
7348
7158
|
}> | null | undefined>;
|
|
7349
|
-
TopItemListComponent: u.StatefulStream<"div" | React.
|
|
7350
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7351
|
-
}, "style" | "children"> & {
|
|
7352
|
-
context?: unknown;
|
|
7353
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7354
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7355
|
-
}, "style" | "children"> & {
|
|
7159
|
+
TopItemListComponent: u.StatefulStream<"div" | React.ComponentType<import("./interfaces").TopItemListProps & {
|
|
7356
7160
|
context?: unknown;
|
|
7357
7161
|
}> | null | undefined>;
|
|
7358
|
-
ListComponent: u.StatefulStream<"div" | React.
|
|
7162
|
+
ListComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
7359
7163
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7360
|
-
}, "
|
|
7361
|
-
'data-test-id': string;
|
|
7362
|
-
} & {
|
|
7363
|
-
context?: unknown;
|
|
7364
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7365
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7366
|
-
}, "ref" | "style" | "children"> & {
|
|
7164
|
+
}, "children" | "style" | "ref"> & {
|
|
7367
7165
|
'data-test-id': string;
|
|
7368
7166
|
} & {
|
|
7369
7167
|
context?: unknown;
|
|
7370
7168
|
}> | null | undefined>;
|
|
7371
|
-
ItemComponent: u.StatefulStream<"div" | React.
|
|
7372
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7373
|
-
}, "style" | "children"> & {
|
|
7374
|
-
'data-index': number;
|
|
7375
|
-
'data-item-index': number;
|
|
7376
|
-
'data-item-group-index'?: number | undefined;
|
|
7377
|
-
'data-known-size': number;
|
|
7378
|
-
item: any;
|
|
7379
|
-
} & {
|
|
7380
|
-
context?: unknown;
|
|
7381
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7169
|
+
ItemComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
7382
7170
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7383
|
-
}, "
|
|
7171
|
+
}, "children" | "style"> & {
|
|
7384
7172
|
'data-index': number;
|
|
7385
7173
|
'data-item-index': number;
|
|
7386
7174
|
'data-item-group-index'?: number | undefined;
|
|
@@ -7389,46 +7177,27 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7389
7177
|
} & {
|
|
7390
7178
|
context?: unknown;
|
|
7391
7179
|
}> | null | undefined>;
|
|
7392
|
-
GroupComponent: u.StatefulStream<"div" | React.
|
|
7393
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7394
|
-
}, "style" | "children"> & {
|
|
7395
|
-
'data-index': number;
|
|
7396
|
-
'data-item-index': number;
|
|
7397
|
-
'data-known-size': number;
|
|
7398
|
-
} & {
|
|
7399
|
-
context?: unknown;
|
|
7400
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7180
|
+
GroupComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
7401
7181
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7402
|
-
}, "
|
|
7182
|
+
}, "children" | "style"> & {
|
|
7403
7183
|
'data-index': number;
|
|
7404
7184
|
'data-item-index': number;
|
|
7405
7185
|
'data-known-size': number;
|
|
7406
7186
|
} & {
|
|
7407
7187
|
context?: unknown;
|
|
7408
7188
|
}> | null | undefined>;
|
|
7409
|
-
ScrollerComponent: u.StatefulStream<"div" | React.
|
|
7410
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7411
|
-
}, "ref" | "style" | "tabIndex" | "children"> & {
|
|
7412
|
-
'data-test-id'?: string | undefined;
|
|
7413
|
-
'data-virtuoso-scroller'?: boolean | undefined;
|
|
7414
|
-
} & {
|
|
7415
|
-
context?: unknown;
|
|
7416
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7189
|
+
ScrollerComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
7417
7190
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7418
|
-
}, "
|
|
7191
|
+
}, "children" | "style" | "tabIndex" | "ref"> & {
|
|
7419
7192
|
'data-test-id'?: string | undefined;
|
|
7420
7193
|
'data-virtuoso-scroller'?: boolean | undefined;
|
|
7421
7194
|
} & {
|
|
7422
7195
|
context?: unknown;
|
|
7423
7196
|
}> | null | undefined>;
|
|
7424
|
-
EmptyPlaceholder: u.StatefulStream<"div" | React.
|
|
7425
|
-
context?: unknown;
|
|
7426
|
-
}, any> | React.FunctionComponent<{
|
|
7197
|
+
EmptyPlaceholder: u.StatefulStream<"div" | React.ComponentType<{
|
|
7427
7198
|
context?: unknown;
|
|
7428
7199
|
}> | null | undefined>;
|
|
7429
|
-
ScrollSeekPlaceholder: u.StatefulStream<"div" | React.
|
|
7430
|
-
context?: unknown;
|
|
7431
|
-
}, any> | React.FunctionComponent<import("./interfaces").ScrollSeekPlaceholderProps & {
|
|
7200
|
+
ScrollSeekPlaceholder: u.StatefulStream<"div" | React.ComponentType<import("./interfaces").ScrollSeekPlaceholderProps & {
|
|
7432
7201
|
context?: unknown;
|
|
7433
7202
|
}> | null | undefined>;
|
|
7434
7203
|
getState: u.Stream<import("./interfaces").StateCallback>;
|
|
@@ -7489,7 +7258,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7489
7258
|
initialItemCount: u.StatefulStream<number>;
|
|
7490
7259
|
statefulTotalCount: u.StatefulStream<number>;
|
|
7491
7260
|
listState: u.StatefulStream<import("./listStateSystem").ListState>;
|
|
7492
|
-
scrollToIndex: u.Stream<
|
|
7261
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
7493
7262
|
trackItemSizes: u.StatefulStream<boolean>;
|
|
7494
7263
|
itemSize: u.StatefulStream<import("./interfaces").SizeFunction>;
|
|
7495
7264
|
groupIndices: u.StatefulStream<number[]>;
|
|
@@ -7507,7 +7276,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7507
7276
|
fixedItemHeight: u.StatefulStream<number | undefined>;
|
|
7508
7277
|
defaultItemHeight: u.StatefulStream<number | undefined>;
|
|
7509
7278
|
gap: u.StatefulStream<number>;
|
|
7510
|
-
}[K] extends u.StatefulStream<infer R> ? R : never>(key: K) => V, useEmitter: <K extends "
|
|
7279
|
+
}[K] extends u.StatefulStream<infer R> ? R : never>(key: K) => V, useEmitter: <K extends "data" | "log" | "sizes" | "gap" | "scrollHeight" | "scrollTop" | "scrollBy" | "scrollIntoView" | "scrollTo" | "propsReady" | "logLevel" | "scrollContainerState" | "viewportHeight" | "headerHeight" | "fixedHeaderHeight" | "fixedFooterHeight" | "footerHeight" | "smoothScrollTargetReached" | "statefulScrollTop" | "deviation" | "scrollingInProgress" | "groupIndices" | "totalCount" | "sizeRanges" | "firstItemIndex" | "statefulTotalCount" | "trackItemSizes" | "itemSize" | "scrollToIndex" | "topListHeight" | "isScrolling" | "isAtTop" | "isAtBottom" | "atBottomThreshold" | "atBottomState" | "atTopStateChange" | "atBottomStateChange" | "scrollDirection" | "atTopThreshold" | "scrollVelocity" | "lastJumpDueToItemResize" | "didMount" | "scrolledToInitialItem" | "initialTopMostItemIndex" | "followOutput" | "autoscrollToBottom" | "groupCounts" | "topItemsIndexes" | "listBoundary" | "overscan" | "increaseViewportBy" | "visibleRange" | "listState" | "endReached" | "startReached" | "rangeChanged" | "itemsRendered" | "initialItemCount" | "isSeeking" | "scrollSeekConfiguration" | "scrollSeekRangeChanged" | "topItemCount" | "totalListHeight" | "totalListHeightChanged" | "initialScrollTop" | "alignToBottom" | "paddingTopAddition" | "useWindowScroll" | "customScrollParent" | "windowScrollContainerState" | "windowViewportRect" | "windowScrollTo" | "getState" | "restoreStateFrom" | "fixedItemHeight" | "defaultItemHeight" | "context" | "components" | "itemContent" | "computeItemKey" | "headerFooterTag" | "scrollerRef" | "groupContent" | "EmptyPlaceholder" | "ScrollSeekPlaceholder" | "FooterComponent" | "HeaderComponent" | "TopItemListComponent" | "ListComponent" | "ItemComponent" | "GroupComponent" | "ScrollerComponent", V = {
|
|
7511
7280
|
context: u.StatefulStream<unknown>;
|
|
7512
7281
|
itemContent: u.StatefulStream<ItemContent<any, any> | GroupItemContent<any, any>>;
|
|
7513
7282
|
groupContent: u.StatefulStream<GroupContent<any>>;
|
|
@@ -7515,51 +7284,25 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7515
7284
|
computeItemKey: u.StatefulStream<ComputeItemKey<any, any>>;
|
|
7516
7285
|
headerFooterTag: u.StatefulStream<string>;
|
|
7517
7286
|
scrollerRef: u.StatefulStream<(ref: HTMLElement | Window | null) => void>;
|
|
7518
|
-
FooterComponent: u.StatefulStream<"div" | React.
|
|
7519
|
-
context?: unknown;
|
|
7520
|
-
}, any> | React.FunctionComponent<{
|
|
7287
|
+
FooterComponent: u.StatefulStream<"div" | React.ComponentType<{
|
|
7521
7288
|
context?: unknown;
|
|
7522
7289
|
}> | null | undefined>;
|
|
7523
|
-
HeaderComponent: u.StatefulStream<"div" | React.
|
|
7524
|
-
context?: unknown;
|
|
7525
|
-
}, any> | React.FunctionComponent<{
|
|
7290
|
+
HeaderComponent: u.StatefulStream<"div" | React.ComponentType<{
|
|
7526
7291
|
context?: unknown;
|
|
7527
7292
|
}> | null | undefined>;
|
|
7528
|
-
TopItemListComponent: u.StatefulStream<"div" | React.
|
|
7529
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7530
|
-
}, "style" | "children"> & {
|
|
7531
|
-
context?: unknown;
|
|
7532
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7533
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7534
|
-
}, "style" | "children"> & {
|
|
7293
|
+
TopItemListComponent: u.StatefulStream<"div" | React.ComponentType<import("./interfaces").TopItemListProps & {
|
|
7535
7294
|
context?: unknown;
|
|
7536
7295
|
}> | null | undefined>;
|
|
7537
|
-
ListComponent: u.StatefulStream<"div" | React.
|
|
7296
|
+
ListComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
7538
7297
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7539
|
-
}, "
|
|
7540
|
-
'data-test-id': string;
|
|
7541
|
-
} & {
|
|
7542
|
-
context?: unknown;
|
|
7543
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7544
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7545
|
-
}, "ref" | "style" | "children"> & {
|
|
7298
|
+
}, "children" | "style" | "ref"> & {
|
|
7546
7299
|
'data-test-id': string;
|
|
7547
7300
|
} & {
|
|
7548
7301
|
context?: unknown;
|
|
7549
7302
|
}> | null | undefined>;
|
|
7550
|
-
ItemComponent: u.StatefulStream<"div" | React.
|
|
7551
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7552
|
-
}, "style" | "children"> & {
|
|
7553
|
-
'data-index': number;
|
|
7554
|
-
'data-item-index': number;
|
|
7555
|
-
'data-item-group-index'?: number | undefined;
|
|
7556
|
-
'data-known-size': number;
|
|
7557
|
-
item: any;
|
|
7558
|
-
} & {
|
|
7559
|
-
context?: unknown;
|
|
7560
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7303
|
+
ItemComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
7561
7304
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7562
|
-
}, "
|
|
7305
|
+
}, "children" | "style"> & {
|
|
7563
7306
|
'data-index': number;
|
|
7564
7307
|
'data-item-index': number;
|
|
7565
7308
|
'data-item-group-index'?: number | undefined;
|
|
@@ -7568,46 +7311,27 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7568
7311
|
} & {
|
|
7569
7312
|
context?: unknown;
|
|
7570
7313
|
}> | null | undefined>;
|
|
7571
|
-
GroupComponent: u.StatefulStream<"div" | React.
|
|
7314
|
+
GroupComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
7572
7315
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7573
|
-
}, "
|
|
7574
|
-
'data-index': number;
|
|
7575
|
-
'data-item-index': number;
|
|
7576
|
-
'data-known-size': number;
|
|
7577
|
-
} & {
|
|
7578
|
-
context?: unknown;
|
|
7579
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7580
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7581
|
-
}, "style" | "children"> & {
|
|
7316
|
+
}, "children" | "style"> & {
|
|
7582
7317
|
'data-index': number;
|
|
7583
7318
|
'data-item-index': number;
|
|
7584
7319
|
'data-known-size': number;
|
|
7585
7320
|
} & {
|
|
7586
7321
|
context?: unknown;
|
|
7587
7322
|
}> | null | undefined>;
|
|
7588
|
-
ScrollerComponent: u.StatefulStream<"div" | React.
|
|
7323
|
+
ScrollerComponent: u.StatefulStream<"div" | React.ComponentType<Pick<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
7589
7324
|
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7590
|
-
}, "
|
|
7591
|
-
'data-test-id'?: string | undefined;
|
|
7592
|
-
'data-virtuoso-scroller'?: boolean | undefined;
|
|
7593
|
-
} & {
|
|
7594
|
-
context?: unknown;
|
|
7595
|
-
}, any> | React.FunctionComponent<Pick<Pick<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "key" | "className" | "color" | "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"> & {
|
|
7596
|
-
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
|
|
7597
|
-
}, "ref" | "style" | "tabIndex" | "children"> & {
|
|
7325
|
+
}, "children" | "style" | "tabIndex" | "ref"> & {
|
|
7598
7326
|
'data-test-id'?: string | undefined;
|
|
7599
7327
|
'data-virtuoso-scroller'?: boolean | undefined;
|
|
7600
7328
|
} & {
|
|
7601
7329
|
context?: unknown;
|
|
7602
7330
|
}> | null | undefined>;
|
|
7603
|
-
EmptyPlaceholder: u.StatefulStream<"div" | React.
|
|
7604
|
-
context?: unknown;
|
|
7605
|
-
}, any> | React.FunctionComponent<{
|
|
7331
|
+
EmptyPlaceholder: u.StatefulStream<"div" | React.ComponentType<{
|
|
7606
7332
|
context?: unknown;
|
|
7607
7333
|
}> | null | undefined>;
|
|
7608
|
-
ScrollSeekPlaceholder: u.StatefulStream<"div" | React.
|
|
7609
|
-
context?: unknown;
|
|
7610
|
-
}, any> | React.FunctionComponent<import("./interfaces").ScrollSeekPlaceholderProps & {
|
|
7334
|
+
ScrollSeekPlaceholder: u.StatefulStream<"div" | React.ComponentType<import("./interfaces").ScrollSeekPlaceholderProps & {
|
|
7611
7335
|
context?: unknown;
|
|
7612
7336
|
}> | null | undefined>;
|
|
7613
7337
|
getState: u.Stream<import("./interfaces").StateCallback>;
|
|
@@ -7668,7 +7392,7 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7668
7392
|
initialItemCount: u.StatefulStream<number>;
|
|
7669
7393
|
statefulTotalCount: u.StatefulStream<number>;
|
|
7670
7394
|
listState: u.StatefulStream<import("./listStateSystem").ListState>;
|
|
7671
|
-
scrollToIndex: u.Stream<
|
|
7395
|
+
scrollToIndex: u.Stream<import("./scrollToIndexSystem").IndexLocation>;
|
|
7672
7396
|
trackItemSizes: u.StatefulStream<boolean>;
|
|
7673
7397
|
itemSize: u.StatefulStream<import("./interfaces").SizeFunction>;
|
|
7674
7398
|
groupIndices: u.StatefulStream<number[]>;
|
|
@@ -7688,9 +7412,9 @@ export declare const List: React.ForwardRefExoticComponent<{} & {
|
|
|
7688
7412
|
gap: u.StatefulStream<number>;
|
|
7689
7413
|
}[K] extends u.Stream<infer R> ? R : never>(key: K, callback: (value: V) => void) => void;
|
|
7690
7414
|
export declare const Virtuoso: <ItemData = any, Context = any>(props: VirtuosoProps<ItemData, Context> & {
|
|
7691
|
-
ref?:
|
|
7692
|
-
}) => React.ReactElement
|
|
7415
|
+
ref?: React.Ref<VirtuosoHandle> | undefined;
|
|
7416
|
+
}) => React.ReactElement;
|
|
7693
7417
|
export declare const GroupedVirtuoso: <ItemData = any, Context = any>(props: GroupedVirtuosoProps<ItemData, Context> & {
|
|
7694
|
-
ref?:
|
|
7695
|
-
}) => React.ReactElement
|
|
7418
|
+
ref?: React.Ref<GroupedVirtuosoHandle> | undefined;
|
|
7419
|
+
}) => React.ReactElement;
|
|
7696
7420
|
export {};
|