UNPKG

1.97 kBTypeScriptView Raw
1import Select from './Select';
2import type { GroupBase } from './types';
3import useStateManager from './useStateManager';
4export { default } from './stateManager';
5export { default as NonceProvider } from './NonceProvider';
6export { mergeStyles } from './styles';
7export { defaultTheme } from './theme';
8export { createFilter } from './filters';
9export { components } from './components';
10export declare type SelectInstance<Option = unknown, IsMulti extends boolean = false, Group extends GroupBase<Option> = GroupBase<Option>> = Select<Option, IsMulti, Group>;
11export type { StateManagerProps as Props } from './useStateManager';
12export { useStateManager };
13export type { SelectComponentsConfig } from './components';
14export type { ContainerProps, IndicatorsContainerProps, ValueContainerProps, } from './components/containers';
15export type { ControlProps } from './components/Control';
16export type { GroupProps, GroupHeadingProps } from './components/Group';
17export type { ClearIndicatorProps, DropdownIndicatorProps, IndicatorSeparatorProps, LoadingIndicatorProps, } from './components/indicators';
18export type { InputProps } from './components/Input';
19export type { MenuListProps, MenuProps, NoticeProps } from './components/Menu';
20export type { MultiValueGenericProps, MultiValueProps, MultiValueRemoveProps, } from './components/MultiValue';
21export type { OptionProps } from './components/Option';
22export type { PlaceholderProps } from './components/Placeholder';
23export type { SingleValueProps } from './components/SingleValue';
24export type { ThemeConfig } from './theme';
25export type { ClassNamesConfig, StylesConfig } from './styles';
26export * from './types';
27export type { OptionContext, GuidanceContext, AriaGuidanceProps, AriaOnChangeProps, AriaOnFilterProps, AriaOnFocusProps, AriaLiveMessages, AriaGuidance, AriaOnChange, AriaOnFilter, AriaOnFocus, } from './accessibility';
28export type { FormatOptionLabelContext, FormatOptionLabelMeta } from './Select';