azure-devops-ui
Version:
React components for building web UI in Azure DevOps
17 lines (16 loc) • 537 B
TypeScript
import { IFilterBarItemProps } from '../../FilterBarItem';
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;
}