@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
22 lines • 900 B
TypeScript
import React from 'react';
import { DropdownOption } from '../../internal/components/option/interfaces';
import { HighlightType } from '../../internal/components/options-list/utils/use-highlight-option';
import { GetOptionProps, MenuProps } from '../utils/use-select';
export interface SelectListProps {
menuProps: MenuProps;
getOptionProps: GetOptionProps;
filteredOptions: ReadonlyArray<DropdownOption>;
filteringValue: string;
highlightType: HighlightType;
checkboxes?: boolean;
hasDropdownStatus?: boolean;
listBottom?: React.ReactNode;
useInteractiveGroups?: boolean;
screenReaderContent?: string;
firstOptionSticky?: boolean;
}
export declare namespace SelectListProps {
type SelectListRef = (index: number) => void;
}
declare const _default: React.ForwardRefExoticComponent<SelectListProps & React.RefAttributes<SelectListProps.SelectListRef>>;
export default _default;