@atlaskit/select
Version:
Select allows users to make a single selection or multiple selections from a list of options.
26 lines (25 loc) • 1.91 kB
TypeScript
export { components } from '@atlaskit/react-select/components';
export { createFilter } from '@atlaskit/react-select/filters';
export { mergeStyles } from '@atlaskit/react-select/styles';
export { type CSSObjectWithLabel } from '@atlaskit/react-select/types';
export { default as useAsync } from '@atlaskit/react-select/use-async';
export { default as useCreatable } from '@atlaskit/react-select/use-creatable';
export { CheckboxOption } from './components/checkbox-option';
export { RadioOption } from './components/radio-option';
export { default } from './select';
export { SelectWithoutAnalytics } from './select-without-analytics';
export { default as AsyncSelect } from './async-select';
export { default as CreatableSelect } from './creatable-select';
export { default as AsyncCreatableSelect } from './async-creatable-select';
export { isOptionsGrouped } from './utils/grouped-options-announcement';
export { CheckboxSelect } from './checkbox-select';
export { CountrySelect } from './country-select';
export { RadioSelect } from './radio-select';
export { PopupSelect } from './popup-select/popup-select';
export type { PopupSelectProps, ModifierList } from './popup-select/popup-select';
export type { SelectInstance, ActionMeta, ControlProps, FormatOptionLabelMeta, InputActionMeta, InputProps, MenuProps, MenuListComponentProps, OptionProps, OptionsType, OptionType, SelectComponentsConfig, SelectProps, StylesConfig, ValueContainerProps, ValueType, GroupedOptionsType, GroupType, ClearIndicatorProps, DropdownIndicatorProps, IndicatorsContainerProps, LoadingIndicatorProps, MultiValueGenericProps, MultiValueProps, MultiValueRemoveProps, ReactSelectProps, SingleValueProps, NoticeProps, ValidationState, GroupProps, AsyncSelectProps, PlaceholderProps, AriaOnFocusProps, } from './types';
/**
* Types not exported on the public API, didn't find usages in sourcegraph
*
* CreatableSelectProps,
*/