DropdownOption
Option for the dropdown.
Interface
interface IDropdownOption {
key: string | number;
text: string;
title?: string;
itemType?: SelectableOptionMenuItemType;
index?: number;
ariaLabel?: string;
selected?: boolean;
disabled?: boolean;
hidden?: boolean;
data?: any;
}
enum SelectableOptionMenuItemType {
Normal = 0,
Divider = 1,
Header = 2,
}