UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

27 lines (26 loc) 2.73 kB
export type { HighlightChangeDetails as SelectHighlightChangeDetails, OpenChangeDetails as SelectOpenChangeDetails, ValueChangeDetails as SelectValueChangeDetails, } from '@zag-js/select'; export { createListCollection, type CollectionItem, type ListCollection, useListCollection, type UseListCollectionProps, } from '../collection'; export { SelectClearTrigger, type SelectClearTriggerBaseProps, type SelectClearTriggerProps, } from './select-clear-trigger'; export { SelectContent, type SelectContentBaseProps, type SelectContentProps } from './select-content'; export { SelectContext, type SelectContextProps } from './select-context'; export { SelectControl, type SelectControlBaseProps, type SelectControlProps } from './select-control'; export { SelectHiddenSelect, type SelectHiddenSelectBaseProps, type SelectHiddenSelectProps, } from './select-hidden-select'; export { SelectIndicator, type SelectIndicatorBaseProps, type SelectIndicatorProps } from './select-indicator'; export { SelectItem, type SelectItemBaseProps, type SelectItemProps } from './select-item'; export { SelectItemContext, type SelectItemContextProps } from './select-item-context'; export { SelectItemGroup, type SelectItemGroupBaseProps, type SelectItemGroupProps } from './select-item-group'; export { SelectItemGroupLabel, type SelectItemGroupLabelBaseProps, type SelectItemGroupLabelProps, } from './select-item-group-label'; export { SelectItemIndicator, type SelectItemIndicatorBaseProps, type SelectItemIndicatorProps, } from './select-item-indicator'; export { SelectItemText, type SelectItemTextBaseProps, type SelectItemTextProps } from './select-item-text'; export { SelectLabel, type SelectLabelBaseProps, type SelectLabelProps } from './select-label'; export { SelectList, type SelectListBaseProps, type SelectListProps } from './select-list'; export { SelectPositioner, type SelectPositionerBaseProps, type SelectPositionerProps } from './select-positioner'; export { SelectRoot, type SelectRootBaseProps, type SelectRootProps } from './select-root'; export { SelectRootProvider, type SelectRootProviderBaseProps, type SelectRootProviderProps, } from './select-root-provider'; export { SelectTrigger, type SelectTriggerBaseProps, type SelectTriggerProps } from './select-trigger'; export { SelectValueText, type SelectValueTextBaseProps, type SelectValueTextProps } from './select-value-text'; export { selectAnatomy } from './select.anatomy'; export { useSelect, type UseSelectProps, type UseSelectReturn } from './use-select'; export { useSelectContext, type UseSelectContext } from './use-select-context'; export { useSelectItemContext, type UseSelectItemContext } from './use-select-item-context'; export * as Select from './select';