diff --git a/packages/@react-stately/list/src/useSingleSelectListState.ts b/packages/@react-stately/list/src/useSingleSelectListState.ts index 1e4fd22c3c7..345cb1a4f87 100644 --- a/packages/@react-stately/list/src/useSingleSelectListState.ts +++ b/packages/@react-stately/list/src/useSingleSelectListState.ts @@ -16,7 +16,7 @@ import {ListState, useListState} from './useListState'; import {Node} from '@react-types/shared'; import {useControlledState} from '@react-stately/utils'; -export interface SingleSelectListProps extends CollectionBase, SingleSelection { +export interface SingleSelectListProps extends CollectionBase, Omit { /** Filter function to generate a filtered list of nodes. */ filter?: (nodes: Iterable>) => Iterable>, /** @private */ diff --git a/packages/@react-types/combobox/src/index.d.ts b/packages/@react-types/combobox/src/index.d.ts index 0161b95b1d7..92e3f432537 100644 --- a/packages/@react-types/combobox/src/index.d.ts +++ b/packages/@react-types/combobox/src/index.d.ts @@ -14,7 +14,7 @@ import {AsyncLoadable, CollectionBase, DOMProps, FocusableProps, HelpTextProps, export type MenuTriggerAction = 'focus' | 'input' | 'manual'; -export interface ComboBoxProps extends CollectionBase, SingleSelection, InputBase, TextInputBase, Validation, FocusableProps, LabelableProps, HelpTextProps { +export interface ComboBoxProps extends CollectionBase, Omit, InputBase, TextInputBase, Validation, FocusableProps, LabelableProps, HelpTextProps { /** The list of ComboBox items (uncontrolled). */ defaultItems?: Iterable, /** The list of ComboBox items (controlled). */ diff --git a/packages/@react-types/select/src/index.d.ts b/packages/@react-types/select/src/index.d.ts index d34d55b3230..cb33c4a236b 100644 --- a/packages/@react-types/select/src/index.d.ts +++ b/packages/@react-types/select/src/index.d.ts @@ -29,7 +29,7 @@ import { Validation } from '@react-types/shared'; -export interface SelectProps extends CollectionBase, AsyncLoadable, Omit, Validation, HelpTextProps, LabelableProps, TextInputBase, SingleSelection, FocusableProps { +export interface SelectProps extends CollectionBase, AsyncLoadable, Omit, Validation, HelpTextProps, LabelableProps, TextInputBase, Omit, FocusableProps { /** Sets the open state of the menu. */ isOpen?: boolean, /** Sets the default open state of the menu. */