azure-devops-ui
Version:
React components for building web UI in Azure DevOps
22 lines (21 loc) • 710 B
TypeScript
import { IFilterBarItemProps } from '../../FilterBarItem';
import { ITooltipProps } from '../../TooltipEx';
import { IDropdownProps } from "./Dropdown.Props";
export interface IDropdownFilterBarItemProps<T = {}> extends IFilterBarItemProps, IDropdownProps<T> {
/**
* Don't show the Clear action.
*/
hideClearAction?: boolean;
/**
* Set to true to include the placeholder as part of the selected label.
*/
showPlaceholderAsLabel?: boolean;
/**
* Untoggle filter bar on clear filter
*/
toggleFilterBar?: () => void;
/**
* Optional tooltip to show when the dropdown button is hovered.
*/
tooltipProps?: ITooltipProps;
}