@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
33 lines • 1.04 kB
TypeScript
import React from 'react';
import { AutosuggestProps } from './interfaces';
import { AutosuggestItemsHandlers, AutosuggestItemsState } from './options-controller';
interface AutosuggestOptionsListProps extends Pick<AutosuggestProps, 'virtualScroll' | 'selectedAriaLabel' | 'renderHighlightedAriaLive'> {
statusType: AutosuggestProps.StatusType;
autosuggestItemsState: AutosuggestItemsState;
autosuggestItemsHandlers: AutosuggestItemsHandlers;
highlightedOptionId?: string;
highlightText: string;
listId: string;
controlId: string;
handleLoadMore: () => void;
hasDropdownStatus?: boolean;
listBottom?: React.ReactNode;
ariaDescribedby?: string;
}
export default function AutosuggestOptionsList({
statusType,
autosuggestItemsState,
autosuggestItemsHandlers,
highlightedOptionId,
highlightText,
listId,
controlId,
handleLoadMore,
hasDropdownStatus,
virtualScroll,
selectedAriaLabel,
renderHighlightedAriaLive,
listBottom,
ariaDescribedby
}: AutosuggestOptionsListProps): JSX.Element;
export {};