downshift
Version:
🏎 A set of primitives to build simple, flexible, WAI-ARIA compliant React autocomplete, combobox or select dropdown components.
11 lines (10 loc) • 499 B
TypeScript
import PropTypes from 'prop-types';
export { useElementIds } from './useElementIds';
export { getInitialState } from './getInitialState';
export { isStateEqual } from './isStateEqual';
export { useAccessibleDescription, A11Y_DESCRIPTION_ELEMENT_ID, } from './useAccessibleDescription';
export { getMergedProps } from './getMergedProps';
export { useRovingTagFocus } from './useRovingTagFocus';
export declare const propTypes: {
isItemDisabled: PropTypes.Requireable<(...args: any[]) => any>;
};